function chkForm() {
	var Form = document.frmApplication;
	if (checkString(Form.txtName, "Please fill in name.") != true) {
		return false;
	}
	if (checkEmail(Form.txtEmail, "Please fill in valid email address.") != true) {
		return false;
	}
	if (checkString(Form.txtPhone, "Please fill in telephone no.") != true) {
		return false;
	}
	if (checkString(Form.txtDesc, "Please fill in description of the program.") != true) {
		return false;
	}
	else return true;
}
