/**
 * @author Neil Walden 
 * 
 * http://www.zanixit.com
 */

 function addToMailingList2() {
	var email = document.getElementById('mailing_list').value;
	
	// Add
	if (document.getElementById('radio_subscribe').checked) {
		var url = "/add_to_mailing_list.php";
		url += "?email=" + email;
		
		new Ajax.Request(url, {
			method: 'get',
			onSuccess: function(transport){
				document.getElementById('mailing_list').value = '';
				alert("You have been added to our mailing list!");
			},
			
			onFailure: function(transport){
				alert("Failed to add to mailing list. Please try again!");
			}
		});
	// Remove
	} else {
		var url = "/remove_from_mailing_list.php";
		url += "?email=" + email;
		
		new Ajax.Request(url, {
			method: 'get',
			onSuccess: function(transport){
				document.getElementById('mailing_list').value = '';
				alert("You have been removed from our mailing list!");
			},
			
			onFailure: function(transport){
				alert("Failed to remove from mailing list. Please try again!");
			}
		});
	}
}
