
//====================================================================================================
//	File Name		:	testimonials.js
//----------------------------------------------------------------------------------------------------
//	Purpose			:	Client side validation in JavaScript.
//	Author			:	Manoj Rana
//	Creation Date	:	07-June-2003
//	Copyright		:	Copyrights © 2003 Dot Infosys
//	Email			:	info@dotinfosys.com
//	History			:
//						Date				Author					Remark
//						07-June-2003		Manoj Rana			Initial Release
//
//====================================================================================================

//====================================================================================================
//	Function Name	:	Form_Submit()
//	Purpose			:	This function will executed when user submits a form. It checks validity of
//						every field in the form.
//
//	Parameters		:	frm  - form name
//	Return			:	true or false
//	Author			:	Manoj Rana
//	Creation Date	:	07-June-2003
//----------------------------------------------------------------------------------------------------
function Form_Submit(frm)
{
	with(frm)
    {
		if(!IsEmail(email, 'Please, Enter Valid Email-Address.'))
        {
			return false;
        }
        return true;
    }

}
