<!--
var strStartCSSLink='<link rel="stylesheet" type="text/css" href="styles/';
var strEndCSSLink='.css">';
var strCSSLink;

//Used this when try to determine browser differences
//if (is.other) {	document.write("<p>What is this browser? It's not Netscape, Microsoft or Opera</p>"); }
//if (is.ns4) { document.write("<p>It is Netscape V4</p>"); }
//if (is.ns6) { document.write("<p>It is Netscape V6</p>"); }
//if (is.ns6up) { document.write("<p>It is Netscape >V6</p>"); }
//if (is.ie4) { document.write("<p>It is Explorer V4</p>"); }
//if (is.ie5) { document.write("<p>It is Explorer V5</p>"); }
//if (is.ie5up) { document.write("<p>It is Explorer >V5</p>"); }
//if (is.opera4) { document.write("<p>It is Opera V4</p>"); }
//if (is.opera5) { document.write("<p>It is Opera V5</p>"); }
//if (is.opera5up) { document.write("<p>It is Opera >V5</p>"); }

if ( (is.ns4) || (is.ns6) || (is.ns6up) ) { 
	strCSSLink=strStartCSSLink + "ns" + strEndCSSLink; 
} else {
	// It's probably Mozilla which has to have the style file in
	// the html directory. If not then its very old Netscape and this
	// file has more chance of working!?!
	if (is.ns) {
		strCSSLink=strStartCSSLink + "mozilla" + strEndCSSLink;
	}
}

if (is.ie) { strCSSLink=strStartCSSLink + "ie" + strEndCSSLink; }

if (is.opera) { strCSSLink=strStartCSSLink + "opera" + strEndCSSLink; }

if (is.other) { strCSSLink=strStartCSSLink + "other" + strEndCSSLink; }
	
document.write(strCSSLink + "\n");
//-->
