
<!-- Hide from old browsers
function validate(t) {
	if (t.mTxt_first_name.value == "") {
		alert("Please enter the first name of the sender. Thank you.");
		t.mTxt_first_name.focus();
		return (false);
	}
	if (t.mTxt_last_name.value == "") {
		alert("Please enter the last name of the sender. Thank you.");
		t.mTxt_last_name.focus();
		return (false);
	}
	if (t.mTxt_address.value == "") {
		alert("Please enter the address of the sender. Thank you.");
		t.mTxt_address.focus();
		return (false);
	}

	if (t.mtxtEmail.value != "") {
		if (t.mtxtEmail.value.indexOf("@") == -1 || t.mtxtEmail.value.indexOf(".") == -1 || t.mtxtEmail.value.indexOf(" ") != -1 || t.mtxtEmail.value.length < 6) {
			alert("Please enter a valid e-mail address.");
			t.mtxtEmail.focus();
			return (false);
		}
	} else {
		alert("Please enter a valid e-mail address. Thank you.");
		t.mtxtEmail.focus();
		return (false);
	}
	
	if (t.mtxt_description_of_issue.value == "") {
		alert("Please enter the description of the issue. Thank you.");
		t.mtxt_description_of_issue.focus();
		return (false);
	}
}
//-->


