// PleaseWait.js version 2
// Written By: James Egelhof
function pleaseWait()
{
 // hides the code in the first <div> tag
 document.getElementById('formDiv').style.display='none';
 // hides the code in the errorDiv tag (in template.jsp)
 document.getElementById('errorDiv').style.display='none';
 // displays the code in the second <div> tag
 document.getElementById('pleaseWaitDiv').style.display='block';
 //oForm.submit();
}
