// BrowserCheck Object
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>=4)
	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()

//set global variables:
var isLoaded = false;
var roll = 0 //determine if images are pre-loaded
if (document.images) roll = 1 //determine if the browser can handle rollovers

function init() {
	imgLoad()
}

function btnSubmit(frmName) {
   document.forms[frmName].submit()
}

var params,popwin,windowName
function winPop(url) {
        windowName = "SecurityPrivacy";
        params  = "";
        params += "'toolbar=0,";
        params += "location=0,";
        params += "directories=0,";
        params += "status=0,";
        params += "menubar=0,";
        params += "scrollbars=1,";
        params += "resizable=1,";
        params += "width=450,";
        params += "height=525'";

        popwin = window.open(url,windowName,params);
        if (!popwin.opener) popwin.opener = window;

}


if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;


