function upwPopup(sUrl,iLeft,iTop,iWidth,iHeight)
{
	return window.open(sUrl,null,'status=yes,addressbar=0,toolbar=0,height='+iHeight+',width='+iWidth+',top='+iTop+',left='+iLeft+',scrollbars=yes');
}

function upwPopupEx(TheURL, Width, Height, Target, Resizable, Scrollbars)
	{
		var objWin
	  	objWin = window.open(TheURL, Target, "width=" + Width + ",height=" + Height + ",location=0,menubar=0,resizable=" + Resizable+ ",scrollbars=" + Scrollbars+ ",status=1,titlebar=0,toolbar=0");
		if (objWin != null) objWin.focus();
	}
