//Choose CSS based on browser

var csspath = "../css/";
var browserVer = parseInt(navigator.appVersion);
var isIE5 = 0;

if (eval("parent") == "home") csspath = "css/";

if (navigator.userAgent.indexOf('IE 5') != -1){
	isIE5 = 1;
}

if ((navigator.platform.indexOf('Mac') != -1) && (browserVer < 5)  && (isIE5 != 1)) {
	document.write('<link rel="stylesheet" href="' + csspath + 'old_mac.css">');
}

else {
	document.write('<link rel="stylesheet" href="' + csspath + 'standard.css">');
}







