<!-- hide code from old browsers

//   Check the value of text field, and return true;
//   if the text is empty issue a warning, and return false 
//   name of the field is title

// object name must begin with a character and not a number! 

function check_mail(object, title)
	{
	query = object.value;
	if (query.length == 0) {
		alert("Error - no text entered in " + title + " field");
		return false;
		}
	else 	{
		alert("Email message successfully sent.\nThank you.");
		}
	return true;
	}

// -- End Hiding Here -->
