function submitFormByID(form_id)
{
	var form_obj = document.getElementById(form_id);
	//alert(form_obj);
	form_obj.submit();
}