Name = navigator.appName;

//IE_WIN
if((navigator.appVersion.indexOf("Win")!= -1) && Name == "Microsoft Internet Explorer")
	{
	document.write("<link rel='stylesheet' href='/home/css/ie-win-vgogh.css' type='text/css'>");
	}   
//NS_WIN
if((navigator.appVersion.indexOf("Win")!= -1) && Name == "Netscape")
	{
   	document.write("<link rel='stylesheet' href='/home/css/ns-win-vgogh.css' type='text/css'>");
	}

//IE_MAC
if((navigator.appVersion.indexOf("Mac")!= -1) && Name == "Microsoft Internet Explorer")
	{
	document.write("<link rel='stylesheet' href='/home/css/ie-mac-vgogh.css' type='text/css'>");
	}   
//NS_MAC
if((navigator.appVersion.indexOf("Mac")!= -1) && Name == "Netscape")
	{
   	document.write("<link rel='stylesheet' href='/home/css/ns-mac-vgogh.css' type='text/css'>");
	}

//IE_LINUX
if((navigator.appVersion.indexOf("Linux")!= -1) && Name == "Microsoft Internet Explorer")
	{
	document.write("<link rel='stylesheet' href='/home/css/ie-linux-vgogh.css' type='text/css'>");
	}   
//NS_LINUX
if((navigator.appVersion.indexOf("Linux")!= -1) && Name == "Netscape")
	{
   	document.write("<link rel='stylesheet' href='/home/css/ns-linux-vgogh.css' type='text/css'>");
	}

//OPERA
//if(Name == "opera")
//	{
//   	document.write("<link rel='stylesheet' href='home/css/opera-vgogh.css' type='text/css'>");
//	}
	
//REST
if(((Name) != "Microsoft Internet Explorer") &&  ((Name) != "Netscape"))
	{
	document.write("<link rel='stylesheet' href='/home/css/rest-vgogh.css' type='text/css'>");
	}