/************************************************************************************************
neues Fenster oeffnen:
************************************************************************************************/
function openWinCenter(url,name,breite,hoehe,x,y){
 var MyWindow =0;
 MyWindow = window.open(url,name,'toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=1,resizable=no,width='+breite+',height='+hoehe);
 if (MyWindow){
 MyWindow.moveTo(screen.width/2-(breite/2+x),screen.height/2-(hoehe/2+y));
 MyWindow.focus();
 }
}


function openWinCenterScroll(url,name,breite,hoehe,x,y){
 var MyWindow =0;
 MyWindow = window.open(url,name,'toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=1,resizable=yes,width='+breite+',height='+hoehe);
 if (MyWindow){
 MyWindow.moveTo(screen.width/2-(breite/2+x),screen.height/2-(hoehe/2+y));
 MyWindow.focus();
 }
}
