function abrir(imagen,ancho,alto)
{
var image='images/'+imagen+'.jpg';

var ventana=window.open("","","width="+ancho+",height="+alto+",,");
ventana.document.write("<HTML><head>");
ventana.document.write("<TITLE>Seinbe S.L.</TITLE></head>");
ventana.document.write("<BODY topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0>");
ventana.document.write("<ALIGN=CENTER>");
ventana.document.write("<IMG SRC="+image+" width="+ancho+" height="+alto+">");
ventana.document.write("</ALIGN></BODY></HTML>");
}


