	function submitbutton(pressbutton) {
		if (pressbutton) {
			document.form2.task.value=pressbutton;
		}
		if (typeof document.form2.onsubmit == "function") {
			document.form2.onsubmit();
		}
		document.form2.submit();
	}

