﻿// JScript File

/***********************************************
* Textarea Maxlength script
***********************************************/

function ismaxlength(obj){
var mlength=obj.getAttribute? parseInt(obj.getAttribute("maxlength")) : ""
if (obj.getAttribute && obj.value.length>mlength)
obj.value=obj.value.substring(0,mlength)
}

//        FUNCTION FOR MOBILE VALIDATION
//        CREATED BY ---Saurabh Khare
//        Date-09-Feb-2008
          function Mobile_Validation(w,evt)
          {
             var charCode = (evt.which) ? evt.which : event.keyCode
             if (w.value.length == 0  && charCode == 43 )
             {
             return true;       
             }
                        
             if (charCode > 31 && (charCode < 48 || charCode > 57))
             {                   
              return false;                           
             }            
             else
             {
              return true; 
             } 
          }
          
//        FUNCTION FOR Phone VALIDATION
//        CREATED BY ---Saurabh Khare
//        Date-09-Feb-2008
          function Phone_Validation(w,evt)
          {
            
             //alert(w.value.substring(w.value.length-1)
             var charCode = (evt.which) ? evt.which : event.keyCode
             if (w.value.length == 0  && charCode == 43 )
             {
             return true;       
             }
              
             else if (w.value.length > 2 && charCode == 45)
             {
               var s = w.value
               var d = s.substring(w.value.length - 1);
               if (d == "-")
               {
                return false;
               }
               else
               {
                return true;
               }
             
             }
                                     
             if (charCode > 31 && (charCode < 48 || charCode > 57))
             {                   
              return false;                           
             }            
             else
             {
              return true; 
             } 
          }    

//        FUNCTION FOR PIN CODE VALIDATION
//        CREATED BY ---Saurabh Khare
//        Date-09-Feb-2008
          function PIN_Validation(w,evt)
          {
             var charCode = (evt.which) ? evt.which : event.keyCode
             
             if (w.value.length > 2 && charCode == 45)
             {
               var s = w.value
               var d = s.substring(w.value.length - 1);
               if (d == "-")
               {
                return false;
               }
               else
               {
                return true;
               }
             
             }                       
             if (charCode > 31 && (charCode < 48 || charCode > 57))
             {                   
              return false;                           
             }            
             else
             {
              return true; 
             } 
          }

//        FUNCTION FOR Entering Number VALIDATION
//        CREATED BY ---Saurabh Khare
//        Date-09-Feb-2008
          function Number(w,evt)
          {
             var charCode = (evt.which) ? evt.which : event.keyCode
                                  
             if (charCode > 31 && (charCode < 48 || charCode > 57))
             {                   
              return false;                           
             }            
             else
             {
              return true; 
             } 
          }
          
//        FUNCTION FOR Entering Decimal Number VALIDATION
//        CREATED BY ---Saurabh Khare
//        Date-09-Feb-2008
          function DecimalNumber(w,evt)
          {
            //debugger;
             var charCode = (evt.which) ? evt.which : event.keyCode
                                  
             if (charCode > 31 && (charCode < 48 || charCode > 57))
             {     
               if (charCode == 46)
                  {
                   return true;
                  }  
               else
                  {
                   return false;
                  }               
                                         
             }            
             else
             {
              return true; 
             } 
          }
          
         

function round_decimals(original_number, decimals) {
    var result1 = original_number * Math.pow(10, decimals)
    var result2 = Math.round(result1)
    var result3 = result2 / Math.pow(10, decimals)
    return pad_with_zeros(result3, decimals)
}

function pad_with_zeros(rounded_value, decimal_places) {

    // Convert the number to a string
    var value_string = rounded_value.toString()
    
    // Locate the decimal point
    var decimal_location = value_string.indexOf(".")

    // Is there a decimal point?
    if (decimal_location == -1) {
        
        // If no, then all decimal places will be padded with 0s
        decimal_part_length = 0
        
        // If decimal_places is greater than zero, tack on a decimal point
        value_string += decimal_places > 0 ? "." : ""
    }
    else {

        // If yes, then only the extra decimal places will be padded with 0s
        decimal_part_length = value_string.length - decimal_location - 1
    }
    
    // Calculate the number of decimal places that need to be padded with 0s
    var pad_total = decimal_places - decimal_part_length
    
    if (pad_total > 0) {
        
        // Pad the string with 0s
        for (var counter = 1; counter <= pad_total; counter++) 
            value_string += "0"
        }
    return value_string
}

//-->

