function ValidateForm(oForm)
{
	v = rTrim(lTrim(oForm.email.value))
	if(lTrim(rTrim(v)) == '' || v.length < 3 || v.indexOf("@") == -1 || v.indexOf(".",0) == -1 || v.indexOf(",") > -1 || v.indexOf(";") > -1 || v.indexOf("*") > -1 || v.indexOf(" ") > -1) {
		alert('Please enter a valid e-mail address.\n\nValid characters include numbers, letters and _\n(underscore) but no spaces and other symbols.');
		oForm.email.focus();
		return false;
	}
		
	return true;
			
}