function PopUpWin(page,Xwidth,Xheight,HasScroll,IsResizable) 
{
	var WinPosleft = ((screen.width - Xwidth) / 2)
	var WinPosTop = ((screen.height - Xheight) / 2)
	controlls = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + HasScroll + ",resizable=" + IsResizable + ",width=" + Xwidth + ",height=" + Xheight + ", top=" + WinPosTop + ",left=" + WinPosleft
	OpenWin = this.open(page, "CtrlWindow", controlls);
}

function MultiPopUp(page,Xwidth,Xheight,HasScroll,IsResizable,WindowName) 
{
	var WinPosleft = ((screen.width - Xwidth) / 2)
	var WinPosTop = ((screen.height - Xheight) / 2)
	controlls = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + HasScroll + ",resizable=" + IsResizable + ",width=" + Xwidth + ",height=" + Xheight + ", top=" + WinPosTop + ",left=" + WinPosleft
	OpenWin = this.open(page, "WindowName", controlls);
}