		function sendRequest() {
			new Ajax.Request("emailAjax.php", 
				{ 
				method: 'post', 
				postBody: 'email='+ $F('email'),
				onComplete: showResponse 
				});
			}

		function sendRequest2() {
			new Ajax.Request("emailAjax.php", 
				{ 
				method: 'post', 
				postBody: 'email='+ $F('email') + '&subject='+ $F('subject') + '&comment='+ $F('comment'),
				onComplete: showResponse 
				});
			}

		function showResponse(req){
			$('show').innerHTML= req.responseText;
		}

		function enableField(thisOne){
			var thatOne = thisOne;
			if (thatOne == "Unsubscribe") {
				document.getElementById("comment").disabled=true;
				document.getElementById("comment").value="Unsubscribe";
			} else {
				document.getElementById("comment").disabled=false;
				document.getElementById("comment").value="";
			}
			if (thatOne == "ClientQ") { 
				window.open("https://www.elderlawanswers.com/wsb-sliced/Q.asp?MailTo=larry@blosserlaw.com&Attorney=&firmid=5881&Template=5" )
			}
		}
