/* Change History Version Call No. Date Modified by Description ---1.00 33346989 21-May-2009 Noyal Jo Davies Added funtion validate_range ---2.00 34266378 28-Jun-2009 Libty Jomith Added For Phone number validation ---2.01 38490646 09-AUG-2010 Sarath S For Call No 38654943 */ var alertMsg=""; var funFlag = 0 ; function checkForRequired ( fld , field_name ) { if(fld.value=="") { //Modified by ramesh. If field name is blank no alert will be displayed. if (field_name!="") { alert(field_name + " cannot be blank"); } return false; } else return true ; } function checkForRequiredFld ( fld , field_name ) { if(fld.value=="") { //Modified by ramesh. If field name is blank no alert will be displayed. if (field_name!="") { fld.focus(); alert(field_name + " cannot be blank"); } return false; } else return true ; } function trim(inputString) { // Removes leading and trailing spaces from the passed string. Also removes // consecutive spaces and replaces it with one space. If something besides // a string is passed in (null, custom object, etc.) then return the input. var retValue = inputString; var ch = retValue.substring(0,1); while (ch == " ") { // Check for spaces at the beginning of the string retValue = retValue.substring(1, retValue.length); ch = retValue.substring(0, 1); } ch = retValue.substring(retValue.length-1, retValue.length); while (ch == " ") { // Check for spaces at the end of the string retValue = retValue.substring(0, retValue.length-1); ch = retValue.substring(retValue.length-1, retValue.length); } /* while (retValue.indexOf(" ") != -1) { // Note that there are two spaces in the string - look for multiple spaces within the string retValue = retValue.substring(0, retValue.indexOf(" ")) + retValue.substring(retValue.indexOf(" ")+1, retValue.length); // Again, there are two spaces in each of the strings } */ return retValue; // Return the trimmed string back to the user } function isEmpty(s) { while (s.charAt(s.length-1)==' ') s=s.substring(0,s.length-1); return ((s == null) || (s.length == 0)); } //This function is called internally by other functions function isDigit(c) { var test = "" + c; if (test == "0" || test == "1" || test == "2" || test == "3" || test == "4" || test == "5" || test == "6" || test == "7" || test == "8" || test == "9") { return true; } return false; } //Changed By Gaurang For validation without alerts function isInteger(fvalue,f_pn) { alertMsg=""; if(isIntegerSilent(fvalue,f_pn)==false) { alert(alertMsg); alertMsg=""; return false; } return true; } //Changed By Gaurang For validation without alerts function isIntegerSilent(fvalue,f_pn) { var v_pn ="P" ; var v_value = 0 ; v_pn = f_pn ; if (isEmpty(fvalue)==false) { if (f_pn==null) { v_pn ="P" ; } var c = fvalue.substring(0, 1); //alert (c + v_pn); if ((c=="+")||(c=="-")) { if ( (c=="+")&&( (v_pn=="P")||(v_pn=="PN") ) ) { v_value = fvalue.substring(1, fvalue.length); } else if ( (c=="-")&&( (v_pn=="N")||(v_pn=="PN") ) ) { v_value = fvalue.substring(2, fvalue.length); } else { //alert ("Enter Integer Value."); alertMsg ="Enter Integer Value."; return false; } } else if ( (c!="-")&&(v_pn=="N") ) { //alert ("Enter Negative Integer Value."); alertMsg="Enter Negative Integer Value."; return false; } else { v_value = fvalue ; } //alert (v_value); for (var k = 0; k < v_value.length; k++) { var c = v_value.substring(k, k+1); if (isDigit(c) == false) { //alert ("Enter Integer Value."); alertMsg="Enter Integer Value."; return false; } } } return true; } function isIntegerFld(fld,f_pn) { var fvalue = fld.value; if (isInteger(fvalue,f_pn)==false) { fld.focus(); return false; } return true; } //Added By Nilesh //14-Nov-2005 //Modifed by Jagat 01-dec-2005 //Modified by Jagat 16-dec-2005 function isDecimal (fvalue,noAfterDecimals,f_pn) { var noOfDecimals = 0; var isDecimalYn = 'N'; if (isInteger(fvalue,f_pn)==false) { return false; } else { alert ("Enter decimal values."); return false; } } //Changed By Gaurang For validation without alerts function isDecimalFldSilent(objName,numbersAfterDecimals,numberType) { var noOfDecimals = 0; var isDecimalYn = 'N'; numbersAfterDecimals = new String(numbersAfterDecimals); numberType = new String(numberType); if (numbersAfterDecimals==undefined) { numbersAfterDecimals = -1 ; } if (numberType==undefined) { numberType = "P" ; } objName.value = trim(objName.value); var isDeciamlPointPresent = numbersAfterDecimals.indexOf("."); if(isDeciamlPointPresent==-1) { if (isEmpty(objName.value)==false) { var valueBeforeDecimal = objName.value.substring(0,objName.value.indexOf(".")); var k = 0; k=0; while(k < objName.value.length) { var c = objName.value.substring(k,k+1); if(c==".") { noOfDecimals++; isDecimalYn = 'Y'; } if(numberType=="P" || numberType=="PN") { if(c=="+") { if(k!=0) { //alert("+ should be first character"); //objName.focus(); alertMsg="+ should be first character"; return false; } isDecimalYn = 'Y'; } } if(numberType=="N" || numberType=="PN") { if(c=="-") { if(k!=0) { //alert("Enter Positive Decimal Value."); //objName.focus(); alertMsg="Enter Positive Decimal Value."; return false; } isDecimalYn = 'Y'; } } if(noOfDecimals>1) { //alert("Enter only one decimal."); //objName.focus(); alertMsg="Enter only one decimal."; return false; } if(isDecimalYn=='N') { if(isDigit(c) == false) { if(numberType=="PN") { //alert ("Enter Decimal Value."); //objName.focus(); alertMsg="Enter Decimal Value."; return false; } if(numberType=="P") { //alert ("Enter Positive Decimal Value."); //objName.focus(); alertMsg="Enter Positive Decimal Value."; return false; } if(numberType=="N") { //alert ("Enter Negative Decimal Value."); //objName.focus(); alertMsg="Enter Negative Decimal Value."; return false; } } } isDecimalYn = 'N'; k++; } if(objName.value.indexOf(".")!=-1) { var valueAfterDecimal = objName.value.substring(objName.value.indexOf(".")+1); if ((valueAfterDecimal.length>numbersAfterDecimals)&&(numbersAfterDecimals!=-1)) { //alert("Enter "+numbersAfterDecimals+" digits after decimal point."); //objName.focus(); alertMsg="Enter "+numbersAfterDecimals+" digits after decimal point."; return false; } } } } else { if (isEmpty(objName.value)==false) { var valueBeforeDecimal = objName.value.substring(0,objName.value.indexOf(".")); var k = 0; k=0; while(k < objName.value.length) { var c = objName.value.substring(k,k+1); if(c==".") { noOfDecimals++; isDecimalYn = 'Y'; } if(numberType=="P" || numberType=="PN") { if(c=="+") { if(k!=0) { //alert("+ should be first character"); //objName.focus(); alertMsg="+ should be first character"; return false; } isDecimalYn = 'Y'; } } if(numberType=="N" || numberType=="PN") { if(c=="-") { if(k!=0) { //alert("Enter Positive Decimal Value."); //objName.focus(); alertMsg="Enter Positive Decimal Value."; return false; } isDecimalYn = 'Y'; } } if(noOfDecimals>1) { //alert("Enter only one decimal."); //objName.focus(); alertMsg="Enter only one decimal."; return false; } if(isDecimalYn=='N') { if(isDigit(c) == false) { if(numberType=="PN") { //alert ("Enter Decimal Value."); //objName.focus(); alertMsg="Enter Decimal Value."; return false; } if(numberType=="P") { //alert ("Enter Positive Decimal Value."); //objName.focus(); alertMsg="Enter Positive Decimal Value."; return false; } if(numberType=="N") { //alert ("Enter Negative Decimal Value."); //objName.focus(); alertMsg="Enter Negative Decimal Value."; return false; } } } isDecimalYn = 'N'; k++; } var precision = numbersAfterDecimals.substring(numbersAfterDecimals.indexOf(".")+1); var pureNumber = numbersAfterDecimals.substring(0,numbersAfterDecimals.indexOf(".")); pureNumber = parseInt(pureNumber,0) - parseInt(precision,0); pureNumber = parseInt(pureNumber,0) - parseInt(1,0);// for decimal adjustment if(objName.value.indexOf(".")!=-1) { var valueAfterDecimal = objName.value.substring(objName.value.indexOf(".")+1); var valueBeforeDecimal = objName.value.substring(0,objName.value.indexOf(".")); if (valueAfterDecimal.length>precision) { //alert("Enter "+precision+" digits after decimal point."); //objName.focus(); alertMsg="Enter "+precision+" digits after decimal point."; return false; } if (valueBeforeDecimal.length>pureNumber) { //alert("Enter "+pureNumber+" digits before decimal point."); //objName.focus(); alertMsg="Enter "+pureNumber+" digits before decimal point."; return false; } } else { var valueBeforeDecimal = objName.value; if (valueBeforeDecimal.length>pureNumber) { //alert("Enter "+pureNumber+" digits before decimal point."); //objName.focus(); alertMsg="Enter "+pureNumber+" digits before decimal point."; return false; } } } } return true; } //Changed By Gaurang For validation without alerts function isDecimalFld(objName,numbersAfterDecimals,numberType) { alertMsg=""; if(isDecimalFldSilent(objName,numbersAfterDecimals,numberType)==false) { alert(alertMsg); alertMsg=""; objName.focus(); return false; } return true; } function isNumericChar(c) { var test = "" + c; if (test == "0" || test == "1" || test == "2" || test == "3" || test == "4" || test == "5" || test == "6" || test == "7" || test == "8" || test == "9" || test == "." || test == "+" || test == "-") { return true; } return false; } //Added By Ramesh on 4-dec-2005 //To process input of all text fields //It removes all trailing and leading spaces //and removes single quotes function ProcessInputOfAllForms() { var myforms = document.forms; for (var fx=0; fx < myforms.length; fx++) { ProcessInputOfForm (myforms[fx]); } } //Added By Ramesh on 4-dec-2005 function ProcessInputOfForm (theForm) { var elems = theForm.elements; for (var ix=0; ix < elems.length; ix++) { var elem = elems[ix]; if (elem.type =="text" || elem.type =="textarea" ) { if (elem.value.length>0) { elem.value = trim(elem.value) ; //elem.value = trimQuotes(elem.value); } } } } //Added By Ramesh on 4-dec-2005 //removes replaces single quotes with ` function trimQuotes(inputString) { var retValue = ""; var strLength = inputString.length ; var c = "" ; for (var i=0;i<=strLength ; i++) { c = inputString.substring(i, i+1); if (c=="'") { retValue = retValue + "`" ; } else retValue = retValue + c ; } return retValue; } //Added By Ramesh //27-Aug-2005 // function isValidObject(objToTest) { if ("undefined" == typeof(objToTest) ) { return false; } if (null == objToTest) { return false; } return true; } // added by Jagat Singh For Integer Validation FUNTION => convertSingleQuoteToDouble(objName); function convertSingleQuoteToDouble(objName) { var inputString = trim(objName.value); if (isEmpty(inputString)==false) { var k = 0; while(k < inputString.length) { var c = inputString.charCodeAt(k); if(c==39) { inputString = inputString.substring(0,k) + '""' + inputString.substring(k+1); } k++; } } objName.value = inputString; return true; } function checkRange(fld,from,to) { try { parseInt(from); parseInt(to); } catch( e) { alert(e.toString()); return; } if(isIntegerFld(fld)) { if(fld.value>to || fld.value dstvalue) { alert(messg); return ; } } } //Added by gaurang to have comman error messages var errorList = ''; function ValidateField(obj,msg,req,dataType,param) { if (req=='Y') { if(isEmpty(trim(obj.value))) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } if(dataType==undefined) { dataType=""; } else { dataType=dataType.toUpperCase(); } if (dataType=='DATE' && !isEmpty(obj.value)) { if(!isValidDateSilent(obj.value)) { errorList=errorList+'\n-'+msg + ' (Format : dd-mmm-yyyy)'; obj.focus(); return false; } } else if (dataType=='INTEGER') { if(!isIntegerSilent(obj.value,param)) { errorList=errorList+'\n-'+msg+' (Numeric Value Only)'; obj.focus(); return false; } } else if (dataType=='DECIMAL') { if(!isDecimalFldSilent(obj,param)) { errorList=errorList+'\n-'+msg+ ' (Decimal Only)' ; obj.focus(); return false; } } else if (dataType=='STRING') { if(!isAlphabetic(obj.value)) { errorList=errorList+'\n-'+msg+ ' (Characters Only)' ; obj.focus(); return false; } } else if (dataType=='EMAIL' && !isEmpty(obj.value)) { if(!validateEmailSilent(obj.value)) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } //Added by Libty for call number:34266378 /*else if (dataType=='STD' && !isEmpty(obj.value)) { if(obj.value.length < 3 || obj.value.charAt(0) != 0) { errorList=errorList+'\n-'+msg; return false; } }*/ else if (dataType=='TELEPHONE_START' && !isEmpty(obj.value)) { if(obj.value.charAt(0) == 0) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='TELEPHONE_LEN' && !isEmpty(obj.value)) { if(obj.value.length < 6 ) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='TELEPHONE2_START' && !isEmpty(obj.value)) { if(obj.value.charAt(0) == 0) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='TELEPHONE2_LEN' && !isEmpty(obj.value)) { if(obj.value.length < 6 ) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='FAX_START' && !isEmpty(obj.value)) { if(obj.value.charAt(0) == 0) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='FAX_LEN' && !isEmpty(obj.value)) { if(obj.value.length < 6 ) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='MOBILENO' && !isEmpty(obj.value)) { if (obj.value.charAt(0) != 9 && obj.value.charAt(0) != 8 && obj.value.charAt(0) != 7 && obj.value.charAt(0) != 6 )//jeby for 36291392 // Added 7 for Call no 38302757 { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } else if (dataType=='MOBILENO_LEN' && !isEmpty(obj.value)) { if(obj.value.length < 10) { errorList=errorList+'\n-'+msg; obj.focus(); return false; } } //Added by Binu for call:4447237 on 12-Aug-2008 else if (dataType=='ALPHNUM' && !isEmpty(obj.value)) { if(!isAlphaNumeric(obj.value)) { errorList=errorList+'\n-'+msg+ ' (Alpha-Numeric Only)' ; return false; } } //Addition by Binu ends here return true; } //Email Validations Added by gaurang function validateEmailFld(fld) { alertMsg=""; if(validateEmailSilent(fld.value)==false) { alert(alertMsg); alertMsg=""; fld.focus(); return false; } alertMsg=""; return true; } function validateEmail(fvalue) { alertMsg=""; if(validateEmailSilent(fvalue)==false) { alert(alertMsg); alertMsg=""; return false; } alertMsg=""; return true; } function validateEmailSilent(emailStr) { emailStr=emailStr.toLowerCase(); var checkTLD=1; var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/; var emailPat=/^(.+)@(.+)$/; var specialChars="\\(\\)><@,;*&^%#!~+|$?'`/:\\\\\\\"\\.\\[\\]"; var validChars="\[^\\s" + specialChars + "\]"; var quotedUser="(\"[^\"]*\")"; var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/; var atom=validChars + '+'; var word="(" + atom + "|" + quotedUser + ")"; var userPat=new RegExp("^" + word + "(\\." + word + ")*$"); var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$"); var matchArray=emailStr.match(emailPat); if (matchArray==null && emailStr!="") { alertMsg="Email address seems incorrect (check @ and .'s)"; return false; } var user=matchArray[1]; var domain=matchArray[2]; for (i=0; i127) { alertMsg="This username contains invalid characters."; return false; } } for (i=0; i127) { alertMsg="This domain name contains invalid characters."; return false; } } if (user.match(userPat)==null) { alertMsg="The username doesn't seem to be valid."; return false; } var IPArray=domain.match(ipDomainPat); if (IPArray!=null) { for (var i=1;i<=4;i++) { if (IPArray[i]>255) { alertMsg="Destination IP address is invalid!"; return false; } } return true; } var atomPat=new RegExp("^" + atom + "$"); var domArr=domain.split("."); var len=domArr.length; for (i=0;iv_to||frm>lstcnt) { alert("please enter valid 'From' ragne"); return false; } if (v_to<1||v_to>lstcnt||v_to original_gvw && changed_gvw > upperlmt) { alert("You Cannot increase the gvw, because the upperlimit is " +upperlmt); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if(original_gvw <= 7500 && vLimitDiff < 400 && parseInt(changed_gvw) < 400 ) { alert("You Cannot reduce the gvw, because the threshold limit is 400."); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 7501 && original_gvw <= 12000) && vLimitDiff < 7501 && parseInt(changed_gvw) < 7501 ) { alert("You Cannot reduce the gvw, because the threshold limit is 7501."); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 12001 && original_gvw <= 20000) && vLimitDiff < 12001 && parseInt(changed_gvw) < 12001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 12001."); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 20001 && original_gvw <= 40000) && vLimitDiff < 20001 && parseInt(changed_gvw) < 20001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 20001."); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if(original_gvw >= 40001 && vLimitDiff < 40001 && parseInt(changed_gvw) < 40001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 40001."); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } /* 2nd Part*/ else if(original_gvw <= 7500 && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 400) { alert("You Cannot reduce the gvw, because the threshold limit is " +vLimitDiff); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 7501 && original_gvw <= 12000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 7501) { alert("You Cannot reduce the gvw, because the threshold limit is" +vLimitDiff); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 12001 && original_gvw <= 20000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 12001) { alert("You Cannot reduce the gvw, because the threshold limit is " +vLimitDiff); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if((original_gvw >= 20001 && original_gvw <= 40000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 20001) { alert("You Cannot reduce the gvw, because the threshold limit is "+vLimitDiff); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else if(original_gvw >= 40001 && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 40001) { alert("You Cannot reduce the gvw, because the threshold limit is "+vLimitDiff); document.getElementById("carryingCapacity").select(); document.getElementById("carryingCapacity").focus(); return false; } else { //alert("Allowed"); } } } function Validategvw_dealers(obj) { //alert("Validate GVW Called"); var types = document.getElementById("VehTypeCode"); // Addtion fro Amruta GVW if (types.value == 23 || types.value == 24 || types.value == 25 || types.value == 26 ) { var original_gvw = document.getElementById("vec_gvw").value; var changed_gvw =obj.value; var upperlmt= (parseInt(original_gvw) + parseInt(original_gvw * 10/100)); var lowerlmt= original_gvw - changed_gvw; var vLimitDiff = original_gvw - 1000; var vThreshholdLimit; //alert("Original GVW " + original_gvw); /*alert("Changed GVW " + changed_gvw); alert("Lower Limit " + lowerlmt);*/ //added parseInt by Dhanya For Call no:41070082 if (parseInt(changed_gvw) > parseInt(original_gvw) && parseInt(changed_gvw) > parseInt(upperlmt)) { alert("You Cannot increase the gvw, because the upperlimit is " +upperlmt); //obj.select(); obj.focus(); return false; } else if(original_gvw <= 7500 && vLimitDiff < 400 && parseInt(changed_gvw) < 400 ) { alert("You Cannot reduce the gvw, because the threshold limit is 400."); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 7501 && original_gvw <= 12000) && vLimitDiff < 7501 && parseInt(changed_gvw) < 7501 ) { alert("You Cannot reduce the gvw, because the threshold limit is 7501."); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 12001 && original_gvw <= 20000) && vLimitDiff < 12001 && parseInt(changed_gvw) < 12001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 12001."); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 20001 && original_gvw <= 40000) && vLimitDiff < 20001 && parseInt(changed_gvw) < 20001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 20001."); //obj.select(); obj.focus(); return false; } else if(original_gvw >= 40001 && vLimitDiff < 40001 && parseInt(changed_gvw) < 40001 ) { alert("You Cannot reduce the gvw, because the threshold limit is 40001."); //obj.select(); obj.focus(); return false; } /* 2nd Part*/ else if(original_gvw <= 7500 && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 400) { alert("You Cannot reduce the gvw, because the threshold limit is " +vLimitDiff); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 7501 && original_gvw <= 12000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 7501) { alert("You Cannot reduce the gvw, because the threshold limit is" +vLimitDiff); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 12001 && original_gvw <= 20000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 12001 ) { alert("You Cannot reduce the gvw, because the threshold limit is " +vLimitDiff); //obj.select(); obj.focus(); return false; } else if((original_gvw >= 20001 && original_gvw <= 40000) && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 20001) { alert("You Cannot reduce the gvw, because the threshold limit is "+vLimitDiff); //obj.select(); obj.focus(); return false; } else if(original_gvw >= 40001 && parseInt(changed_gvw) < vLimitDiff && vLimitDiff > 40001) { alert("You Cannot reduce the gvw, because the threshold limit is "+vLimitDiff); //obj.select(); obj.focus(); return false; } else { //alert("Allowed"); } } } //Ends by Sarath for the Call No:38654943