function loadStyle()
{
	//LOAD STYLESHEETS BELOW.  Default MUST ALWAYS HAVE A SHEET, ALL OTHERS OPTIONAL
	//USE FULL PATH: Default="styles.css";
	
	//LEAVE ANY STYLESHEET EMPTY, AND Default WILL APPLY:
	//Netscape = "";  //Netscape is empty, (no sheet specified) so Default sheet will apply for Netscape!
	
	Default = "styles.css"; //DEFAULT Stylesheet (will work if NO other match)
	IE7 = "";  //IE7 Only Stylesheet
	IE6 = ""; //IE6 Only Stylesheet
	IE = "styles_ie.css"; //All other IE versions
	Firefox = ""; //All Firefox versions
	Opera = ""; //All Opera versions
	Netscape = ""; //All Netscape versions
	Safari = ""; //All Safari versions
	Konqueror = ""; //All Konqueror versions.  Will Pickup Safari, if not selected above
	Mozilla = ""; //Will pick up all Firefox,Netscape,Gecko,Mozilla variants, EXCEPT those specified above!
	
	//END CONFIG AREA-------------------------------------------------------
	if(document.all)
	{//it's IE!!
		if(navigator.userAgent.indexOf("MSIE 7")!=-1){if(IE7 != ""){return IE7;}}
		if(navigator.userAgent.indexOf("MSIE 6")!=-1){if(IE6 != ""){return IE6;}}
		return IE; //really IE4-5
	}else{//NOT IE!!
		if(navigator.userAgent.indexOf("Firefox")!=-1){if(Firefox != ""){return Firefox;}}
		if(navigator.userAgent.indexOf("Opera")!=-1){if(Opera != ""){return Opera;}}
		if(navigator.userAgent.indexOf("Netscape")!=-1){if(Netscape != ""){return Netscape;}}
		if(navigator.userAgent.indexOf("Safari")!=-1){if(Safari != ""){return Safari;}}  //Safari must go before Konqueror
		if(navigator.userAgent.indexOf("Konqueror")!=-1){if(Konqueror != ""){return Konqueror;}}
		if(navigator.userAgent.indexOf("Mozilla")!=-1){if(Mozilla != ""){return Mozilla;}}  //Mozilla family, remainder of FF,NN,Camino family
	}
	return Default;
}
styleHref = loadStyle();
document.write('<link rel="stylesheet" href="' + styleHref + '" type="text/css" />');
