function dateChange() {
dateVal = document.calMonthYearChange.calmonthyear.options[document.calMonthYearChange.calmonthyear.options.selectedIndex].value;
year = (dateVal.substring(0,4));
mon = (dateVal.substring(5,7));
//window.location="index.cfm?monthrequest=" + mon + "&yearrequest=" + year;
window.location="/index.cfm?fuseaction=Page.ViewPage&daterequest=" + mon + "/1/" + year + "&pageId=578&parentPageId=4&monthlySearch=yes";
}
|