var nume=1;

function abrir(im,ancho,alto){
  ancho_ventana=ancho+20;
  alto_ventana=alto+20;
  ventana="ventana"+nume;
  ventana=window.open("","_blank","width="+ancho_ventana+",height="+alto_ventana+",top="+(screen.height-alto)/2+",left="+(screen.width-ancho)/2);
  ventana.document.write("<html><head><title>Muebles Ariza Tapicerķa</title></head><body bgcolor=#ffffff style='margin: 0px 0px;'>");
  ventana.document.write("<table width=100% height=100% cellspacing=0 cellpadding=0 border=0  align=center><tr><td align=center valign=middle>");
  ventana.document.write("<IMG SRC='"+im+"' onClick='self.close()' style='cursor: hand; border: 2px solid black;'>");
  ventana.document.write("</td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}

