// JavaScript Document
function submitDatePickForm() {
    fromDate = new Date(document.frmOrderProcess.startDate.value);
    toDate = new Date(document.frmOrderProcess.endDate.value);
	document.frmOrderProcess.action = 'orderProcess.jsp';
    if (fromDate > toDate) {
       		alert("Start Date must be less than or equal to End Date");
			document.frmOrderProcess.startDate.focus();
	        return;
   	}
   	document.frmOrderProcess.submit();
}
function showDatePicker(obj1,section, classStyle) {
	dwfaq_ToggleOMaticClass(obj1,section, classStyle);
}
