function BrowserCheck() {
        var b = navigator.appName
        if (b=="Netscape") this.b = "ns"
        else if (b=="Microsoft Internet Explorer") this.b = "ie"
        else this.b = b
        this.version = navigator.appVersion
        this.v = parseInt(this.version)
        this.ns = (this.b=="ns" && this.v<5)
        this.ns4 = (this.b=="ns" && this.v==4)
        this.ns5 = (this.b=="ns" && this.v==5)
        this.ie = (this.b=="ie" && this.v>=4)
        this.ie4 = (this.version.indexOf('MSIE 4')>0)
        this.ie5 = (this.version.indexOf('MSIE 5')>0)
        this.min = (this.ns||this.ie)
}

is = new BrowserCheck();

function alp(theURL,winName,features) {
if (is.ns4) {
  window.open(theURL,'',features);
	   } else {
  msgWindow=window.open("","",features);
  msgWindow.document.write('<html><HEAD><TITLE>'+ winName + '</TITLE>');
  msgWindow.document.write('</HEAD><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="border:0;background-image:url(\'images/ctn/gg.gif\');background-position:right;background-repeat:repeat-y">');
  msgWindow.document.write('<div align=right><table border=0 cellspacing=0 cellpadding=2><tr><td align=center style="color:#46469F; margin: 0px 0px 0px 0px; border: 1 solid black; border-top: none; border-right: none;font-weight:600; font-size:9pt;font-family:arial;background:#F6F8F9"><p style="margin:0 10 0 10">'+winName+'</p></td></tr></table></div>');
  msgWindow.document.write('<img src='+theURL+' border=0>');
  msgWindow.document.write('</body></html>');
  }
}

