//-------------------------------------------------------------------------------------
// General.js
//-------------------------------------------------------------------------------------

function openDetailWindow(strURL, intHeight, intWidth) {
	var intWindowLeft;
	var intWindowTop;
	var msgWindow;
	intWindowLeft = (screen.width - intWidth)/2;
	intWindowTop  = (screen.height - intHeight)/2;
	msgWindow = window.open(strURL, "_blank", "location=no, menubar=no, status=yes, scrollbars=yes, resizable=no, width=" + intWidth + ", height=" + intHeight + ",left=" + intWindowLeft + ", top=" + intWindowTop);
}