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>Casa Mariano</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;
}

function abrircon(im,ancho,alto,texto){
  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>Casa Mariano</title></head><LINK REL='stylesheet' TYPE='text/css' HREF='../comun/estilos/estilo.css'><body bgcolor=#fffed9 style='margin: 0px 0px;'>");
  ventana.document.write("<table width=90% height=100% cellspacing=0 cellpadding=0 border=0 align=center><tr><td align=center>");
  ventana.document.write("<IMG SRC='"+im+"' onClick='self.close()' style='cursor: hand; border: 2px solid black;'>");
  ventana.document.write("</td></tr>");
  ventana.document.write("<tr><td valign=top><p align=justify><font class=v11>"+texto+"</font></p></td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}

function muestra(cual, cuantos){
	for (i=1;i<=cuantos;i++){
		cadena="m"+i;
		capa=eval(cadena);
		capa.style.display='none';
	}
	cual.style.display='block';
}
function cambio(m){
centro.src="grandes/"+m;
}
function abrir2(im,ancho,alto){
	altoi=alto+20;
	anchoi=ancho+20;
	features = "width="+anchoi+",height="+altoi+",top="+(screen.height-alto)/2+",left="+(screen.width-ancho)/2;	
	window.open(im,"yo",features);
}


