function getInfoNavegador(){
	this.nombre = navigator.appName;
	this.codigo_name = navigator.appCodeName;
	this.version = navigator.appVersion.substring(0,4);
	this.plataforma = navigator.platform;
	this.javaEnabled = navigator.javaEnabled();
	this.pantalla_ancho = screen.width;
	this.pantalla_alto = screen.height;
}

var datos = new getInfoNavegador();
 
if(datos.nombre.indexOf("Explorer") != -1){	
	document.write("<link rel='stylesheet' type='text/css' href='"+_PATH+"css/estilos.css'>");
}else if(datos.nombre.indexOf("Opera") != -1){
	document.write("<link rel='stylesheet' type='text/css' href='"+_PATH+"css/opera.css'>");
}else if(datos.nombre == "Netscape"){ // o firefox
	document.write("<link rel='stylesheet' type='text/css' href='"+_PATH+"css/firefox.css'>");
}else{
	document.write("<link rel='stylesheet' type='text/css' href='"+_PATH+"css/firefox.css'>");
}

/*document.write("<br><br>Nombre del navegador: "+datos.nombre);
document.write("<br>Código: "+datos.codigo_name);
document.write("<br>Plataforma: "+datos.plataforma );
document.write("<br>Java: "+datos.javaEnabled);
document.write("<br>Resolución Ancho: "+datos.pantalla_ancho);
document.write("<br>Resolución alto: "+datos.pantalla_alto);
*/
