// JavaScript Document

<!-- Establece resolucion para usuarios de Netscape a 800 x 600 --> 
<link rel="stylesheet" type="text/css" href="netscape.css"> 
<!-- Establece resolucion para usuarios de IExplorer --> 
<SCRIPT LANGUAGE="JavaScript"> 
<!-- Original: Blackprince (todoexpertos) (angel@pc-click.com.mx) --> 
<!-- WebSite:http://www.pc-click.com.mx --> 

<!-- Begin 
//document.write('Tu resolucion es ' + screen.width + ' x ' + screen.height + ''); 
if (screen.width == 640) { 
document.write('<link rel="stylesheet" type="text/css" href="640.css">'); 
//alert("Resolucion en 640 x 480 Deberia ser llamado"); 
} 
if (screen.width == 800) { 
document.write('<link rel="stylesheet" type="text/css" href="800.css">'); 
//alert("Resolucion en 800 x 600 deberia ser llamado"); 
} 
if (screen.width == 1024) { 
document.write('<link rel="stylesheet" type="text/css" href="1024.css">'); 
//alert("Resolucion en 1024 x 768 Deberia ser llamado"); 
} 
if (screen.width == 1280) { 
document.write('<link rel="stylesheet" type="text/css" href="1280.css">'); 
//alert("Resolcuion en 1280 x 960 Deberia ser llamado"); 
} 
if (screen.width == 1600) { 
document.write('<link rel="stylesheet" type="text/css" href="1600.css">'); 
//alert("Resoilucion en 1600 x 1200 Deberia ser llamado."); 
} 
// End --> 
</script> 
