LibManager.require("frame.prototype.form");
LibManager.require("Scheduler");
var JumpToEvent={init:function(){
$("selectEvent").style.display="block";
Event.observe($("formSubmit"),"click",this.goToURL);
},goToURL:function(){
var _1=$F("EventFormSelect");
if(_1!=0){
window.location=_1;
}
}};
LibManager.isLoaded(["Scheduler"],function(){
Scheduler.schedule("eventsDesc","JumpToEvent.init()");
});

