<!--
function nop(strMessage, strURL, strLine) {return true;}
self.onerror = nop;
function WriteStyleSheet(section,location){
var brsr
var plat
var vers, minorVersion, majorVersion
var userAgentString
var works, onMouseOversEnabled
var indexOfVersionStart, indexOfVersionEnd

brsr = navigator.appName
vers = navigator.appVersion
plat = navigator.platform
userAgentString = navigator.userAgent

if (brsr=="Microsoft Internet Explorer"){
	if (vers<"4") {
		majorVersion="3"
		minorVersion="0"
		plat = "Unknown"
		}
	else {
		indexOfVersionStart = vers.indexOf("MSIE ", 0)
		if (indexOfVersionStart!=-1) {
			indexOfVersionEnd = vers.indexOf(";", indexOfVersionStart)
			if (indexOfVersionEnd == -1) {
				vers.indexOf(")", indexOfVersionStart);}
			if (indexOfVersionEnd != -1) {
				dotLocation = vers.indexOf(".", indexOfVersionStart);
				if (dotLocation!=-1) {
					majorVersion = vers.substring( indexOfVersionStart+5, dotLocation )
					minorVersion = vers.substring( dotLocation+1, indexOfVersionEnd)
					}
				}
			}
			if (plat.length>=3) {plat = plat.substring(0,3)}
		}
	if (minorVersion==null) {minorVersion=="0"}
	if (majorVersion==null) {minorVersion=="3"}
	}

if (brsr=="Netscape"){
	if (vers<"4") {
		majorVersion="3"
		minorVersion="0"
		plat = "Unknown"
		}
	else {
		if (userAgentString.indexOf( "Netscape6", 0 ) != -1) {
			majorVersion="6"
			minorVersion="0"
			}
		else {
			indexOfVersionStart = 0
			indexOfVersionEnd = vers.indexOf(" ", indexOfVersionStart)
			if (indexOfVersionEnd>0) {
				dotLocation = vers.indexOf(".", indexOfVersionStart);
				if (dotLocation!=-1) {
					majorVersion = vers.substring( indexOfVersionStart, dotLocation )
					minorVersion = vers.substring( dotLocation+1, indexOfVersionEnd)
					}
				}
			if (minorVersion==null) {minorVersion=="0"}
			if (majorVersion==null) {minorVersion=="3"}
			}
			if (plat.length>=3) {plat = plat.substring(0,3)}
		}
	}
onMouseOversEnabled = false;
if ((brsr=="Microsoft Internet Explorer")&&(majorVersion=="5")&&plat=="Win"){
		onMouseOversEnabled = true;}
works = onMouseOversEnabled;

var sCSS

if ((brsr=="Microsoft Internet Explorer")&&(plat=="Win")){
	if (majorVersion=="4"){sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}
	else {sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}}

if ((brsr=="Microsoft Internet Explorer")&&(plat!="Win")){
	if (majorVersion=="4"){sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}
	else {sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}}

if ((brsr=="Netscape")&&(plat=="Win")){
	if (majorVersion < "5"){sCSS = '<link href="' + location + 'styles/' + section + 'NET.css" rel="stylesheet" type="text/css">';}
	else {sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}}

if ((brsr=="Netscape")&&(plat!="Win")){
	if (majorVersion=="6"){sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}
	else {sCSS = '<link href="' + location + 'styles/' + section + 'NET.css" rel="stylesheet" type="text/css">';}}

if (sCSS == null) {sCSS = '<link href="' + location + 'styles/' + section + '.css" rel="stylesheet" type="text/css">';}

document.write(sCSS);
//alert(sCSS);
}
//-->