/*
	submit forms
*/

function submitForm(theFormId)
{
	
	try{
	
		if(typeof(theFormId)=="string")
		{
			if(theFormId!="")
			{
				if($(theFormId))
				{
					$(theFormId).submit();
					return true;		
				}
			}
		}
		
	} catch (e)
	{
		
	}
	
	return false;
}