function disableAndSubmit(theButton) 
{ 
 theButton.value="Please Wait..."; 
 theButton.disabled = true; 
 theButton.className = "buttonPress"; 
 theButton.form.submit(); 
} 
