// JavaScript Document

	//Detect IE5.5+
	version=0
	if (navigator.appVersion.indexOf("MSIE")!=-1)
	{
		temp=navigator.appVersion.split("MSIE")
		version=parseFloat(temp[1])
	}

	if (navigator.appName != 'Netscape')
	{
		//probably ie.
		if (version >= 5 && version < 6)
		{
			//version 5.0 or 5.5
			//alert("ie 5.x");
			var newStyle = document.createStyleSheet("rbc_ieprobs.css", 1);
		}
		else if (version = 6 && version < 7)
		{
			//version 6.x
			//alert("ie 6.x");
			var newStyle = document.createStyleSheet("rbc_ieprobs6.css", 1);
		}
		else
		{
			//version 7.x or later
			//alert("ie 7.x");
			var newStyle = document.createStyleSheet("rbc_ie.css", 1);
		}
	}
	else
	{
		//netscape (or mozilla)
		//alert("firefox");
		var styles = "rbc.css";
		var newSS=document.createElement('link');
		newSS.rel='stylesheet';
		newSS.type='text/css';
		newSS.href=escape(styles);
		document.getElementsByTagName("head")[0].appendChild(newSS);
		//var newStyle = document.createStyleSheet("rbc.css", 1);
	}