// JavaScript Document
// Resolución pantalla


<!--
var correctwidth=1024
 var correctheight=760
 // Sólo saco el mensaje si tiene una resolución menor...
 //var texto = "Optimizado para una resolución de "+correctwidth+" x "+correctheight+"."
 var texto = ''
 var mensaje = 'Bienvenido a Base, Cía. de Soporte Lógico S.A.L.'
 
 if (screen.width<correctwidth||screen.height<correctheight)
 var texto ="<br><table border='0' bgcolor='#ffffcc' align='center'><tr><td><img src='imgs/tip.gif'>&nbsp;<small>Web optimizada para una resolución de "+correctwidth+" x "+correctheight+".<font color=red> La actual es <b>"+screen.width+"x"+screen.height+".</b></font> Es recomendable cambiar la resolución.<br>Pulse con el botón derecho del ratón en el 'Escritorio', seleccione la opción 'Propiedades' y a continuación 'Configuración'</small></td></tr></table><br>"
 
 if (screen.width<correctwidth||screen.height<correctheight)
 var mensaje= 'Web optimizada para una resolución de 1024 x 760' 

 window.status = mensaje
 document.write(texto)
 
 
 
// -->

