nav = navigator.appVersion
nom = navigator.appName
 
if(nav.indexOf("Mac",1) != -1)
{
	if(nom.indexOf("Microsoft") != -1)	{
		if(nav.indexOf("MSIE 5") != -1)
		{
			document.write("<link rel='stylesheet' type='text/css' href='pc.css'>")
		}
		else {
			document.write("<link rel='stylesheet' type='text/css' href='mac.css'>")
		}
	}
	else	{
		document.write("<link rel='stylesheet' type='text/css' href='mac.css'>")
	}
	
} else {
	if(nom.indexOf("Microsoft") != -1)	{
		document.write("<link rel='stylesheet' type='text/css' href='pc.css'>")
	}
	else	{
		document.write("<link rel='stylesheet' type='text/css' href='pc-n.css'>")
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

