	function Create_XMLHttp_Object() {
		var XML_Object;

		if (window.ActiveXObject)
			XML_Object = new ActiveXObject("Microsoft.XMLHttp");
		else if (window.XMLHttpRequest)
			XML_Object = new XMLHttpRequest();
		else
			XML_Object = null;
		return XML_Object;
	}
	
	function Valid_Email(Email_Addr) {
		var Valid = true;
		if (Email_Addr.length < 6)
			Valid = false;
		else {
			Parts = Email_Addr.split('@');
			if (Parts.length != 2)
				Valid = false;
			else {
				Subparts = Parts[1].split('.');
				if (Subparts.length < 2)
					Valid = false;
				else {
					Str_Len = Subparts[Subparts.length-1].length;
					if (Str_Len < 2 || Str_Len > 3)
						Valid = false;
				}
			}
		}
		return Valid;
	}
	
	function Send_Comment() {
		var Request_Object = Create_XMLHttp_Object();
		var Sender_Name,Sender_Email,Sender_Msg;

		Sender_Name = document.getElementById('F_Name').value;
		Sender_Msg = document.getElementById('F_Msg').value;
		Sender_Email = document.getElementById('F_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 (Sender_Msg.length < 2)
			alert("C'mon, you gotta have something to say - don't send me blanks now.  Talk to me.");
		else if (Request_Object) {
			Request_Object.open("get","feedback/Email_Comment.php?name="+Sender_Name+"&email="+Sender_Email+"&msg="+encodeURIComponent(Sender_Msg),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 checking out this fan site for Chocolate Milk from T-Mad's Music.\nYour feedback has been sent to T-Mad and will be replied to shortly.");
			document.getElementById('CMilk_Form').reset();
		}
		else
			alert("I'm sorry but something went wrong when trying to send your feedback.  Give it another try.");
	}
	
