function chkForm()
{
	
		if (trim(document.frm.txtTitle.value)=="")
		{
			alert("Please enter Information")
			document.frm.txtTitle.focus()
			return false
		}	
		
		if (trim(document.frm.txtDescription.value)=="")
		{
			alert("Please enter Details")
			document.frm.txtDescription.focus()
			return false
		}	
	setTimeout("delay()",1250); 	
	return false
	
	
	
}

function delay()
{
	document.frm.action="Informant_Post_Save.asp"
	document.frm.submit()
}

