    function datoNumerico(e){
		tecla=(document.all) ? e.keyCode : e.which;
		if ( ( tecla<48 || tecla>57) && (tecla!=8) )
		    return false;
		else
		    return true;
    }


    function activarCampo(el){
	el.className="activoI";
    }	

    function desactivarCampo(el){
	el.className="inactivoI";
    }	

    function activarCampo2(el){
	el.className="activo";
    }	

    function desactivarCampo2(el){
	el.className="inactivo";
    }	

    function mayusculas(el){
        var temp = el.value;
	el.value = temp.toUpperCase();
    }	

    function activateMenu(menu){
	document.getElementById("menuHorarios").className="menuCurrent";
    }	


    function activarOpcion(el){
	el.className="menuTipoActivo";
    }	

    function desactivarOpcion(el){
	el.className="menuTipoInactivo";
    }	

    function irConstruccion(){
  	alert("En Construcción, en breve estará disponible esta opción. Disculpe las molestias");
    }

    function abrirUrl(url){
        top.General.document.location.href=url;
    }

    function cambiarImg(origen, destino){
	origen.src=destino.src;	
    }

function viewEvent(id){
	var url;
	var vent2;
	url = 'view_event.asp?id=' + id;
        vent2 = window.open("","","top=30,left=30,height=450,width=700,status=yes,toolbar=no,directories=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
	vent2.location.href=url;
    }

var sizeFont=1;

function fontsizeup() {
	sizeFont+= 0.1;
	cuerpoConEm = sizeFont + "em";
	document.getElementById('cuerpo').style.fontSize=cuerpoConEm;
}

function fontsizedown() {
	if (sizeFont>0.9)
	    sizeFont-= 0.1;
	cuerpoConEm = sizeFont + "em";
	document.getElementById('cuerpo').style.fontSize=cuerpoConEm;
}



