
//------------------------ Programmer's Log --------------------------------
//'**Created 5/7/06 by Ferry
//'------------------------ End of Programmer's Log ---------------------------

var popUpsBlocked

function IsPopupBlocker() 

{
var strNewURL = "Dummy.htm"
var Strfeature = "width=0,height=0,left=0,top=0,scrollbars=no" ;
var WindowOpen = window.open
(strNewURL,"MainWindow",Strfeature);
try{
var obj = WindowOpen.name;
WindowOpen.close();
//alert("Popup blocker NOT detected");
 
} 
catch(e){ 
alert("System has been blocked by POP-UP BLOCKER.\nPlease disable the POP-UP BLOCKER and try again\nor\nPlease contact your system administrator. ");

 document.write('<table border="0" width="100%" bgcolor="black"><tr><td width="100%">')
 document.write('<p align="center" style="margin-top: 0; margin-bottom: 0" ><b><font color="#FF0000">System has been blocked by POP-UP BLOCKER.</b></font></p>');
 document.write('<p align="center" style="margin-top: 0; margin-bottom: 0" ><font color="yellow">Please disable the <b> POP-UP BLOCKER</b> and try again or contact your system administrator.</font></p>');
 document.write('</td></tr></table>')
}
}

IsPopupBlocker();



