function PopUpBlocker_Message(Objpopwin)
{
	if(Objpopwin==null || typeof(Objpopwin)=="undefined") 
	{
		var popupMsg;
		popupMsg = "It appears that popups are being blocked by your browser. Elitics needs your browser to allow popups for proper operation. Please follow your browser's instructions to allow popups for this site.";
		alert(popupMsg);
	}
	else
	{
		Objpopwin.focus();
	}
}