<!--
/* function NewWindow(URL, fenstername, w, h, scroll) {
var winlinks = (screen.width - w) / 2;
var winoben = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+winoben+',left='+winlinks+',scrollbars='+scroll+',resizable';
win = window.open(URL, fenstername, winprops);
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
*/
function winopen(url,w,h) {
 
var popUpLocationX=(screen.width - w) / 2;;
var popUpLocationY=(screen.height - h) / 2;;

splashWin = window.open("",'x','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=1');

splashWin.blur();
window.focus();

splashWin.resizeTo(w,h);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=url;
splashWin.focus();
}

//-->
