function buynow(productName, productPrice){
	var myform=document.createElement("form");
	var product=document.createElement("input");
	var price=document.createElement("input");

	myform.action="https://www.vedsystems.com/payment/";
	myform.method="post";

	product.name="product";
	product.type="hidden";
	product.value=productName;

	price.name="price";
	price.type="hidden";
	price.value=productPrice;

	myform.appendChild(product);
	myform.appendChild(price);
	document.body.appendChild(myform);

	myform.submit();
}