var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

if(navigator.appVersion.indexOf("Mac") >= 0){ // MAC-----------------------------------
	if( bName == "M") { 
		// MAC IE
		document.write("<link rel='stylesheet' type='text/css' href='css/mac_ie.css'>");
	} else if( vNum < 5 ){
		// MAC NETSCAPE 4.x
		document.write("<link rel='stylesheet' type='text/css' href='css/mac_nn4x.css'>");
	} else if( vNum >= 5 ){
		// MAC NETSCAPE 6.x
		document.write("<link rel='stylesheet' type='text/css' href='css/mac_nn6x.css'>");	
	} else {
	 // Other
		document.write("<link rel='stylesheet' type='text/css' href='css/default.css'>");
	}
	
} else if (navigator.appVersion.indexOf("Win") >= 0){ //WIN----------------------------
	if( bName == "M"){
		// WIN IE
		document.write("<link rel='stylesheet' type='text/css' href='css/win_ie.css'>");
	} else	if( vNum < 5 )	{
		// WIN NETSCAPE 4.x
		document.write("<link rel='stylesheet' type='text/css' href='css/win_nn4x.css'>");
	} else	 if( vNum >= 5 ){
		// WIN NETSCAPE 6.x
		document.write("<link rel='stylesheet' type='text/css' href='css/win_nn6x.css'>");	
	} else {
	 // Other
		document.write("<link rel='stylesheet' type='text/css' href='css/default.css'>");
	}
	
} else { //Other------------------------------------------------------------------------
	document.write("<link rel='stylesheet' type='text/css' href='css/default.css'>");
}


