var nume=1;

function abrir2(im,ancho,alto){
  ancho_ventana=ancho+20;
  if (alto>500) {
  	alto_ventana=500;
  }
  else {
	alto_ventana=alto+20;
  }
  ventana="ventana"+nume;
  ventana=window.open("","_blank","width="+ancho_ventana+",height="+alto_ventana+",top="+(screen.height-alto-80)/2+",left="+(screen.width-ancho)/2+",scrollbars=auto,resizable=no");
  if (alto>500) {
  	ventana.document.write("<html><head><title>ASCENSORES MUNIOSGUREN</title></head><body bgcolor=#ffffff style='margin: 0px 0px;' scroll=yes>");
  }
  else {
  	ventana.document.write("<html><head><title>ASCENSORES MUNIOSGUREN</title></head><body bgcolor=#ffffff style='margin: 0px 0px;' scroll=no>");
  }
  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: 0px solid black;'>");
  ventana.document.write("</td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}

function abrir(im){
  ventana="ventana"+nume;
  ventana=window.open(im,"_blank");
  window.cursor='default';
  nume=nume+1;
}
function abrir3(text){
  ventana="ventana"+nume;
  ventana=window.open("","_blank","width=400,height=500,top="+(screen.height-400-80)/2+",left="+(screen.width-400)/2+",scrollbars=yes,resizable=no");
  ventana.document.write("<html><head><title>ASCENSORES MUNIOSGUREN</title><link rel='stylesheet' href='../comun/estilos/estilos.css'></head><body bgcolor=#ffffff style='margin: 10px 10px;'>");
  ventana.document.write(text);
  ventana.document.write("</body></html>");
  window.cursor='default';
  nume=nume+1;
}

function mostrar(num)
{
var cont=1;
var capa="bloque";
for(cont;cont<3;cont++){
  capa=capa+cont;
  if(cont==num){
    eval(capa+".style.display='block'");
	  }
  else{
    eval(capa+".style.display='none'");
      }
  capa="bloque"; 
  }
}

function cambio(m){
centro.src="grandes/"+m;
}

