





// **************
// popup standard
// **************
function popup_win(name,theUrl,xsize,ysize)
{
 xsize = xsize + 10;  // inner - height correction
 ysize = ysize + 25;

 var abstand_links = ((window.screen.width)  - xsize) / 2;
 var abstand_oben  = ((window.screen.height) - ysize) / 2;
 return window.open(theUrl,name,'toolbar=no,scrollbars=yes,location=no,directories=no,status=no,menubar=no,resizable=yes,width=' + xsize +',height=' + ysize + ',top='+ abstand_oben +',left='+ abstand_links);
}





function popUp(URL) {

day = new Date();

id = day.getTime();

domain = document.getElementById('domain').value;

ext = document.getElementById('myext').value;

URL = URL+'?&domain='+domain+'&myext='+ext;

eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 380,top = 285');");

}
