var n;
var p;
var p1;
var re = new RegExp ('.', 'gi') ;
function ValidatePhone(elementID){
	var phone = document.getElementById(elementID);
	p=replaceSubstring(phone.value, '.', '');
	
	if(p.length==3){
		//d10=p.indexOf('(')
		pp=p;
		d4=p.indexOf('(')
		d5=p.indexOf(')')
		if(d4==-1){
			pp="("+pp;
		}
		if(d5==-1){
			pp=pp+")";
		}
		
		//phone.value='';
		phone.value=pp;
	}
	
	if(p.length>3){
		d1=p.indexOf('(')
		d2=p.indexOf(')')
		if (d2==-1){
			l30=p.length;
			p30=p.substring(0,4);
			p30=p30+")"
			p31=p.substring(4,l30);
			pp=p30+p31;
			//phone.value='';
			phone=pp;
		}
	}
	if(p.length>5){
		p11=p.substring(d1+1,d2);
		if(p11.length>3){
			p12=p11;
			l12=p12.length;
			l15=p.length

			p13=p11.substring(0,3);
			p14=p11.substring(3,l12);
			p15=p.substring(d2+1,l15);
			//phone.value='';
			pp="("+p13+")"+p14+p15;
			phone.value=pp;
		}
		
		l16=p.length;
		p16=p.substring(d2+1,l16);
		l17=p16.length;
		if(l17>3&&p16.indexOf('-')==-1){
			p17=p.substring(d2+1,d2+4);
			p18=p.substring(d2+4,l16);
			p19=p.substring(0,d2+1);
			pp=p19+p17+"-"+p18;
			//phone.value='';
			phone.value=pp;
		}
	}
	//setTimeout(ValidatePhone,100)
}

function replaceSubstring(inputString, fromString, toString) {
   // Goes through the inputString and replaces every occurrence of fromString with toString
   var temp = inputString;
   if (fromString == "") {
      return inputString;
   }
   if (toString.indexOf(fromString) == -1) { 
  // If the string being replaced is not a part of the replacement string (normal situation)
      while (temp.indexOf(fromString) != -1) {
         var toTheLeft = temp.substring(0, temp.indexOf(fromString));
         var toTheRight = temp.substring(temp.indexOf(fromString)+fromString.length, temp.length);
         temp = toTheLeft + toString + toTheRight;
      }
   } 
   return temp; 
} 

var digits = "0123456789";

var lowercaseLetters = "abcdefghijklmnopqrstuvwxyz"

var uppercaseLetters = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"


// whitespace characters
var whitespace = " \t\n\r";


// decimal point character differs by language and culture
var decimalPointDelimiter = "."


// non-digit characters which are allowed in phone numbers
var phoneNumberDelimiters = "()- ";


// characters which are allowed in US phone numbers
var validUSPhoneChars = digits + phoneNumberDelimiters;


// characters which are allowed in international phone numbers
// (a leading + is OK)
var validWorldPhoneChars = digits + phoneNumberDelimiters + "+";


// non-digit characters which are allowed in 
// Social Security Numbers
var SSNDelimiters = "- ";



// characters which are allowed in Social Security Numbers
var validSSNChars = digits + SSNDelimiters;



// U.S. Social Security Numbers have 9 digits.
// They are formatted as 123-45-6789.
var digitsInSocialSecurityNumber = 9;



// U.S. phone numbers have 10 digits.
// They are formatted as 123 456 7890 or (123) 456-7890.
var digitsInUSPhoneNumber = 10;



// non-digit characters which are allowed in ZIP Codes
var ZIPCodeDelimiters = "-";



// our preferred delimiter for reformatting ZIP Codes
var ZIPCodeDelimeter = "-"


// characters which are allowed in Social Security Numbers
var validZIPCodeChars = digits + ZIPCodeDelimiters



// U.S. ZIP codes have 5 or 9 digits.
// They are formatted as 12345 or 12345-6789.
var digitsInZIPCode1 = 5
var digitsInZIPCode2 = 9


// non-digit characters which are allowed in credit card numbers
var creditCardDelimiters = " "


// CONSTANT STRING DECLARATIONS
// (grouped for ease of translation and localization)

// m is an abbreviation for "missing"

var mPrefix = "You did not enter a value into the "
var mSuffix = " field. This is a required field. Please enter it now."

// s is an abbreviation for "string"

var sUSLastName = "Last Name"
var sUSFirstName = "First Name"
var sWorldLastName = "Family Name"
var sWorldFirstName = "Given Name"
var sTitle = "Title"
var sCompanyName = "Company Name"
var sUSAddress = "Street Address"
var sWorldAddress = "Address"
var sCity = "City"
var sStateCode = "State Code"
var sWorldState = "State, Province, or Prefecture"
var sCountry = "Country"
var sZIPCode = "ZIP Code"
var sWorldPostalCode = "Postal Code"
var sPhone = "Phone Number"
var sFax = "Fax Number"
var sDateOfBirth = "Date of Birth"
var sExpirationDate = "Expiration Date"
var sEmail = "Email"
var sSSN = "Social Security Number"
var sCreditCardNumber = "Credit Card Number"
var sOtherInfo = "Other Information"




// i is an abbreviation for "invalid"

var iStateCode = "This field must be a valid two character U.S. state abbreviation (like CA for California). Please reenter it now."
var iZIPCode = "The Zip Code is not a 5 or 9 digit U.S. ZIP Code (94043). Please reenter it now."
var iUSPhone = "The Phone number is not a 10 digit U.S. phone number (415 555 1212). Please reenter it now."
var iWorldPhone = "This field must be a valid international phone number. Please reenter it now."
var iSSN = "This field must be a 9 digit U.S. social security number (like 123 45 6789). Please reenter it now."
var iEmail = "This field must be a valid email address (like foo@bar.com). Please reenter it now."
var iCreditCardPrefix = "This is not a valid "
var iCreditCardSuffix = " credit card number. (Click the link on this form to see a list of sample numbers.) Please reenter it now."
var iDay = "This field must be a day number between 1 and 31.  Please reenter it now."
var iMonth = "This field must be a month number between 1 and 12.  Please reenter it now."
var iYear = "This field must be a 2 or 4 digit year number.  Please reenter it now."
var iDatePrefix = "The Day, Month, and Year for "
var iDateSuffix = " do not form a valid date.  Please reenter them now."



// p is an abbreviation for "prompt"

var pEntryPrompt = "Please enter a "
var pStateCode = "2 character code (like CA)."
var pZIPCode = "5 or 9 digit U.S. ZIP Code (like 94043)."
var pUSPhone = "10 digit U.S. phone number (like 415 555 1212)."
var pWorldPhone = "international phone number."
var pSSN = "9 digit U.S. social security number (like 123 45 6789)."
var pEmail = "valid email address (like foo@bar.com)."
var pCreditCard = "valid credit card number."
var pDay = "day number between 1 and 31."
var pMonth = "month number between 1 and 12."
var pYear = "2 or 4 digit year number."


// Global variable defaultEmptyOK defines default return value 
// for many functions when they are passed the empty string. 
// By default, they will return defaultEmptyOK.
//
// defaultEmptyOK is false, which means that by default, 
// these functions will do "strict" validation.  Function
// isInteger, for example, will only return true if it is
// passed a string containing an integer; if it is passed
// the empty string, it will return false.
//
// You can change this default behavior globally (for all 
// functions which use defaultEmptyOK) by changing the value
// of defaultEmptyOK.
//
// Most of these functions have an optional argument emptyOK
// which allows you to override the default behavior for 
// the duration of a function call.
//
// This functionality is useful because it is possible to
// say "if the user puts anything in this field, it must
// be an integer (or a phone number, or a string, etc.), 
// but it's OK to leave the field empty too."
// This is the case for fields which are optional but which
// must have a certain kind of content if filled in.

var defaultEmptyOK = false




// Attempting to make this library run on Navigator 2.0,
// so I'm supplying this array creation routine as per
// JavaScript 1.0 documentation.  If you're using 
// Navigator 3.0 or later, you don't need to do this;
// you can use the Array constructor instead.

function makeArray(n) {
//*** BUG: If I put this line in, I get two error messages:
//(1) Window.length can't be set by assignment
//(2) daysInMonth has no property indexed by 4
//If I leave it out, the code works fine.
//   this.length = n;
   for (var i = 1; i <= n; i++) {
      this[i] = 0
   } 
   return this
}



var daysInMonth = makeArray(12);
daysInMonth[1] = 31;
daysInMonth[2] = 29;   // must programmatically check this
daysInMonth[3] = 31;
daysInMonth[4] = 30;
daysInMonth[5] = 31;
daysInMonth[6] = 30;
daysInMonth[7] = 31;
daysInMonth[8] = 31;
daysInMonth[9] = 30;
daysInMonth[10] = 31;
daysInMonth[11] = 30;
daysInMonth[12] = 31;




// Valid U.S. Postal Codes for states, territories, armed forces, etc.
// See http://www.usps.gov/ncsc/lookups/abbr_state.txt.

var USStateCodeDelimiter = "|";
var USStateCodes = "AL|AK|AS|AZ|AR|CA|CO|CT|DE|DC|FM|FL|GA|GU|HI|ID|IL|IN|IA|KS|KY|LA|ME|MH|MD|MA|MI|MN|MS|MO|MT|NE|NV|NH|NJ|NM|NY|NC|ND|MP|OH|OK|OR|PW|PA|PR|RI|SC|SD|TN|TX|UT|VT|VI|VA|WA|WV|WI|WY|AE|AA|AE|AE|AP"




// Check whether string s is empty.

function isEmpty(s)
{   return ((s == null) || (s.length == 0))
}



// Returns true if string s is empty or 
// whitespace characters only.

function isWhitespace (s)

{   var i;

    // Is s empty?
    if (isEmpty(s)) return true;

    // Search through string's characters one by one
    // until we find a non-whitespace character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);

        if (whitespace.indexOf(c) == -1) return false;
    }

    // All characters are whitespace.
    return true;
}



// Removes all characters which appear in string bag from string s.

function stripCharsInBag (s, bag)

{   var i;
    var returnString = "";

    // Search through string's characters one by one.
    // If character is not in bag, append to returnString.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);
        if (bag.indexOf(c) == -1) returnString += c;
    }

    return returnString;
}



// Removes all characters which do NOT appear in string bag 
// from string s.

function stripCharsNotInBag (s, bag)

{   var i;
    var returnString = "";

    // Search through string's characters one by one.
    // If character is in bag, append to returnString.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character isn't whitespace.
        var c = s.charAt(i);
        if (bag.indexOf(c) != -1) returnString += c;
    }

    return returnString;
}



// Removes all whitespace characters from s.
// Global variable whitespace (see above)
// defines which characters are considered whitespace.

function stripWhitespace (s)

{   return stripCharsInBag (s, whitespace)
}

function charInString (c, s)
{   for (i = 0; i < s.length; i++)
    {   if (s.charAt(i) == c) return true;
    }
    return false
}

function stripInitialWhitespace (s)

{   var i = 0;

    while ((i < s.length) && charInString (s.charAt(i), whitespace))
       i++;
    
    return s.substring (i, s.length);
}

function isLetter (c)
{   return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) )
}



// Returns true if character c is a digit 
// (0 .. 9).

function isDigit (c)
{   return ((c >= "0") && (c <= "9"))
}



// Returns true if character c is a letter or digit.

function isLetterOrDigit (c)
{   return (isLetter(c) || isDigit(c))
}
function isInteger (s)

{   var i;

    if (isEmpty(s)) 
       if (isInteger.arguments.length == 1) return defaultEmptyOK;
       else return (isInteger.arguments[1] == true);

    // Search through string's characters one by one
    // until we find a non-numeric character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is number.
        var c = s.charAt(i);

        if (!isDigit(c)) return false;
    }

    // All characters are numbers.
    return true;
}

function isSignedInteger (s)

{   if (isEmpty(s)) 
       if (isSignedInteger.arguments.length == 1) return defaultEmptyOK;
       else return (isSignedInteger.arguments[1] == true);

    else {
        var startPos = 0;
        var secondArg = defaultEmptyOK;

        if (isSignedInteger.arguments.length > 1)
            secondArg = isSignedInteger.arguments[1];

        // skip leading + or -
        if ( (s.charAt(0) == "-") || (s.charAt(0) == "+") )
           startPos = 1;    
        return (isInteger(s.substring(startPos, s.length), secondArg))
    }
}

function isPositiveInteger (s)
{   var secondArg = defaultEmptyOK;

    if (isPositiveInteger.arguments.length > 1)
        secondArg = isPositiveInteger.arguments[1];
    return (isSignedInteger(s, secondArg)
         && ( (isEmpty(s) && secondArg)  || (parseInt (s) > 0) ) );
}
function isNonnegativeInteger (s)
{   var secondArg = defaultEmptyOK;

    if (isNonnegativeInteger.arguments.length > 1)
        secondArg = isNonnegativeInteger.arguments[1];

    // The next line is a bit byzantine.  What it means is:
    // a) s must be a signed integer, AND
    // b) one of the following must be true:
    //    i)  s is empty and we are supposed to return true for
    //        empty strings
    //    ii) this is a number >= 0

    return (isSignedInteger(s, secondArg)
         && ( (isEmpty(s) && secondArg)  || (parseInt (s) >= 0) ) );
}

function isNegativeInteger (s)
{   var secondArg = defaultEmptyOK;

    if (isNegativeInteger.arguments.length > 1)
        secondArg = isNegativeInteger.arguments[1];

    // The next line is a bit byzantine.  What it means is:
    // a) s must be a signed integer, AND
    // b) one of the following must be true:
    //    i)  s is empty and we are supposed to return true for
    //        empty strings
    //    ii) this is a negative, not positive, number

    return (isSignedInteger(s, secondArg)
         && ( (isEmpty(s) && secondArg)  || (parseInt (s) < 0) ) );
}
function isNonpositiveInteger (s)
{   var secondArg = defaultEmptyOK;

    if (isNonpositiveInteger.arguments.length > 1)
        secondArg = isNonpositiveInteger.arguments[1];

    // The next line is a bit byzantine.  What it means is:
    // a) s must be a signed integer, AND
    // b) one of the following must be true:
    //    i)  s is empty and we are supposed to return true for
    //        empty strings
    //    ii) this is a number <= 0

    return (isSignedInteger(s, secondArg)
         && ( (isEmpty(s) && secondArg)  || (parseInt (s) <= 0) ) );
}
function isFloat (s)

{   var i;
    var seenDecimalPoint = false;

    if (isEmpty(s)) 
       if (isFloat.arguments.length == 1) return defaultEmptyOK;
       else return (isFloat.arguments[1] == true);

    if (s == decimalPointDelimiter) return false;

    // Search through string's characters one by one
    // until we find a non-numeric character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is number.
        var c = s.charAt(i);

        if ((c == decimalPointDelimiter) && !seenDecimalPoint) seenDecimalPoint = true;
        else if (!isDigit(c)) return false;
    }

    // All characters are numbers.
    return true;
}

function isSignedFloat (s)

{   if (isEmpty(s)) 
       if (isSignedFloat.arguments.length == 1) return defaultEmptyOK;
       else return (isSignedFloat.arguments[1] == true);

    else {
        var startPos = 0;
        var secondArg = defaultEmptyOK;

        if (isSignedFloat.arguments.length > 1)
            secondArg = isSignedFloat.arguments[1];

        // skip leading + or -
        if ( (s.charAt(0) == "-") || (s.charAt(0) == "+") )
           startPos = 1;    
        return (isFloat(s.substring(startPos, s.length), secondArg))
    }
}
function isAlphabetic (s)

{   var i;

    if (isEmpty(s)) 
       if (isAlphabetic.arguments.length == 1) return defaultEmptyOK;
       else return (isAlphabetic.arguments[1] == true);

    // Search through string's characters one by one
    // until we find a non-alphabetic character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is letter.
        var c = s.charAt(i);

        if (!isLetter(c))
        return false;
    }

    // All characters are letters.
    return true;
}

function isAlphanumeric (s)

{   var i;

    if (isEmpty(s)) 
       if (isAlphanumeric.arguments.length == 1) return defaultEmptyOK;
       else return (isAlphanumeric.arguments[1] == true);

    // Search through string's characters one by one
    // until we find a non-alphanumeric character.
    // When we do, return false; if we don't, return true.

    for (i = 0; i < s.length; i++)
    {   
        // Check that current character is number or letter.
        var c = s.charAt(i);

        if (! (isLetter(c) || isDigit(c) ) )
        return false;
    }

    // All characters are numbers or letters.
    return true;
}

function reformat (s)

{   var arg;
    var sPos = 0;
    var resultString = "";

    for (var i = 1; i < reformat.arguments.length; i++) {
       arg = reformat.arguments[i];
       if (i % 2 == 1) resultString += arg;
       else {
           resultString += s.substring(sPos, sPos + arg);
           sPos += arg;
       }
    }
    return resultString;
}

function isSSN (s)
{   if (isEmpty(s)) 
       if (isSSN.arguments.length == 1) return defaultEmptyOK;
       else return (isSSN.arguments[1] == true);
    return (isInteger(s) && s.length == digitsInSocialSecurityNumber)
}

function isUSPhoneNumber (s)
{   if (isEmpty(s)) 
       if (isUSPhoneNumber.arguments.length == 1) return defaultEmptyOK;
       else return (isUSPhoneNumber.arguments[1] == true);
    return (isInteger(s) && s.length == digitsInUSPhoneNumber)
}

function isInternationalPhoneNumber (s)
{   if (isEmpty(s)) 
       if (isInternationalPhoneNumber.arguments.length == 1) return defaultEmptyOK;
       else return (isInternationalPhoneNumber.arguments[1] == true);
    return (isPositiveInteger(s))
}

function isZIPCode (s)
{  if (isEmpty(s)) 
       if (isZIPCode.arguments.length == 1) return defaultEmptyOK;
       else return (isZIPCode.arguments[1] == true);
   return (isInteger(s) && 
            ((s.length == digitsInZIPCode1) ||
             (s.length == digitsInZIPCode2)))
}

function isStateCode(s)
{   if (isEmpty(s)) 
       if (isStateCode.arguments.length == 1) return defaultEmptyOK;
       else return (isStateCode.arguments[1] == true);
    return ( (USStateCodes.indexOf(s) != -1) &&
             (s.indexOf(USStateCodeDelimiter) == -1) )
}

function isEmail (s)
{   if (isEmpty(s)) 
       if (isEmail.arguments.length == 1) return defaultEmptyOK;
       else return (isEmail.arguments[1] == true);
   
    // is s whitespace?
    if (isWhitespace(s)) return false;
    
    // there must be >= 1 character before @, so we
    // start looking at character position 1 
    // (i.e. second character)
    var i = 1;
    var sLength = s.length;

    // look for @
    while ((i < sLength) && (s.charAt(i) != "@"))
    { i++
    }

    if ((i >= sLength) || (s.charAt(i) != "@")) return false;
    else i += 2;

    // look for .
    while ((i < sLength) && (s.charAt(i) != "."))
    { i++
    }

    // there must be at least one character after the .
    if ((i >= sLength - 1) || (s.charAt(i) != ".")) return false;
    else return true;
}

function isYear (s)
{   if (isEmpty(s)) 
       if (isYear.arguments.length == 1) return defaultEmptyOK;
       else return (isYear.arguments[1] == true);
    if (!isNonnegativeInteger(s)) return false;
    return ((s.length == 2) || (s.length == 4));
}

function isIntegerInRange (s, a, b)
{   if (isEmpty(s)) 
       if (isIntegerInRange.arguments.length == 1) return defaultEmptyOK;
       else return (isIntegerInRange.arguments[1] == true);

    // Catch non-integer strings to avoid creating a NaN below,
    // which isn't available on JavaScript 1.0 for Windows.
    if (!isInteger(s, false)) return false;

    // Now, explicitly change the type to integer via parseInt
    // so that the comparison code below will work both on 
    // JavaScript 1.2 (which typechecks in equality comparisons)
    // and JavaScript 1.1 and before (which doesn't).
    var num = parseInt (s);
    return ((num >= a) && (num <= b));
}

function isMonth (s)
{   if (isEmpty(s)) 
       if (isMonth.arguments.length == 1) return defaultEmptyOK;
       else return (isMonth.arguments[1] == true);
    return isIntegerInRange (s, 1, 12);
}


function isDay (s)
{   if (isEmpty(s)) 
       if (isDay.arguments.length == 1) return defaultEmptyOK;
       else return (isDay.arguments[1] == true);   
    return isIntegerInRange (s, 1, 31);
}



// daysInFebruary (INTEGER year)
// 
// Given integer argument year,
// returns number of days in February of that year.

function daysInFebruary (year)
{   // February has 29 days in any year evenly divisible by four,
    // EXCEPT for centurial years which are not also divisible by 400.
    return (  ((year % 4 == 0) && ( (!(year % 100 == 0)) || (year % 400 == 0) ) ) ? 29 : 28 );
}



// isDate (STRING year, STRING month, STRING day)
//
// isDate returns true if string arguments year, month, and day 
// form a valid date.
// 

function isDate (year, month, day)
{   // catch invalid years (not 2- or 4-digit) and invalid months and days.
    if (! (isYear(year, false) && isMonth(month, false) && isDay(day, false))) return false;

    // Explicitly change type to integer to make code work in both
    // JavaScript 1.1 and JavaScript 1.2.
    var intYear = parseInt(year);
    var intMonth = parseInt(month);
    var intDay = parseInt(day);

    // catch invalid days, except for February
    if (intDay > daysInMonth[intMonth]) return false; 

    if ((intMonth == 2) && (intDay > daysInFebruary(intYear))) return false;

    return true;
}




/* FUNCTIONS TO NOTIFY USER OF INPUT REQUIREMENTS OR MISTAKES. */


// Display prompt string s in status bar.

function prompt (s)
{   window.status = s
}



// Display data entry prompt string s in status bar.

function promptEntry (s)
{   window.status = pEntryPrompt + s
}




// Notify user that required field theField is empty.
// String s describes expected contents of theField.value.
// Put focus in theField and return false.

function warnEmpty (theField, s)
{   theField.focus()
    alert(mPrefix + s + mSuffix)
    return false
}



// Notify user that contents of field theField are invalid.
// String s describes expected contents of theField.value.
// Put select theField, pu focus in it, and return false.

function warnInvalid (theField, s)
{   
	//var errorMessage = document.getElementById('errorMessage');
	//errorMessage.innerHTML = s;
	theField.style.backgroundColor = '#FFF0F0';
	alert(s);
	theField.select();
	theField.focus();
    return false;
}




/* FUNCTIONS TO INTERACTIVELY CHECK VARIOUS FIELDS. */

// checkString (TEXTFIELD theField, STRING s, [, BOOLEAN emptyOK==false])
//
// Check that string theField.value is not all whitespace.
//
// For explanation of optional argument emptyOK,
// see comments of function isInteger.

function checkString (theField, s, emptyOK)
{   // Next line is needed on NN3 to avoid "undefined is not a number" error
    // in equality comparison below.
    if (checkString.arguments.length == 2) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    if (isWhitespace(theField.value)) 
       return warnEmpty (theField, s);
    else return true;
}



// checkStateCode (TEXTFIELD theField [, BOOLEAN emptyOK==false])
//
// Check that string theField.value is a valid U.S. state code.
//
// For explanation of optional argument emptyOK,
// see comments of function isInteger.

function checkStateCode (theField, emptyOK)
{   if (checkStateCode.arguments.length == 1) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    else
    {  theField.value = theField.value.toUpperCase();
       if (!isStateCode(theField.value, false)) 
          return warnInvalid (theField, iStateCode);
       else return true;
    }
}



// takes ZIPString, a string of 5 or 9 digits;
// if 9 digits, inserts separator hyphen

function reformatZIPCode (ZIPString)
{   if (ZIPString.length == 5) return ZIPString;
    else return (reformat (ZIPString, "", 5, "-", 4));
}




// checkZIPCode (TEXTFIELD theField [, BOOLEAN emptyOK==false])
//
// Check that string theField.value is a valid ZIP code.
//
// For explanation of optional argument emptyOK,
// see comments of function isInteger.
function checkZIPCode (theField, emptyOK)
{   if (checkZIPCode.arguments.length == 1) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    else
    { var normalizedZIP = stripCharsInBag(theField.value, ZIPCodeDelimiters)
      if (!isZIPCode(normalizedZIP, false)) 
         return warnInvalid (theField, iZIPCode);
      else 
      {  // if you don't want to insert a hyphen, comment next line out
      	 theField.style.backgroundColor = '';
         theField.value = reformatZIPCode(normalizedZIP)
         return true;
      }
    }
}



// takes USPhone, a string of 10 digits
// and reformats as (123) 456-789

function reformatUSPhone (USPhone)
{   return (reformat (USPhone, "(", 3, ") ", 3, "-", 4))
}


function checkUSPhone (theField, emptyOK)
{   if (checkUSPhone.arguments.length == 1) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    else
    {  var normalizedPhone = stripCharsInBag(theField.value, phoneNumberDelimiters)
       if (!isUSPhoneNumber(normalizedPhone, false)) 
          return warnInvalid (theField, iUSPhone);
       else 
       {  // if you don't want to reformat as (123) 456-789, comment next line out
          theField.style.backgroundColor = '';
          theField.value = reformatUSPhone(normalizedPhone)
          return true;
       }
    }
}



// checkInternationalPhone (TEXTFIELD theField [, BOOLEAN emptyOK==false])
//
// Check that string theField.value is a valid International Phone.
//
// For explanation of optional argument emptyOK,
// see comments of function isInteger.

function checkInternationalPhone (theField, emptyOK)
{   if (checkInternationalPhone.arguments.length == 1) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    else
    {  if (!isInternationalPhoneNumber(theField.value, false)) 
          return warnInvalid (theField, iWorldPhone);
       else return true;
    }
}



// checkEmail (TEXTFIELD theField [, BOOLEAN emptyOK==false])
//
// Check that string theField.value is a valid Email.
//
// For explanation of optional argument emptyOK,
// see comments of function isInteger.

function checkEmail (theField, emptyOK)
{   if (checkEmail.arguments.length == 1) emptyOK = defaultEmptyOK;
    if ((emptyOK == true) && (isEmpty(theField.value))) return true;
    else if (!isEmail(theField.value, false)) 
       return warnInvalid (theField, iEmail);
    else return true;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}



function navOver(id){
    var column = document.getElementById(id);
	column.className = 'navBoxOver';
}
function navOut(id){
	var column = document.getElementById(id);
	column.className = 'navBox';
}
function checkPasswords()
{
	var pass1 = document.getElementById('PASSWORD');
	var pass2 = document.getElementById('PASSWORD2');
	
	if(pass1.value == pass2.value){
		return true;
	}else{
		alert('Passwords do not match!');
		pass1.value = '';
		pass2.value = '';
		return false;
	}
	 
}
function showRows(ID)
{
	var rid = 'row'+ID;
	var sid = ID+'show';
	var hid = ID+'hide';
	
	for(i=0;i<10;i++){
		srid = rid + i;
		if(row = document.getElementById(srid)){
			row.style.visibility = '';
			row.style.display = '';
		}
	}

	var show = document.getElementById(sid);
	var hide = document.getElementById(hid);
	
	show.style.visibility = 'hidden';
	show.style.display = 'none';
	hide.style.visibility = '';
	hide.style.display = '';
}
function hideRows(ID)
{
	//Build the element names
	var rid = 'row'+ID;
	var sid = ID+'show';
	var hid = ID+'hide';
	
	for(i=0;i<10;i++){
		srid = rid + i;
		if(row = document.getElementById(srid)){
			row.style.visibility = 'hidden';
			row.style.display = 'none';
		}
	}

	var show = document.getElementById(sid);
	var hide = document.getElementById(hid);
	
	show.style.visibility = '';
	show.style.display = '';
	hide.style.visibility = 'hidden';
	hide.style.display = 'none';
}
var hiZ = 2;
function addPDate(ponum,litem,panum,qty,qty2,notes,action,sid,day,mon,year)
{
	//hideDelPDate();
	hideDiv('rejectBox');
	
	//Add Promise Date PO Number - addPdatePONum
	var pon = document.getElementById('addPdatePONum');
	pon.value = ponum;

	//Add Promise Date Line Item  - addPdateLItem
	var pli = document.getElementById('addPdateLItem');
	pli.value = litem;

	//Add Promise Date Part number - addPdatePaNum
	var pan = document.getElementById('addPdatePaNum');
	pan.value = panum;

	/*//Add Promise Date QTY - addPdateQTY
	var pqty = document.getElementById('addPdateQTY');
	pqty.value = qty;*/
	
	//Add Promise Date QTY - addPdateQTY
	var pqty2 = document.getElementById('addPdateQTY2');
	pqty2.value = qty2;
	
	//Add Promise Date QTY - addPdateQTY
	var pqty3 = document.getElementById('addPdateQTY3');
	pqty3.value = qty;
	
	//addpTitle
	var title = document.getElementById('addpTitle');
	title.innerHTML = 'Accept/Add Promise Date';
	
	//addPdateSubBut
	var subbut = document.getElementById('addPdateSubBut');
	subbut.value = 'Accept/Add Promise Date';
	
	if(sid){
		//<input id="delSCHED_ID" type="hidden" name="SCHED_ID" value="">
		var addsid = document.getElementById('addSCHED_ID');
		addsid.value = sid;
	}
	
	//var pdateAction
	if(action){
		var haction = document.getElementById('pdateAction');
		if(action == 'edit'){
			haction.value = 'savepdate';
			title.innerHTML = 'Edit Promise Date';
			subbut.value = 'Save Promise Date';
		}
	}
	
	//Notes
	var pNotes = document.getElementById('pNotes');
	if(notes){
		pNotes.value = notes;
	}else{
		pNotes.value = '';
	}	
	
	var addForm = document.getElementById('addForm');
	if(day && mon && year){
		addForm.Date_Day.value = day;
		addForm.Date_Month.value = mon;
		addForm.Date_Year.value = year;
	}

	var ele = xGetElementById('addPromiseDate');
	ele.style.visibility = '';
	ele.style.display = '';
	
	if(document.all){
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
	}else{
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele) - 425) / 2);
	}
	
	//addPromiseDrag
	//var ele = xGetElementById('addPromiseDrag');
	//xEnableDrag(ele,myOnDragStart, myOnDrag, myOnDragEnd);
	topMargin = xPageY('leftColumn');
  	winOnResize(); // set initial position
  	xAddEventListener(window, 'resize', winOnResize, false);
  	xAddEventListener(window, 'scroll', winOnScroll, false);
}
var slideTime = 300, topMargin;
function winOnResize() {
  var ele = xGetElementById('addPromiseDate');
  //xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
  //xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2,topMargin);
  if(document.all){
  	xSlideTo('addPromiseDate', xLeft('addPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('addPromiseDate')) / 2), slideTime);
  }else{
  	xSlideTo('addPromiseDate', xLeft('addPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('addPromiseDate') - 425) / 2), slideTime);
  }
  xShow('addPromiseDate');
  winOnScroll(); // initial slide
}
function winOnScroll() {
  if(document.all){
  	xSlideTo('addPromiseDate', xLeft('addPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('addPromiseDate')) / 2), slideTime);
  }else{
  	xSlideTo('addPromiseDate', xLeft('addPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('addPromiseDate') - 425) / 2), slideTime);
  }
}

function myOnDragStart(ele, mx, my)
{
  xZIndex(ele, hiZ++);
  //xZIndex('addPromiseDate', hiZ++);
}
function myOnDrag(ele, mdx, mdy)
{
  xMoveTo(ele, xLeft(ele) + mdx, xTop(ele) + mdy);
  //xMoveTo('addPromiseDate', xLeft('addPromiseDate') + mdx, xTop('addPromiseDate') + mdy);
}
function myOnDragEnd(ele, mx, my)
{
	//Add Promise Date QTY - addPdateQTY
	//var pqty = document.getElementById('addPdateQTY');
	//pqty.focus();
}

function hidePDate()
{
	var ele = xGetElementById('addPromiseDate');
	ele.style.visibility = 'hidden';
	ele.style.display = 'none';
	MM_swapImgRestore();
	
}

function hideDelPDate()
{
	var ele = xGetElementById('delPromiseDate');
	ele.style.visibility = 'hidden';
	ele.style.display = 'none';
	MM_swapImgRestore();
}

function checkAddPromise()
{
	if(!checkQTY()){
		return false;
	}
	
	//Add Promise Date QTY - addPdateQTY
	var pqty = document.getElementById('addPdateQTY');
	
	//Add Promise Date QTY - addPdateQTY
	var pqty2 = document.getElementById('addPdateQTY2');
	
	//Add Promise Date QTY - addPdateQTY
	var pqty3 = document.getElementById('addPdateQTY3');
	
	var q1 = parseInt(pqty.value);
	var q2 = parseInt(pqty2.value);
	var q3 = parseInt(pqty3.value);
	
	if((q1-q3) > q2){
		alert(q1+' Exceeds Quantity Ordered! '+q2+' Remaining');
		return false;
	}else{
		return true;
	}
	
}
function delPDate(ponum,litem,panum,qty,notes,sid,day,mon,year)
{
	hidePDate();
	
	//delPdatePaDate
	var date = document.getElementById('delPdatePaDate');
	date.value = mon+'/'+day+'/'+year;
	
	//Add Promise Date PO Number - addPdatePONum
	var pon = document.getElementById('delPdatePONum');
	pon.value = ponum;

	//Add Promise Date Line Item  - addPdateLItem
	var pli = document.getElementById('delPdateLItem');
	pli.value = litem;

	//Add Promise Date Part number - addPdatePaNum
	var pan = document.getElementById('delPdatePaNum');
	pan.value = panum;

	/*//Add Promise Date QTY - addPdateQTY
	var pqty = document.getElementById('delPdateQTY');
	pqty.value = qty;*/
	
	if(sid){
		//<input id="delSCHED_ID" type="hidden" name="SCHED_ID" value="">
		var delsid = document.getElementById('delSCHED_ID');
		delsid.value = sid;
	}
	
	//Notes
	var pNotes = document.getElementById('delpNotes');
	if(notes){
		pNotes.value = notes;
	}else{
		pNotes.value = '';
	}	

	var ele = xGetElementById('delPromiseDate');
	ele.style.visibility = '';
	ele.style.display = '';
	
	if(document.all){
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
	}else{
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele) - 350) / 2);
	}
	
	topMargin = xPageY('leftColumn');
  	winOnResize2(); // set initial position
  	xAddEventListener(window, 'resize', winOnResize2, false);
  	xAddEventListener(window, 'scroll', winOnScroll2, false);
}
var slideTime = 300, topMargin;
function winOnResize2() {
  var ele = xGetElementById('delPromiseDate');
  //xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
  //xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2,topMargin);
  if(document.all){
  	xSlideTo('delPromiseDate', xLeft('delPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('delPromiseDate')) / 2), slideTime);
  }else{
  	xSlideTo('delPromiseDate', xLeft('delPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('delPromiseDate')- 350) / 2), slideTime);
  }
  xShow('delPromiseDate');
  winOnScroll(); // initial slide
}
function winOnScroll2() {
  if(document.all){
  	xSlideTo('delPromiseDate', xLeft('delPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('delPromiseDate')) / 2), slideTime);
  }else{
  	xSlideTo('delPromiseDate', xLeft('delPromiseDate'), xScrollTop() + ((xClientHeight() - xHeight('delPromiseDate')- 350) / 2), slideTime);
  }
  
}

function checkQTY()
{
	//Add Promise Date QTY - addPdateQTY
	var pqty = document.getElementById('addPdateQTY');
	var qty = parseInt(pqty.value);
	//pqty.value = qty;
	if(isInteger(pqty.value)){
		return true;
	}else{
		alert('Please Enter a Valid Integer Value');
		return false;
	}
}

var hiZ = 2;
function showTip(text)
{
	var tip = document.getElementById('cHelpBoxTip');
	tip.innerHTML = text;

        var maxH = xClientHeight() - 25;
	var ele = xGetElementById('cHelpBox');
	ele.style.visibility = '';
	ele.style.display = '';
        if (text.length < 500) {
            ele.style.width = '200px';
            ele.style.height= '100px';
        } else if (text.length < 1500) {
            ele.style.width = '400px';
        } else {
            ele.style.width = '600px';
            if (maxH<450) {
              ele.style.height = maxH+'px';
              ele.style.overflow = 'auto';
            } else {
              ele.style.height = '450px';
            }
        }
	
	if(document.all){
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
	}else{
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 8);
	}
	
	topMargin = xPageY('leftColumn');
  	winOnResizecHelpBox(); // set initial position
  	xAddEventListener(window, 'resize', winOnResizecHelpBox, false);
  	xAddEventListener(window, 'scroll', winOnScrollcHelpBox, false);
}
var slideTime = 300, topMargin;
function winOnResizecHelpBox() {
  xShow('cHelpBox');
  winOnScrollcHelpBox(); // initial slide
}
function winOnScrollcHelpBox() {
  if(document.all){ 
  	xSlideTo('cHelpBox', xLeft('cHelpBox'), xScrollTop() + ((xClientHeight() - xHeight('cHelpBox')) / 2), slideTime);
  }else{
  	xSlideTo('cHelpBox', xLeft('cHelpBox'), xScrollTop() + ((xClientHeight() - xHeight('cHelpBox')) / 8), slideTime);
  }
}
function hideHelpBox()
{
	var ele = xGetElementById('cHelpBox');
	ele.style.visibility = 'hidden';
	ele.style.display = 'none';
	MM_swapImgRestore();
	
}
//edit
var hiZ = 2;
function editConHelp(modid,fid,phr,ttip,def)
{
	var moduleid = document.getElementById('moduleid');
	moduleid.value = modid;
	
	var fieldid = document.getElementById('fieldid');
	fieldid.value = fid;
	
	var phrase = document.getElementById('word');
	phrase.value = phr;
	
	var tooltip = document.getElementById('tip');
	tooltip.value = ttip;
	
	var definition = document.getElementById('desc');
	definition.innerHTML = def;

	var ele = xGetElementById('editCHelp');
	ele.style.visibility = '';
	ele.style.display = '';
	
	if(document.all){
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
	}else{
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele) - 350) / 2);
	}
	
	topMargin = xPageY('leftColumn');
  	winOnResizeEditCHelp(); // set initial position
  	xAddEventListener(window, 'resize', winOnResizeEditCHelp, false);
  	xAddEventListener(window, 'scroll', winOnScrollEditCHelp, false);
}
var slideTime = 300, topMargin;
function winOnResizeEditCHelp() {
  var ele = xGetElementById('editCHelp');
  if(document.all){
  	xSlideTo('editCHelp', xLeft('editCHelp'), xScrollTop() + ((xClientHeight() - xHeight('editCHelp')) / 2), slideTime);
  }else{
  	xSlideTo('editCHelp', xLeft('editCHelp'), xScrollTop() + ((xClientHeight() - xHeight('editCHelp') - 350) / 2), slideTime);
  }
  xShow('editCHelp');
  winOnScrollEditCHelp(); // initial slide
}
function winOnScrollEditCHelp() {
  if(document.all){
  	xSlideTo('editCHelp', xLeft('editCHelp'), xScrollTop() + ((xClientHeight() - xHeight('editCHelp')) / 2), slideTime);
  }else{
  	xSlideTo('editCHelp', xLeft('editCHelp'), xScrollTop() + ((xClientHeight() - xHeight('editCHelp') - 350) / 2), slideTime);
  }
}
function hideEditCHelp()
{
	var ele = xGetElementById('editCHelp');
	ele.style.visibility = 'hidden';
	ele.style.display = 'none';
	MM_swapImgRestore();
	
}

//edit
var hiZ = 2;
function addEditMessage(action,key,title,text,divID)
{
	var txtTitle = document.getElementById('title');
	txtTitle.value = title;

	var txtText = document.getElementById('text');
	if(!text && divID && document.getElementById(divID)){
		//assign text from div ID
		text = document.getElementById(divID).innerHTML;
	}
	txtText.value = text;

	var hidKey = document.getElementById('key');
	hidKey.value = key;
		
	if(action){
		var hidAction = document.getElementById('action');
		hidAction.value = 'updatemessage';
    }else{
    	var hidAction = document.getElementById('action');
		hidAction.value = 'addmessage';
    }
    
    var ele = xGetElementById('EditMess');
	ele.style.visibility = '';
	ele.style.display = '';
	
	if(document.all){
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele)) / 2);
	}else{
		xMoveTo(ele, (xClientWidth() - xWidth(ele)) / 2, (xClientHeight() - xHeight(ele) - 350) / 2);
	}

	topMargin = xPageY('leftColumn');
  	winOnResizeEditMess(); // set initial position
  	xAddEventListener(window, 'resize', winOnResizeEditMess, false);
  	xAddEventListener(window, 'scroll', winOnScrollEditMess, false);
}
var slideTime = 300, topMargin;
function winOnResizeEditMess() {
  var ele = xGetElementById('EditMess');
  if(document.all){
  	xSlideTo('EditMess', xLeft('EditMess'), xScrollTop() + ((xClientHeight() - xHeight('EditMess')) / 2), slideTime);
  }else{
  	xSlideTo('EditMess', xLeft('EditMess'), xScrollTop() + ((xClientHeight() - xHeight('EditMess') - 350) / 2), slideTime);
  }
  xShow('EditMess');
  winOnScrollEditMess(); // initial slide
}
function winOnScrollEditMess() {
  if(document.all){
  	xSlideTo('EditMess', xLeft('EditMess'), xScrollTop() + ((xClientHeight() - xHeight('EditMess')) / 2), slideTime);
  }else{
  	xSlideTo('EditMess', xLeft('EditMess'), xScrollTop() + ((xClientHeight() - xHeight('EditMess') - 350) / 2), slideTime);
  }
}
function hideEditMess()
{
	var ele = xGetElementById('EditMess');
	ele.style.visibility = 'hidden';
	ele.style.display = 'none';
	MM_swapImgRestore();
	
}
