// JavaScript Document

function sendMail(url){
	
	var txt_Name = document.getElementById('txt_Name').value;
	var txt_email = document.getElementById('txt_email').value;
	var txt_phone = document.getElementById('txt_phone').value;
	var txt_comments = document.getElementById('txt_comments').value;
	
	individual_poststr = "&txt_Name="+encodeURI(txt_Name)+"&txt_email="+encodeURI(txt_email)+"&txt_phone="+encodeURI(txt_phone)+"&txt_comments="+encodeURI(txt_comments);
	postData(url,individual_poststr,'hintdisplay');
}

