//====================================================================================================
//	Function Name	:	Validate_Form
//----------------------------------------------------------------------------------------------------
function Validate_Form(frm)
{
	with(frm)
    {		
		if(!IsEmpty(cont_name, 'Please enter your Name.'))
		{
			return false;
		}
		
		if(!IsEmpty(cont_email, 'Please enter your Email Address.'))
		{
			return false;
		}
		else if(!IsEmail(cont_email, 'Oppsss!!! Invalid Email Address specified!'))
		{
			return false;
		}
		
		if(!IsEmpty(cont_comment, 'Please enter your Comment.'))
		{
			return false;
		}
	}
	
	return true;
}