function submitForm(objeId)
{
	try {
		var obje = document.getElementById(objeId);
		obje.submit();
	} catch(err) {
		//alert(err.description)
	}
}
