function ocultar(identificador){
	var bot = document.getElementById(identificador);
	bot.className = "oculto";
}

function resizeIframe(idIframe){
	var ifr = document.getElementById(idIframe);
	ifr.style.height="100px";
	ifr.style.height = (ifr.contentWindow.document.body.scrollHeight) + "px";
	ifr.style.width = (ifr.contentWindow.document.body.scrollWidth) + "px";
}


