<!--

function validateForm(){

	nme = document.nominations.Name.value;
	org = document.nominations.Organisation.value;
	email = document.nominations.Email.value;
	nom = document.nominations.Nomination_Name.value;
	url = document.nominations.Nomination_URL.value;
	
	if (nme.length < 1) {
		alert('You must include your name');
		document.nominations.Name.focus();
		return false;
	}

	if (org.length < 1) {
		alert('You must include the name of your organisation');
		document.nominations.Organisation.focus();
		return false;
	}

		if (email.length < 1) {
		alert('You must include your e-mail address');
		document.nominations.Email.focus();
		return false;
	}

	if (email.indexOf('@',0)==-1 ||
    	email.indexOf('@',0)== 0 ||
    	email.indexOf('.',0)==-1) {
			alert('Please check your email address: \n\n' + email + '\n\nIt does not appear to be a valid address');
			document.nominations.Email.focus();
			document.nominations.Email.select();
			return false;
	}

		if (nom.length < 1) {
		alert('You must include your nomination');
		document.nominations.Nomination_Name.focus();
		return false;
	}

		if (url.length < 1) {
		alert('You must include your nomination\'s website address');
		document.nominations.Nomination_URL.focus();
		return false;
	}
	
return true;
}

//-->
