function FocusElement(formName,elementName)
	{
		var elem = document.forms[formName].elements[elementName];
		elem.focus();
	}
	

function Form_Validator()
	{
		bReturn = true;
				
		if ((bReturn) && (validateEmail(document.forms["Form"]._emailaddress) == false))
		{
			alert("Please enter a valid email address.");
			setTimeout("FocusElement('Form','_emailaddress')",0);
			bReturn = false;
		}
						
		return (bReturn);
	}	