   	/***********************************************************************************************

	Copyright (c) 2005 - Alf Magne Kalleland post@dhtmlgoodies.com

	UPDATE LOG:

	March, 10th, 2006 : Added support for a message while large image is loading

	Get this and other scripts at www.dhtmlgoodies.com

	You can use this script freely as long as this copyright message is kept intact.

	***********************************************************************************************/
function fecha_banner()
{
	var banner_obj = document.getElementById('banner_popup');
	banner_obj.style.display = 'none';
}

function fecha_banner_timeout()
{
	setTimeout('fecha_banner()', 35000);
}

function abre_banner()
{
	var banner_obj = document.getElementById('banner_popup');

	banner_obj.style.left = '300px';
	banner_obj.style.top = '30px';

	banner_obj.style.display = '';

	fecha_banner_timeout();
}
