/*

GZIP CONTENT DELIVERY
Copyright 2010 Fat Publisher

All rights reserved. Republication, redistribution,
replication or use of Fat Publisher content / scripting
is strictly prohibited without the prior written consent of Fat Publisher.

www.fatpublisher.com.au

Content generated : 12:32:26 pm 09 September 2010

*/

function validate_mailing_list(obj)
{
	var f = obj.form;
	if (f.name.length == 0) {
		alert("Please enter a name");
		return false;
	}
	else if (f.email.value.search(/@/) == -1) {
		alert("Please enter a valid email");
		return false;
	}
	else {
		return true;
	}
}