function CheckComponent_Popups() {

	blnPopupWindow = PopupWindowEnabled();
	mblnPopupEnabled = blnPopupWindow;
	if(blnPopupWindow) {
		strStatus = 'Passed';
		strDisplayStatus = 'Passed';
		strResult = 'Yes';
		strNotes = 'Requirement met';
	} else {
		strStatus = 'Failed';
		strDisplayStatus = 'Failed';
		strResult = 'No';
		strNotes = '<table class="info"><tr><td class="infotext">Browser popup windows are disabled on your computer. You may have an ad blocker installed that will interfere with our software.</td><td class="moreinfo" width="100px" onclick="javascript:MoreInfo(\'CheckModules/Help/NoPopup.html\')"><img align="absmiddle" border="0" src="images/Help.gif">&nbsp More Info...</td></tr></table>';
	}
	ComponentChecked('Popups',strStatus,strDisplayStatus,strResult,strNotes);

}

function PopupWindowEnabled() {

	var objWindow;
	var lngScreenBottomEdge;

	lngScreenBottomEdge = screen.height;
	m_objWindow_PU = window.open('CheckModules/NoWindow.htm','','directories=no,height=200,location=no,menubar=no,resizable=no,scrollbars=no,status=yes,title=no,toolbar=no,width=200,left=0,top=' + lngScreenBottomEdge);

	if(m_objWindow_PU == null)
		return false
	else {
		m_objWindow_PU.close();
		return true;
	}
}

