var nWdt = screen.width;
var nHgh = screen.height;
var resolucion = nWdt+"x"+nHgh;

if (resolucion=="1024x768"){
	//Optimizado para resolución 1024x768
	document.write("<link rel='stylesheet' type='text/css' href='../estilos/estilo1024.css'>");
	/*if navigator.appName=="Microsoft Internet Explorer"{
		document.write("<style type='text/css'>.info{height: 440px;}</style>");
	}*/
}
else if (resolucion=="1152x864"){
	//Optimizado para resolución 1152x864
	document.write("<link rel='stylesheet' type='text/css' href='../estilos/estilo1152.css'>");
}
else if (resolucion=="1280x1024"){
	//Optimizado para resolución 1280x1024
	document.write("<link rel='stylesheet' type='text/css' href='../estilos/estilo1280.css'>");
}

else{
	//Resolución óptima de 1024x768 a 1280x1024
	document.write("<link rel='stylesheet' type='text/css' href='../estilos/estilo1024.css'>")
}
