
<!-- Begin 
//document.write('Tu resolucion es ' + screen.width + ' x ' + screen.height + ''); 
 
if (screen.width == 800) { 
document.write('<link rel="stylesheet" type="text/css" href="./css/800.css">'); 
//alert("Resolución en 800 x 600 debería ser llamado"); 
} 
if (screen.width == 1024) { 
document.write('<link rel="stylesheet" type="text/css" href="./css/1024.css">'); 
//alert("Resolución en 1024 x 768 Debería ser llamado"); 
} 
if (screen.width == 1280) { 
document.write('<link rel="stylesheet" type="text/css" href="./css/1280.css">'); 
//alert("Resolución en 1280 x 960 Debería ser llamado"); 
} 
if (screen.width == 1600) { 
document.write('<link rel="stylesheet" type="text/css" href="./css/1600.css">'); 
//alert("Resolución en 1600 x 1200 Debería ser llamado."); 
} 
// End --> 
