// Set up style sheets to be used from root of website.
style = new Array();
style['ie'] = "commodore_pc.css";
style['ns6'] = "commodore_ns6.css";
style['ns'] = "commodore_ns.css";
style['macns'] = "commodore_macns.css";
style['macie'] = "commodore_macie.css";


////////////////////////////////////////////////
//		Style Sheet Selector
//		©2006 Reactor15.
//		www.reactor15.com
///////////////////////////////////////////////
//	Do Not Alter anything below here.....
////////////////////////////////////////////////
var stylesheet;
if ((navigator.appName == "Netscape") && (navigator.appVersion.indexOf("Mac") != -1)) {
	stylesheet = style['macns'];
}else if ((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.indexOf("Mac") != -1)) {
	stylesheet = style['macie'];
}else if ((navigator.appName == "Microsoft Internet Explorer")){
	stylesheet = style['ie'];
}else if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 5)){
	stylesheet = style['ns6'];
}else if (navigator.appName == "Netscape"){
	stylesheet = style['ns'];
}else{stylesheet = style['ns'];}

var path = "";
if (location.href.indexOf("html/") != -1)
{
	path = "../";
}
if (location.href.indexOf("/cgi-bin/") != -1)
{
	path = "../";
}

if (stylesheet){
	document.write('<LINK REL=stylesheet HREF="'+path+stylesheet+'" TYPE="text/css">');
}
