<!--
function check()
{
	// Get all form fields values
	FullName = document.frmJoin.fullname.value;
	Email = document.frmJoin.email.value;
	
	// Check we have a full name
	if (FullName == "")
	{
		alert("Please enter a full name.");
		document.frmJoin.fullname.focus();
		return false;
	}
	
	// Check we have a valid email
	if (false == validateEmail(Email))
	{
		document.frmJoin.email.focus();
		return false;
	}
	
	return true;
}
// -->