document.write('<script type="text/javascript" src="/lib/JS/browserdetect.js"></script>');

function LoadStylesheet(cssPath){
	rdn = Math.round(Math.random()*999999);
	document.write('<link href="'+cssPath+'.css" rel="stylesheet" type="text/css">');
	//alert(navigator.userAgent.toLowerCase());	
	//alert(Math.round(Math.random()*999999));
	if(browser.isWin && browser.isIE) {
		document.write('<link href="'+cssPath+'IE.css" rel="stylesheet" type="text/css">');
		//alert('Sono IE x PC');
	}
	
	if(browser.isSafari){
		document.write('<link href="'+cssPath+'Safari.css" rel="stylesheet" type="text/css">');
		//alert('Sono SAFARI');
	}
	
	if(browser.isMac && browser.isIE){
		document.write('<link href="'+cssPath+'IEMac.css" rel="stylesheet" type="text/css">');
		//alert('Sono IE per MAC');
	}
	
	if(browser.isGecko){
		document.write('<link href="'+cssPath+'Gecko.css" rel="stylesheet" type="text/css">');
		//alert('Sono Gecko!!!');
	}
		  
}
