<!-- HIDE SCRIPT FROM OLD BROWSERS



//this will check for the proper CSS file to use





function isMac() {

	if (navigator.appVersion.indexOf("Mac") !=-1)

	return true;

	else return false;

}



	var st1 = navigator.userAgent;

	var a = new Array();

	a = st1.split(";");





IE4PC = (a[1].charAt(1) == "M" && a[1].charAt(6) == "4" && a[2].charAt(1) == "W")



	if (IE4PC) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/ie4.css\" type=\"text/css\">")

	}



IE4Mac = (a[1].charAt(1) == "M" && a[1].charAt(6) == "4" && a[2].charAt(1) == "M")



	if (IE4Mac) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/ie4mac.css\" type=\"text/css\">")

	}



IE5 = (a[1].charAt(1) == "M" && a[1].charAt(6) >= "5")



	if (IE5) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/ie4.css\" type=\"text/css\">")

	}



N6 = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 5)))



	if (N6) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/nav6.css\" type=\"text/css\">")

	}





N4 = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 3 && (!N6))))



	if (N4 && isMac()) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/nav4mac.css\" type=\"text/css\">")

	}



	else if (N4) {

		document.write("<LINK rel=\"stylesheet\" href=\"css/nav4.css\" type=\"text/css\">")

	}



-->


