function sendMessage(model,song,element) {
		var ajax;
		var parameters = "model="+model+"&song="+song;
		try {
			ajax = new XMLHttpRequest();
		}catch(e) {
			try {
				ajax = new ActiveXObject("Msxm12.XMLHTTP");
			} catch(e) {
				try {
					ajax = new ActiveXObject("Microsoft.XMLHTTP");
				} catch(e) {	
					document.getElementById("suggestion_list").innerHTML = "<li>You need to update your browser for the full functionality of this website.</li>";
					return false;
				}
			}	
		}
		ajax.onreadystatechange = function() {
			if (ajax.readyState == 4) {
				if (element != null || element != '') {
					document.getElementById(element).innerHTML = ajax.responseText;
				}
			}
		}
		ajax.open("POST","includes/templates/apple_zen/ajax/emaildownload.php",true);
		ajax.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
		ajax.send(parameters);
}