// JavaScript Document

function sendMail(url){
	
	var txt_company = document.getElementById('txt_company').value;
	var txt_contactName = document.getElementById('txt_contactName').value;
	var txt_email = document.getElementById('txt_email').value;
	var txt_phone = document.getElementById('txt_phone').value;
	var txt_comment = document.getElementById('txt_comment').value;
	
	individual_poststr = "&txt_company="+encodeURI(txt_company)+"&txt_contactName="+encodeURI(txt_contactName)+"&txt_email="+encodeURI(txt_email)+"&txt_phone="+encodeURI(txt_phone)+"&txt_comment="+encodeURI(txt_comment);
	postData(url,individual_poststr,'hintdisplay');
}

