function CheckSendMail(frmForm)
{
	var boolReturn = true;
	var strSender_Name = frmForm.Name.value;
	var strSender_Email = frmForm.Email.value;
	var strContact_Subject = frmForm.Subject.value;
	var strContact_Message = frmForm.Message.value;

	if(strSender_Name.length == 0)
	{
		boolReturn = false;
		alert("Please specify your name.");
		frmForm.Name.focus();
	}
	else if(strSender_Email.length == 0)
	{
		boolReturn = false;
		alert("Please specify your e-mail address.");
		frmForm.Email.focus();
	}
	else if(strContact_Subject.length == 0)
	{
		boolReturn = false;
		alert("Please specify email's subject.");
		frmForm.Subject.focus();
	}
	else if(strContact_Message.length == 0)
	{
		boolReturn = false;
		alert("Please specify email's message.");
		frmForm.Message.focus();
	}
	return boolReturn;
}
