function fecha_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout()
{
	setTimeout('fecha_banner()', 90000);
}

function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');

	banner_obj.style.width = '99%';
	banner_obj.style.margin = 'auto';
	banner_obj.style.height = 'auto';
	banner_obj.style.display = '';

	fecha_banner_timeout();
}
