/* Block multiple form submission script */ //Enter error message to display if submit button has been pressed multiple times below. //Delete below line if you don't want a message displayed: var formerrormsg="You\'ve attempted to submit the form multiple times.\n Please reload page if you need to resubmit form." function checksubmit(submitbtn){ submitbtn.form.submit() checksubmit=blocksubmit return false } function blocksubmit(){ if (typeof formerrormsg!="undefined") alert(formerrormsg) return false }

Add me to the Mailing List