//Browser 
var OPER=navigator.userAgent.indexOf("Opera");

if (document.layers){ //Netscape 4.x 
document.write("<link rel='stylesheet' href='/css/nsstyle.css' type='text/css'>"); 
} 
else if (document.all){ // Explorer
document.write("<link rel='stylesheet' href='/css/iestyle.css' type='text/css'>"); 
}
else if (document.getElementById){ //Netscape 6.x
document.write("<link rel='stylesheet' href='/css/ns6style.css' type='text/css'>");
}
else if((OPER>-1)) { // Opera 6.x
document.write("<link rel='stylesheet' href='/css/opera6style.css' type='text/css'>");
} 