function fecha_banner()
	
{

	var banner_obj = document.getElementById('popup');
	banner_obj.style.display = 'none';
	}




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




function abre_banner()
	
{

	var banner_obj = document.getElementById('popup');

	banner_obj.style.left = '320px';
	banner_obj.style.top = '55px';
	banner_obj.style.display = '';
	}


