function showDate(year, month, date) { document.frmCalendar.displayYear.value = year; document.frmCalendar.displayMonth.value = month; document.frmCalendar.displayDate.value = date; var url = "/event/events/etc/calendarsearch"; document.frmCalendar.action = url; document.frmCalendar.submit(); } function showEvents(action, year, month, day){ var sMonth = new Array("JAN","FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"); document.frmCalendar.hidActionName.value = "SearchUserEvent"; document.frmCalendar.radDate.value = "range"; document.frmCalendar.toDate.value = day + "-" + sMonth[month] + "-" + year; if(action == "m"){ document.frmCalendar.fromDate.value = "1-" + sMonth[month] + "-" + year; }else{ document.frmCalendar.fromDate.value = day + "-" + sMonth[month] + "-" + year; } document.frmCalendar.action = "/event/events/etc/event"; document.frmCalendar.submit(); } document.write("
");