function fotos(def, foto, ancho, alto)
{
windowname=def;
caracteristicas="toolbar=no,scrollbars=no,location=no,directories=no,status=no,menubar=no,width="+ancho+",height="+alto;
popupwin=window.open("",windowname,caracteristicas);
popupwin.document.write("<HTML><HEAD><title>Aixa Blanco SL</title></HEAD><body bgcolor='#333333' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><img src='" + foto + "' width='"+ancho+"' height='"+alto+"' border=0>");
popupwin.focus();
popupwin.document.close();
}