
function submitForm(name) {
	var x = document.getElementsByName(name);
	x[0].submit();
}

