function activaFlechas()
{
/*funcion que recorre todos los enlaces para asignarle el evento onclick al boton contenido*/
	var  spans = document.getElementsByTagName("SPAN");
	

	for (i in spans)
	{
	var span=spans[i];
	
		if (span!=undefined){
			var enlace=span.parentNode;
			if(enlace!=undefined)
			{
				if(enlace.tagName=="A")
				{
						if (enlace.onclick==undefined)
						enlace.onclick=function (){window.location.href=this.href};
						//window.location.href=this.parentNode.href
				}
			}
		}
	}
	
}
window.onload=activaFlechas;