// JavaScript Document

function submitForm (formid) {
	if ($("#" + formid).validate().form()) {
		$('#' + formid).submit();
	}
}

