//
var pWinpopup = null;

/*

*/
function OpenPopup(pDocument, width, height) {
	if ((pWinpopup != null) && (!pWinpopup.closed)) pWinpopup.close();
	pWinpopup = window.open(pDocument, "ASTech", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no,location=no");
	if (window.focus) pWinpopup.focus();
}

/*

*/
function DisplayHelp(HelpContext, HelpItem, width, height) {
	window.open("help.php?context="+HelpContext+"&item="+HelpItem, "ASTechHelp", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no,location=no");	
}



