function OpenPopup(strAddr,strTitle,strStyle)
{										 									 
	var popupTest;
	popupTest = window.open(strAddr,strTitle,strStyle);
	if(!popupTest)
		alert("You have a popup blocker installed.  Please disable it for PowerTime to work properly.");
}

function OpenModalPopup(strAddr)
{										 									 
	var popupTest;
	/*
	if (window.showModalDialog)
	{
		popupTest = window.showModalDialog(strAddr,strTitle,"dialogWidth:780px;dialogHeight:600px");
	}
	else
	{
		popupTest = window.open(strAddr,strTitle,config='height=600, width=780, toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no ,modal=yes');	
	}
	*/
	
	popupTest = window.open(strAddr + "&popup=yes","popup",config='height=600, width=780, toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no ,modal=yes');	
	
	if(!popupTest)
		alert("You have a popup blocker installed.  Please disable it for PowerTime to work properly.");		
}

function OpenAdminHelp(strSection)
{										 									 
	OpenPopup('Help/AdminHelpGuide.htm#' + strSection,'cTable', 'height=450, width=500, toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,location=nos');
}
