		// Simple Submit v1.0 generic
		
			function simpleSubmit(formObj,button) {
				formObj.simple_submit_dummy.name = button ;
				formObj.submit();
			}


			/* --------------------------------------------------------

			This script submits a form and simulates a click on a certain
			button. To achieve this it uses a dummy variable (which it
			renames) to make it possible to include "button" names. Therefore,
			please insert the following tag into every form using this script:
			
			<INPUT TYPE="hidden" NAME="simple_submit_dummy" value="1">
			
			"formObj" is the specific form object in your document. You point
			it out by entering "document.name_of_the_form" (no quotes)
			when you call upon the function.

			An example using this function:

			<A HREF="JavaScript:simpleSubmit(document.name_of_the_form,'name_of_thebutton')">the linktext</A>

			-------------------------------------------------------- */