function validateSubscription()
{
	trimFields();
	if(obj.full_name.value == "" || obj.full_name.value == "Enter full name")
	{
		alert("Please enter a your Full Name.");
		obj.full_name.focus();
		return;
	}
	if(obj.subscribe.value == "" || obj.full_name.value == "Enter email address")
	{
		alert("Please enter a your Email Address.");
		obj.subscribe.focus();
		return;
	}
	if(!chkEmail(obj.subscribe.value))
	{
		alert("The Email Address appears to be invalid!\nPlease review and correct it.");
		obj.subscribe.focus();
		obj.subscribe.select();
		return;
	}
	obj.action="index.php";
	obj.submit();
}