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



function abre_banner_timeout()
{
	setTimeout('abre_banner()', 1000);
}



function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	
	banner_obj.style.left = '500px';
	banner_obj.style.top = '200px';
	
	banner_obj.style.display = '';
	
	/* fecha_banner_timeout(); */
}
