<!-- 
if(-1 != navigator.userAgent.indexOf("MSIE"))
{
// IE
document.write('<link href="css/ie.css" rel="stylesheet" type="text/css">');
}
else if (-1 != navigator.userAgent.indexOf("Mozilla"))
{
// NS
document.write('<link rel="stylesheet" type="text/css" href="css/ns.css">');
}
else
{
// other
document.write('<link rel="stylesheet" type="text/css" href="other.css">');
}

//-->