function winopen(popUpURL,x,y,px,py,t) {
 splashWin=window.open("",t,'fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0');
 splashWin.blur();
 window.focus();
 splashWin.resizeTo(x,y);
 splashWin.moveTo(px,py);
 splashWin.location=popUpURL;
 splashWin.focus();
}
