function fecha_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout()
{
	setTimeout('fecha_banner()', 10000);
}

function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	var posx = (screen.width/2)-(500/2); 
	var posy = (screen.height/2)-(350/2);
	banner_obj.style.left = posx+'px';
	banner_obj.style.top = posy+'px';

	banner_obj.style.display = '';

	fecha_banner_timeout();
}