function OpSmWndw(URL,resizable,scrollbars,wHeight,wWidth)
{
var smallWindow=window.open(URL,"_blank","height="+((wHeight)?wHeight:400)+",width="+((wWidth)?wWidth:500)+",status=no,toolbar=no,menubar=no,location=no,resizable="+((resizable)?resizable:"no")+",scrollbars="+((scrollbars)?scrollbars:"yes"));
if (smallWindow != null && smallWindow.opener == null) smallWindow.opener=window;
smallWindow.focus();
//return smallWindow
}

function OpResWndw(URL) {
var  smallWindow=window.open(URL,"_blank","height=1,width=1,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
if (smallWindow != null && smallWindow.opener == null)
smallWindow.opener=window;
smallWindow.focus();
}
