function ocultar(identificador)
{
	if (document.getElementById(identificador) != null){
		var bot = document.getElementById(identificador);
		bot.className = "oculto";
	}
}




function resizeIframe( idIframe ) {
	var ifr = document.getElementById( idIframe );
	ifr.style.height="100px";
	
	//console.log('resize from ' + ifr.style.height + ' to ' +ifr.contentWindow.document.body.scrollHeight);
	ifr.style.height = ifr.contentWindow.document.body.scrollHeight + "px";
	ifr.style.width = ( ifr.contentWindow.document.body.scrollWidth ) + "px";
}

