function CheckValidation(frm)
{
	
	if(checkBlank(frm.txt_name,"Your Name")==false)
		return false;
	if(checkBlank(frm.txt_ymail,"Your E-Mail")==false)
		return false;
	if(ValidateEmail(frm.txt_ymail)==false)
		return false;
	if(checkBlank(frm.txt_rmail,"Recipients E-Mail")==false)
		return false;
	if(ValidateEmail(frm.txt_rmail)==false)
		return false;
	if(checkBlank(frm.txt_comments,"Comments")==false)
		return false;
	return true;
}