function fecha_banner2()
{
	var banner_obj = document.getElementById('banner_popup2');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout2()
{
	setTimeout('fecha_banner2()', 900000);
}

function abre_banner2()
{
	var banner_obj = document.getElementById('banner_popup2');

	banner_obj.style.left = '1%';
	banner_obj.style.top = '3%';

	banner_obj.style.display = '';

	fecha_banner_timeout2();
}
