// pcns.css = netscape on win | macie.css = ie on mac | (macie.css here, normally)macn.css = netscape on mac | basic.css = ie, netscape 6 on win and everything else
if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac")==-1) && (navigator.appVersion.substring(0,1) < 5)) {
     document.write('<link rel="stylesheet" href="../../stylesheets/pcns.css" type="text/css">');
  }
else if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.indexOf("Mac")!=-1)){
document.write('<link rel="stylesheet" href="../../stylesheets/macie.css" type="text/css">');
}

else if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac")!=-1)) {
document.write('<link rel="stylesheet" href="../../stylesheets/macie.css" type="text/css">');
}
  else {
     document.write('<link rel="stylesheet" href="../../stylesheets/basic.css" type="text/css">');
  }
  
// reloads page if resized in netscape 4x to keep style
NS4 = document.layers;
if (NS4) {
	origWidth = innerWidth;
	origHeight = innerHeight;
		}
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight)
location.reload();
	}
if (NS4) onresize = reDo;
