/*
 *=======================================================
 *=======================================================
 *		E-Business Process Solutions © 2002
 *		http://www.e-bps.com
 *		
 *
 *		Application		-	ProActive
 *		File Name		-	popup_window.js
 *		Date Created	-	October, 2002
 *		Date Modified   -   October, 2002
 *		Objective		-	Popup a window.
 *		
 *		Developer		-	Jing 
 *		Email Address	-	lindading007@yahoo.com
 *		Modifications   - 	Accessed by Jing to clean up.
 *=======================================================
 */
function openwindow(URL,height,width) {
		leftx = (screen.width - width)/2
		topy = (screen.height - height)/2
		hWindow = window.open(URL,height+width,"left=" + leftx + ", top=" + topy + ", width="+width+",height="+height+",resize=no,resizable=no,scrollbars=yes,menubar=no,status=no");
		hWindow.creator = self;
		hWindow.focus();
}

function opendialog(URL,height,width) {
		leftx = (screen.width - width)/2
		topy = (screen.height - height)/2
		hWindow = window.open(URL,height+width,"left=" + leftx + ", top=" + topy + ", width="+width+",height="+height+",resize=no,resizable=no,scrollbars=no,menubar=no,status=no");
		hWindow.creator = self;
		hWindow.focus();
}
//