function dateToLocaleString(d,f){var a=f.cfg.getProperty("WEEKDAYS_LONG")[d.getDay()];var b=d.getDate();var e=f.cfg.getProperty("MONTHS_LONG")[d.getMonth()];var c=d.getFullYear();return(a+", "+e+" "+b+" "+c)}function addToSelectedDateList(a){$("selected-dates").insert('<li id="'+a+'"><p>'+a+'</p><input type="hidden" name="dates" value="'+a+'"/></li>')}function removeFromSelectedDateList(a){$(a).replace("")}function mySelectHandler(d,a,e){var c=a[0];var b=this.toDate(c[0]);addToSelectedDateList(dateToLocaleString(b,this))}function myDeselectHandler(b,a,e){var c=a[0];var d=this.toDate(c[0]);removeFromSelectedDateList(dateToLocaleString(d,this))}Event.observe(window,"load",function(){toggleAutoCommunicate()});$("autoCommuncationOn").observe("click",function(a){toggleAutoCommunicate()});$("autoCommuncationOff").observe("click",function(a){toggleAutoCommunicate()});function toggleAutoCommunicate(){var a=getCheckedRadioButtonValue($("createEventForm").autoCommunication);if(a==""||a==null||a=="false"){$("auto-communication-section").hide();$("submit-event-button").value="Create"}else{$("auto-communication-section").show();$("submit-event-button").value="Send"}};
