/* vercheck */function verCheck(){	if (navigator.appName.indexOf("Microsoft") >=0)	{		return "IE";	}	else	{		if (navigator.appName.indexOf("Netscape") >=0)		{			return "NN";		}		else		{			return false;		}	}}if(navigator.userAgent.indexOf("Win") >=0){	if (verCheck() == "IE")	{		document.write('<link rel="stylesheet" href="css/win_ie.css" type="text/css">');	}	else	{		if (verCheck() == "NN")		{			document.write('<link rel="stylesheet" href="css/win_nn.css" type="text/css">');		}		else		{			document.write('<link rel="stylesheet" href="css/other.css" type="text/css">');		}	}}else{	if (verCheck() == "IE")	{		document.write('<link rel="stylesheet" href="css/mac_ie.css" type="text/css">');	}	else	{		if (verCheck() == "NN")		{			document.write('<link rel="stylesheet" href="css/mac_nn.css" type="text/css">');		}		else		{			document.write('<link rel="stylesheet" href="css/other.css" type="text/css">');		}	}}