// JavaScript Document

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

function fecha_banner_timeoutone()
{
	setTimeout('fecha_bannerone()', 35000);
}

function abre_bannerone()
{
	var banner_obj = document.getElementById('popupone');
	
/*	banner_obj.style.left = '200px'; */
/*	banner_obj.style.top = '100px'; */
	
	banner_obj.style.display = '';
	
	fecha_banner_timeoutone();
}

// #####################################

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

function fecha_banner_timeout()
{
	setTimeout('fecha_bannertwo()', 35000);
}

function abre_bannertwo()
{
	var banner_obj = document.getElementById('popuptwo');
	
/*	banner_obj.style.left = '200px'; */
/*	banner_obj.style.top = '100px'; */
	
	banner_obj.style.display = '';
	
	fecha_banner_timeout();
}
