function abrir_ficha (pagina,titulo,ancho,alto)
{
var frameString=""+
  "<html>"+
  "<head>"+
  "<TITLE>"+titulo+
  "</TITLE>"+
  	'<LINK rel="stylesheet" type="text/css" href="/estilos/estilos.css">'+
	'<LINK rel="stylesheet" href="/estilos/menu.css" type="text/css">'+
  "</head>"+
  "<body style='margin:0'>"+
  "<table width='100%' height='100%'>"+
  "<tr><td align='center' valign='middle'>"+
  "<a href='javascript:self.close()'><img src="+pagina+" border='0' vspace=0 hspace=0><br></A>"+
  "</td></tr>"+
  "</table>"+
   "</body>"+
   "</html>";

//alert(frameString);
//window.open(frameString,'','toolbar=no,width='+ancho+',height='+alto+',resizable=no,left=10,top=10');
  NFW = window.open('','','toolbar=no,width='+ancho+',height='+alto+',resizable=no,left=10,top=10');
NFW.document.open();
  NFW.document.write(frameString);
  
}
function cerrar()
{
top.close
}


function abrir_web(direccion_web,web,ample)
{
	window.open(direccion_web,'Web','width='+ample+',height=300,left=100,top=100,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes');
}
