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("<head><title>Language Land - Grupo TEDISA-CEM</title>");
  ventana.document.write("</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+"' alt='x cerrar' onClick='self.close()' style='cursor: hand; border: 2px solid #000000;'>");
  ventana.document.write("</td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}

function abrirg(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("<head><title>Language Land - Grupo TEDISA-CEM</title>");
  ventana.document.write("</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>");
  var reemplazo="";
  reemplazo=im.replace("fotos_rte/peq/","fotos_rte/");
  ventana.document.write("<IMG SRC='"+reemplazo+"' onClick='self.close()' style='cursor: hand; border: 2px solid #000000;'>");
  ventana.document.write("</td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}


function abrirv(nombre){
  ventana="ventana"+nume;
  ventana=window.open(nombre,"_blank","width=550,height=400,top="+(screen.height-400)/2+",left="+(screen.width-400)/2+"scrollbars=yes");
 }


function abrirconflash(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("<head><title>Language Land - Grupo TEDISA-CEM</title>");
  ventana.document.write("</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("<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' codebase='http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0'  width=" + ancho + " height=" + alto + " id='textoavisolegal' align='middle'>");
  ventana.document.write("<param name='allowScriptAccess' value='sameDomain' />");
  ventana.document.write("<param name='movie' value='flash/"+ im +"' />");
  ventana.document.write("<param name='quality' value='high' />");
  ventana.document.write("<param name='bgcolor' value='#ffffff' />");
  ventana.document.write("<embed src='flash/"+ im +"' quality='high' bgcolor='#ffffff' width=" + ancho + " height=" + alto + " name='textoavisolegal' align='middle' allowScriptAccess='sameDomain' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />");
  ventana.document.write("</object>");
  ventana.document.write("</td></tr></table></body></html>");
  window.cursor='default';
  nume=nume+1;
}


function muestra(cual, cuantos){
	for (i=1;i<=cuantos;i++){
		eval("bloque"+i+".style.display='none'");
	}
	eval("bloque"+cual+".style.display='block'");
}


