function pleaseWait(theForm) {
	if ( theForm.submitButton ) {
		theForm.submitButton.value='Please Wait...';
		theForm.submitButton.disabled=true;
	}
	return true;
}