Signup = {
	signup_url:"/news/newsletter/signup/",
	signup:function(){
		if(confirm("Please confirm you wish to signup to our newsletter by pressing Ok."))
		{
			new Ajax.Request(this.signup_url, {
				method: 'get',
				onSuccess: function(response){
					if(response.responseText == '0') {
						alert("You signup to our Newslettter has failed!\nOur support team have been notified and will contact you shortly.");
					}
					else {
						alert("Thank you for signing up to the IFP newsletter.");
					}
				}
			});
		}
	}
};