function FormFocus()
{
	var o = document.getElementById("firstName");
	if (o.value == "")
		o.focus();
}

function FormSubmit(o)
{
	if (o.firstName.value == "") {alert("Enter your first name."); o.firstName.select(); return false;}
	if (o.lastName.value == "") {alert("Enter your last name."); o.lastName.select(); return false;}
	if (o.email.value == "") {alert("Enter your email address."); o.email.select(); return false;}
	if (o.secCode.value == "" || o.secCode.value == "Type code here...") {alert("Enter the security code."); o.secCode.focus(); return false;}
	return true;
}
