	function Subscribe() {
		var Request_Object = Create_XMLHttp_Object();
		var Sender_Name,Sender_Email,Sender_Msg;

		Sender_Name = document.getElementById('Member_Name').value;
		Sender_Email = document.getElementById('Member_Email').value;
		if (Sender_Name.length == 0)
			alert('I have to call you something so how about telling me what to call you.');
		else if (!Valid_Email(Sender_Email))
			alert("I need a valid e-mail address to be able to reply to you so don't be bashful.\nYour e-mail address will not be given out to anyone - promise.");
		else if (Request_Object) {
			Request_Object.open("get","Email_Comment.php?name="+Sender_Name+"&msg=Subscription&subject=Mailing List Subscription&email="+Sender_Email,false);
			Request_Object.onreadystatechange = function() {
				if (Request_Object.readyState == 4)
					if (Request_Object.status != 200)
						LP_String += "An error occurred processing the comment";
			}
			Request_Object.send(null);
			alert("Thanks for joining the mailing list for T-Mad's Music.\nYour information has been sent to T-Mad and you willbe subscribed to the list shortly.");
			document.getElementById('ML_Form').reset();
		}
		else
			alert("I'm sorry but something went wrong when trying to send your submission.  Give it another try.");
	}
	
