var br
if(navigator.appName == "Netscape" && navigator.appVersion.charAt(0)=="4"){br="N";}
else if(navigator.appName == "Microsoft Internet Explorer" && document.all != null){br="IE";}
else if(navigator.appName == "Netscape" && document.getElementById != null && navigator.appVersion.charAt(0)=="5"){br="N5";}
else{br=null}
br4=null
if(navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.indexOf('MSIE 4')>0){br4="IE4";}

var PC = (navigator.platform.indexOf("Win16") != -1 || navigator.platform.indexOf("Win32") != -1);
var Mac = (navigator.platform.indexOf("Mac68k") != -1 || navigator.platform.indexOf("MacPPC") != -1);
var mf_search = false;
var mf_drop = 0;

// Netscape Resize Fix
if (br=="N") {

	widthCheck = window.innerWidth
	heightCheck = window.innerHeight
}

function moveLayers() {
	
	if (br=="N") {
	
	if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
	//document.location.href = document.location.href
	document.location.reload();
	}
	else {
		moveLayersIE()
	}
}