// JavaScript Document
function submitform(id) {
		var obj = document.getElementById(id);
		obj.submit();
}
