// JavaScript Document

function addtocart(pro_id,pro_price,pro_tax)
{
	txt=document.addto;
	
	document.getElementById('pro_id').value=pro_id;
	document.getElementById('pro_price').value=pro_price;
	document.getElementById('pro_tax').value=pro_tax;
	document.getElementById('AddtoCart').value=1;
	
	txt.submit();
	
}
