/*
 * Rafael Cansigno Mayo 2004.
 * Copyright (c) 2004 SciNET Systems.
 */

var correctwidth=800
var correctheight=600

function Resolucion(){ 
  document.write("<BR>La resolucion actual de tu pantalla es de "+screen.width+"x"+screen.height+".");
  if (screen.width<correctwidth||screen.height<correctheight)
    { document.write("<BR>Esta pagina es mejor vista con una resolucion de pantalla de "+correctwidth+"x"+correctheight+". ");
      document.write("<BR>Se recomienda que configures tu pantalla a una mayor resolucion! ");
    }
  else
    document.write("<BR>La resolucion de pantalla es la adecuada. Disfruta la pagina!");
  return;
}