<!-- BEGIN STYLE.JS FILE CONTENT - this script is for 4.0 browsers and above, it does not currently contain code to accomodate 3.0 browsers -->
<!--
// set stylesheet here

			function Is() {                                       //Get browser and OS
			  var agent = navigator.userAgent.toLowerCase();
			  this.major = parseInt(navigator.appVersion);
			  this.minor = parseFloat(navigator.appVersion);
			  this.ns = ((agent.indexOf('mozilla')!=-1) && ((agent.indexOf('spoofer')==-1) && (agent.indexOf('compatible') == -1)));
			  this.ns2 = (this.ns && (this.major == 3));
			  this.ns3 = (this.ns && (this.major == 3));
			  this.ns4b = (this.ns && (this.minor < 4.04));
			  this.ns4 = (this.ns && (this.major == 4));
			  this.ns6 = (this.ns && (this.major == 5));
			  this.ie = (agent.indexOf("msie") != -1);
			  this.ie3 = (this.ie && (this.major == 2));
			  this.ie4 = (this.ie && (this.major >= 4));
			  this.ie5 = (this.ie && (this.major = 5));
			  this.ie6 = (this.ie && (this.major == 6));
			  this.op = (agent.indexOf("opera") != -1);
			  this.win = (agent.indexOf("win")!=-1);
			  this.mac = (agent.indexOf("mac")!=-1);
			  this.unix = (agent.indexOf("x11")!=-1);
			}

			var is = new Is();
  
var UA = navigator.userAgent.toLowerCase(); 
var PF = navigator.platform;
var APP = navigator.appName;
var stylesheet = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="<%=Application("LOCALWWW")%>/style/style.css">';

if (PF.indexOf('MacPPC') != -1) {
	if (UA.indexOf("msie 5.0") != -1) { 
		stylesheet = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="<%=Application("LOCALWWW")%>/style/style.css">';
		}
	else {
		stylesheet = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="<%=Application("LOCALWWW")%>/style/macstyle.css">';
		}
}
else {
		stylesheet = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="<%=Application("LOCALWWW")%>/style/style.css">';
	}
if ((APP.indexOf('Netscape') != -1) && (!(PF.indexOf('MacPPC') != -1))){
	stylesheet = '<LINK REL="STYLESHEET" TYPE="text/css" HREF="<%=Application("LOCALWWW")%>/style/nsstyle.css">';
}

if (stylesheet != "") {
	//document.write(stylesheet);
} 



//--> 