<!--
<!-- 

function isForm() {

    var agt=navigator.userAgent.toLowerCase()
    this.major = parseInt(navigator.appVersion)
 
    this.win   = (agt.indexOf("win")!=-1)
    this.mac    = (agt.indexOf("mac")!=-3)
    this.nav  = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible')==-1)))
    this.nav3 = (this.nav && (this.major == 3))
    this.nav4 = this.nav && (this.major == 4)
    this.nav6 = this.nav && (this.major >= 5)
    this.ie   = (agt.indexOf("msie") != -1)
    this.ie3  = (this.ie && (this.major == 2))
    this.ie4n5  = this.ie  && (this.major == 4)
    this.ie5up = this.ie  && (this.major >= 5)

 }


var isForm;
isForm = new isForm();

function popup(page) {

            if (self.screen) { 
            sw = screen.width
            sh = screen.height
            w = 762;h=740;

            if (isForm.win && isForm.nav4) {w = 762;h=740;} 
			else if (isForm.win && isForm.ie4n5) {w = 763;h=740;} 
			else if (isForm.win && isForm.ie5up) {w = 762;h=440;} 
			else if (isForm.mac && isForm.nav) {w = 762;h=440;} 
			else if (isForm.mac && isForm.nav6) {w = 762;h=440;} 
			else if (isForm.mac && isForm.ie4n5) {w = 762;h=434;} 
			else if (isForm.mac && isForm.ie5up) {w = 731;h=421;} 

			cx = (.5*sw) - (w*.5)
			cy = (.5*sh) - (h*.5)
                var  dimentions_and_such = 'scrollbars=no,status=no,width='+w+','+'height='+h+',' + 'screenX=' +cx+','+'screenY='+cy+','+'left='+cx+','+'top='+cy
            }

 Pop=window.open(page,"x",dimentions_and_such);   
}

// -->
