function abre_banner(id)
{
	document.getElementById(id).style.display = "block";
}
function fecha_banner(id)
{
	document.getElementById(id).style.display = "none";
}