
/*#####################################################

          Libreria para el control de los mensajes del sistema

		  (C) Grupo5.com By Eduardo Fernandez Martínez
          http://www.grupo5.com

#####################################################*/

window.onscroll = scroll;



function scroll(){

	var capa="mensajes";

	if ( window.pageYOffset ){
        scroll_y = window.pageYOffset;
    }else{
        scroll_y = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
	}

	if ( document.getElementById(capa).style.display != 'none' ){
		if ( scroll_y > 50 ){
			document.getElementById(capa).style.position = 'fixed';
			document.getElementById(capa).style.width = '100%';
			document.getElementById(capa).style.top = '0px';
			document.getElementById(capa).style.right = '0px';
			document.getElementById(capa).style.textalign = 'center';
			document.getElementById(capa).style.zIndex = 5;
		}else{
			document.getElementById(capa).style.top = '';
			document.getElementById(capa).style.right = '';
			document.getElementById(capa).style.position = 'relative';
			document.getElementById(capa).style.zIndex = 1;
		}

	}
}




function visualizacion_mensajes(){	
    /*ocultamos los mensajes cada 10 segundos*/
	if (  document.getElementById('capa_mensajes') ){
		if (document.getElementById('capa_mensajes').display != 'none' ){
				setTimeout("oculta_div('capa_mensajes')",10000);
		}
	}

	if (  document.getElementById('capa_avisos') ){
		if (document.getElementById('capa_avisos').display != 'none' ){
				setTimeout("oculta_div('capa_avisos')",20000);
		}
	}

}
timer_mensajes = setInterval("visualizacion_mensajes()", 1000);









