<!-- Begin
var submitcount=0;
function submitCheck(theform){
  //if IE 4+ or NS 6+
  if (document.all||document.getElementById){
    //screen thru every element in the form, and hunt down "submit" and "reset"
    for (i=0;i<theform.length;i++){
      var tempobj=theform.elements[i]
      if(tempobj.type.toLowerCase()=="submit"){
        //disable it
        tempobj.value='Creating your account...\nThis may take a moment - Please Wait!'
        tempobj.disabled=true
      }
      if(tempobj.type.toLowerCase()=="reset"){
        //disable it
        tempobj.disabled=true
      }
    }
  } else { // If IE 3- or NS 5-
    if (submitcount == 0){
      submitcount++;
      return true;
    } else {
      alert("Still creating your account, this may take a moment - Please Wait!");
      return false;
    }
  }
}
 -->