/***************************************************** 
Script: Regula altura del iframe 
Detalles: Se usa con flash, con entiquetas <a>, etc.
Autor: Ignacio Argüello
Fecha: 05/05/07
Mail: mail@yoelnacho.com.ar
web: www.yoelnacho.com.ar/
Argentina

******************************************************/

var iframeids=["the_iframe"]

function alturaIframe(iframeid, url, alto){
if (document.getElementById)
document.getElementById(iframeid).src=url
document.getElementById(iframeid).height=alto
}

function ver(pid){
	document.getElementById(pid).style.display='block';
	}
function nover(pid){
	document.getElementById(pid).style.display='none';
	}
	
function muestraGranDiv(){
document.getElementById('granDiv').style.display = "block";
document.getElementById('cargando').style.display = "none";
}