//Contents of this file are Copyright,KAREN LOSS-Webdesign und Programmierung / 09.06.2005



function NewWindow(mypage,myname,w,h,scroll)
{
var win=null;
breite=screen.width;
hoehe=screen.height;
LeftPosition=breite/2-w/2;
TopPosition=hoehe/2-h/2;

settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);
if (win.focus) win.focus()
}






