
function sendForm(id)
{
	var f = $('#' + id);
	if (f.length > 0){
		if (typeof f.get(0).submit != 'undefined')
		{
			f.get(0).submit();
		}
	}
}

