// JavaScript Document

function VerifyTextField(textfield, Title) {
	var valid = 1;
	if (textfield.value == "") {
		valid = 0
	}
	if (valid == 0) {
		alert("Please enter your " + Title);
		textfield.focus();
		textfield.focus();
	}
}