//This script changes the stylesheet according to the browser type.
//For internet explorer
if(ie==1) {
	document.write('<link rel="stylesheet" type="text/css" href="../styles/global.css">\n');
	}
//For netscape version 4
else if (ns4==1) {
	document.write('<link rel="stylesheet" type="text/css" src="../styles/older.css">\n');
	}
//For all other browsers
else {
	document.write('<link rel="stylesheet" type="text/css" href="../styles/global.css">\n');
	}