<!--
	function FormatPhone9(theField, areacode) {
      var Phone = theField.value;
      var tempPhone = "";
      var character = "";
      for (var i = 0; i <= 13; i++) {
        character = Phone.substring(i, i + 1)
        if (! isNaN(character)) { tempPhone += character }
      }
      if (tempPhone.length == 10) {
        theField.value = "(" + tempPhone.substring(0,3) + ") " + tempPhone.substring(3,6) + "-" + tempPhone.substring(6,10);
      }
      else if (tempPhone.length == 7) {
        theField.value = "(" + areacode + ") " + tempPhone.substring(0,3) + "-" + tempPhone.substring(3,7);
      }
    }
//-->

<!--
    function changePage (cbo) {
        var jumpto = cbo.options[cbo.selectedIndex].value;
        if (jumpto != "") {
           self.location.href = jumpto
        }
        return true;
    }
//-->

<!--
function numbersonly(myfield, e, dec)
{
var key;
var keychar;

if (window.event)
   key = window.event.keyCode;
else if (e)
   key = e.which;
else
   return true;
keychar = String.fromCharCode(key);

// control keys
if ((key==null) || (key==0) || (key==8) || 
    (key==9) || (key==13) || (key==27) )
   return true;

// numbers
else if ((("0123456789.-").indexOf(keychar) > -1))
   return true;

// decimal point jump
else if (dec && (keychar == "."))
   {
   myfield.form.elements[dec].focus();
   return false;
   }
else
   return false;
}

//-->


