///javascript
//(browser detection based on what capabilities does this browser have...
	//what can it deal with
    
	
	
	
	
	var w3cC, isIE5up, isNN4, IE4down, isSafari, isMacIE5;
        var isMac=navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
	if(document.layers){
                //netscape 4only
		isNN4=true;
		//tell them to upgrade??
		//window.location="upgrade.html";	
	}else if(document.all && !document.getElementById){
		//Old IE is here
		IE4down=true;
	}else if((!isMac) && document.all ){
		//new IE
		isIE5up=true;
		
		document.write('<link rel="stylesheet" href="../../PcIEsidebarstyle.css" type="text/css">');
	//alert("ie");
	}else if(document.getElementByID){
		//Gecko
		w3cC=true;
        }else if  (navigator.userAgent.toLowerCase().indexOf("safari")!=-1){
                //safari
		isSafari=true;
		//alert("safari");
		document.write("<link rel='stylesheet' href='../../safarisidebarstyle.css' type='text/css'>");
		//window.location="upgrade.html";*/
	}else if((navigator.userAgent.indexOf("Mac") != -1)){
	//alert("mac firefox, mozilla, netscape");
	/*document.write("<link REL='stylesheet' HREF='macloginstyle.css' TYPE
	='text/css'>");*/
	}
