
suitClass.prototype.formSubmit = function(formID) { // version 1.0
  theForm = suit.pGetObject(formID);
  if (!theForm) alert("The function suit.formSubmit() could not find the form \"" + formID + "\"");
	else theform.submit();
}

