function winopen(wurl,wwidth,wheight,locx,locy,scroll) {

if (scroll == '0')
splashWin =
window.open("",'popup','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=yes,wwidth=width,wheight=height,left=locx,top=locy');
else
splashWin =
window.open("",'popup','fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,wwidth=width,wheight=height,left=locx,top=locy');


// splashWin.blur();
// splashWin.focus();

splashWin.resizeTo(wwidth,wheight);
splashWin.moveTo(locx,locy);
splashWin.location=wurl;
splashWin.focus();
}