// 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_fax = document.getElementById('txt_fax').value;	
	var txt_product = document.getElementById('txt_product').value;
	var txt_endUser = document.getElementById('txt_endUser').value;
	var txt_quantity = document.getElementById('txt_quantity').value;
	var txt_address = document.getElementById('txt_address').value;
	var txt_city = document.getElementById('txt_city').value;
	var txt_state = document.getElementById('txt_state').value;
	var txt_country = document.getElementById('txt_country').value;
	var txt_pin = document.getElementById('txt_pin').value;
	
	
	individual_poststr = "&txt_company="+encodeURI(txt_company)+"&txt_contactName="+encodeURI(txt_contactName)+"&txt_email="+encodeURI(txt_email)+"&txt_phone="+encodeURI(txt_phone)+"&txt_fax="+encodeURI(txt_fax)+"&txt_product="+encodeURI(txt_product)+"&txt_endUser="+encodeURI(txt_endUser)+"&txt_quantity="+encodeURI(txt_quantity)+"&txt_address="+encodeURI(txt_address)+"&txt_city="+encodeURI(txt_city)+"&txt_state="+encodeURI(txt_state)+"&txt_country="+encodeURI(txt_country)+"&txt_pin="+encodeURI(txt_pin);
	
	postData(url,individual_poststr,'hintdisplay');
}

