
function validateTestimonial(objForm)
{		
	if(objForm.txtarTestimonial.value == "")
	{
		alert("Please enter testimonial");
		objForm.txtarTestimonial.focus()
		return false;
	}	
	else 
	{
		return true;
	}
}
function changeImage()
{
	document.getElementById("spnImage").style.display = '';
}
function deleteImage(objForm, strActionMode,docID)
{
	if(confirm("Are you sure you want to delete this image ?"))
	{	
		objForm.hidAction.value = strActionMode;
		objForm.hidDocId.value = docID;
		objForm.submit();
	}
}
function submitForm(objForm,strActionMode,docID)
{
		objForm.hidAction.value = strActionMode;
		objForm.hidDocId.value = docID;
		objForm.submit();
}
