function Verify (f) {
	var ErrorString = "";
	if (isBlank(f.name)) 	ErrorString += "\n - Please enter your name";
	if (isBlank(f.company)) 	ErrorString += "\n - Please enter the name of your company";
	if (isBlank(f.phone)) 	ErrorString += "\n - Please enter your phone number";
	// If ErrorString has content, there was at least one error; let them know.
	if (ErrorString.length > 0) {
		msg  = "____________________________________________________\n\n";
		msg += "  Your form was not submitted because of the following error(s): \n";
		msg += "____________________________________________________\n";
		alert(msg + ErrorString);
		return false;
	}
}