function ucDate_getComboValue(c,b){var a=document.getElementById((c!="")?c+"_"+b:b);return a.options[a.selectedIndex].value}function ucDate_getMin(a){return ucDate_getComboValue(a,"cboMinute")}function ucDate_getHour(a){return ucDate_getComboValue(a,"cboHour")}function ucDate_getDay(a){return ucDate_getComboValue(a,"cboDay")}function ucDate_getMonth(a){return ucDate_getComboValue(a,"cboMonth")}function ucDate_getYear(a){return ucDate_getComboValue(a,"cboYear")}function ucDate_getValue(a){return ucDate_buildDate(ucDate_getDay(a),ucDate_getMonth(a),ucDate_getYear(a))}function ucDate_buildDate(a,d,b){if(a==""||d==""||b==""){return null}d--;var c=new Date();c.setDate(1);c.setYear(b);c.setMonth(d);c.setDate(a);if(c.getDate()==a&&c.getMonth()==d&&c.getFullYear()==b){return c}else{return null}}function ucDate_toString(a){if(a==null){return""}var b=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");return a.getDate()+"-"+b[a.getMonth()]+"-"+a.getFullYear()}function ucDate_validate(m,p,i,k,e,h,b,g,j,d){var c=ucDate_getDay(p);var f=ucDate_getMonth(p);var n=ucDate_getYear(p);if(c==""&&f==""&&n==""){if(i){alert(Translate(MSG_PLEASE_SPECIFY_VALUE)+" "+m);return false}else{if(k){return confirm(Translate(MSG_NOT_A_VALID_VALUE)+" "+m+". "+Translate(MSG_CLICK_OK_TO_PROCEED)+" "+m)}}}else{if(c==""||f==""||n==""){alert(Translate(MSG_PLEASE_SPEFICY_FOR_ALL_PARTS)+" "+m+"\n"+Translate(MSG_IE_DMY));return false}else{var o=ucDate_buildDate(c,f,n);if(o==null){alert(Translate(MSG_INVALID_VALUE_FOR)+" '"+m+"'.");return false}else{if(e>0){var a=ucDate_buildDate(e,h,b);if(o<a){alert("'"+m+"' "+Translate(MSG_CANNONT_BE_BEFORE)+" "+ucDate_toString(a));return false}}if(g>0){var l=ucDate_buildDate(g,j,d);if(o>l){alert("'"+m+"' "+Translate(MSG_CANNONT_BE_AFTER)+" "+ucDate_toString(l));return false}}}}}return true};
