function newwindow(nombre,ventana,ancho,alto)
{
   var opciones,bsc,anc,alt,texto,win;

   bsc=0;
   if (ancho>560)
   {
      anc=640;
      bsc=1;
   }
   else
      anc=ancho+80;

   if (alto>450)
   {
      alt=480;
      bsc=1;
   }
   else
      alt=alto+30;
      
   opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no";
   opciones+=",scrollbars="+bsc;
   opciones+=",width="+anc;
   opciones+=",height="+alt;

   texto='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">';
   texto+='<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es">';
   texto+='<head>';
   texto+='<title>Instituto de Rob&oacute;tica - Universitat de Val&egrave;ncia</title>';
   texto+='<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>';
   texto+='<link rel="stylesheet" href="../../estilos/estilos.css" type="text/css"/>';
   texto+='</head>';
   texto+='<body>';
   texto+='<p><img src="';
   texto+=nombre;
   texto+='" width="';
   texto+=ancho;
   texto+='" height="';
   texto+=alto;
   texto+='" alt=""/></p>';
   texto+='</body>';
   texto+='</html>';

   win=open("",ventana,opciones);
   win.document.write(texto);
}

function newdocument(nombre,ventana)
{
   var opciones;

   opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes";
   opciones+=",scrollbars=1,width=640,height=480";

   open(nombre,ventana,opciones);
}

