var helpWindow;
function showHelpWindow(theURL){
	helpWindow = window.open(theURL,"HelpDetails","width=800,height=600,scrollbars=yes,resizable=yes");
	helpWindow.focus();
	return false;
}
function popupWindow(theURL,widthValue,heightValue){
	helpWindow = window.open(theURL,"Window","width="+widthValue+",height="+heightValue+",scrollbars=no,resizable=yes");
	helpWindow.focus();
	return false;
}
function popupPage(theURL,widthValue,heightValue){
	helpWindow = window.open(theURL,"Window","width="+widthValue+",height="+heightValue+",menubar=yes,status=yes,toolbar=yes,location=yes,scrollbars=yes,resizable=yes");
	helpWindow.focus();
	return false;
}