function fecha_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout()
{
	setTimeout('fecha_banner()', 99999);
}

function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');

	banner_obj.style.left = '50%';
	banner_obj.style.top = '50%';
	banner_obj.style.marginLeft = '-300px';
	banner_obj.style.marginTop = '-200px';

	banner_obj.style.display = 'block';
	banner_obj.style.zIndex = '2';

	fecha_banner_timeout();
}


