
	function PopUp(strURL, strWindow_Name, iWidth, iHeight) {
		window.open(strURL, strWindow_Name, "width=" + iWidth + ",height=" + iHeight + ",left=" + (screen.availWidth - iWidth)/2 + ",top=" + (screen.availHeight - iHeight)/2);
	}