	function formValidation(obj_form)
	{
		var b_correct=true;
		var obj_element;
		if(b_correct)
		{
			obj_element=obj_form.txt_title;
			if(!ValidateTextBox("Title",obj_element,true,50,false,false,false,false,false,false,false,"",false))
			{
				b_correct=false;
			}
		}
		if(b_correct)
		{
			obj_element=obj_form.txt_description;
			if(!ValidateTextBox("Description",obj_element,false,65500,false,false,false,false,false,false,false,"",false))
			{
				b_correct=false;
			}
		}
		if(b_correct)
		{
			obj_element=obj_form.cbo_date;
			if(!ValidateDropdownList("Date",obj_element,false,10))
			{
				b_correct=false;
			}
		}
		if(b_correct && !confirm("Are you sure you want to save this record?"))
		{
			b_correct=false;
		}
		return b_correct;
	}
