function submitForm2Page(form_id, page) {
    document.getElementById(form_id).action=page;
    document.getElementById(form_id).submit();
}
function submitForm(form_id) {
    document.getElementById(form_id).submit();
}
			  