
var sURL ;
sURL = "" ;

function IsPopupBlocker(sTarget) 
{
 sURL = sTarget ;
 var oWin = window.open("http://www.brantford.ca/content/publishing.nsf/Content/Disclaimer+External?OpenDocument","PopupBlocker","width=1,height=1,top=1,left=1,menubar=no,location=no,resizable=yes,scrollbars=no,status=no");
 
 if (oWin==null || typeof(oWin)=="undefined") 
 {
  alert("You HAVE A POPUP BLOCKER... Please disable it to proceede further...") ;
  return;
 } 
 else 
 {
  oWin.resizeTo(600,225);
  oWin.moveTo(50,50);
  oWin.focus() ;
  return;
 }
}

function openWindow()
{
 sURL = window.opener.sURL ;
 window.open("http://" + sURL + "/","","top=1,left=1,width=600,height=400,toolbar=1,menubar=1,location=1,titlebar=1,status=1,scrollbars=1,resizable=1") ;
 close() ;
}
