<!--
//Browsercheck



ie=document.all?1:0
n=document.layers?1:0
ns6=document.getElementById&&!document.all?1:0

//alert(navigator.appVersion)

tmt_css_NN = "css/style_ns.css";
tmt_css_IE = "css/style_ie.css";
tmt_css_Mac_IE="css/style_mac_ie.css";
tmt_css_Mac_NN="css/style_mac_ns.css";

if(navigator.appVersion.indexOf("Macintosh")>=0)
	win=false;
else
	win=true;		

//alert("win="+win)
if(win==false)
{
if(n){
	document.write("<link rel='stylesheet' href='" + tmt_css_Mac_NN + "' type='text/css'>");
	}
	else if(ie){
	document.write("<link rel='stylesheet' href='" + tmt_css_Mac_IE + "' type='text/css'>");
	}
	else{
	document.write("<link rel='stylesheet' href='" + tmt_css_Mac_NN + "' type='text/css'>");
	}
	
}
else
{

	if(n){
	document.write("<link rel='stylesheet' href='" + tmt_css_NN + "' type='text/css'>");
	}
	else if(ie){
	document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css'>");
	}
	else{
	document.write("<link rel='stylesheet' href='" + tmt_css_NN + "' type='text/css'>");
	}
}

//-->
