Quizas este código sea mas 'exacto':
if (navigator.appName == "Microsoft Internet Explorer")
document.write ("<link rel='stylesheet' type='text/css' href='/estilos_ie.css'>");
else if (navigator.appName == "Netscape")
document.write ("<link rel='stylesheet' type='text/css' href='estilos_netscape.css'>");
else
document.write ("<link rel='stylesheet' type='text/css' href='estilos_otros.css'>"); |