function fechabanner()
{
	var banner_obj = document.getElementById('bannerpopup');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout()
{
	setTimeout('fechabanner()', 2005500);
}

function abre_banner()
{
	var banner_obj = document.getElementById('bannerpopup');

	banner_obj.style.left = '315px';
	banner_obj.style.top = '220px';

	banner_obj.style.display = '';

	fecha_banner_timeout();
}
