// JavaScript Document

var intervalo;

function fechaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
}
function clicaRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "none";
	location.href = "informacoes-campanha.aspx?Id=7";
}
function mostraRich(){
	var rich_media = document.getElementById("rich_media");
	rich_media.style.display = "block";
	setTimeout("fechaRich()",20000)
}
