
if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.indexOf("Mac")!=-1)) {
	document.write('<link rel="stylesheet" href="css/style.css" type="text/css">');
}

else if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac")==-1)/* && (navigator.appVersion.substring(0,1) < 5)*/) {
     document.write('<link rel="stylesheet" href="css/styleNS.css" type="text/css">');
  }

else if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac")!=-1)) {
	document.write('<link rel="stylesheet" href="css/style.css" type="text/css">');
}

else {
     document.write('<link rel="stylesheet" href="css/style.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;
