function setbuy()
{
document.priceform.prodprice.value="1,395.00";
document.priceform.shipping.value="0.00";
//document.priceform.shipping.value="30.00";
//if (document.form1.radiobutton[0].checked== true) document.priceform.shipping.value="7.50";
//if (document.form1.radiobutton[1].checked== true) document.priceform.shipping.value="17.00";


//	if (document.payform.prodname.value!="" && document.payform.prodprice.value!="")
//	{
	document.priceform.action="https://www.paypal.com/cgi-bin/webscr" ;
//	prodname=document.payform.prodname.value;
//	prodprice=document.payform.prodprice.value;
//	document.payform.item_name.value=prodname;
	document.priceform.amount.value="1,395.00";
	
	//check for the number
	
//	str=document.payform.prodprice.value;
//	len=str.length;
//	for (i=1;i<=len;i++)
//	{
//	if ((isNaN(str.charAt(i))) or (str.charAt(i) == '.'))
//		{
//		alert("please enter a numeric value for price");
//		return false;
//		
//		}
//	}
	document.priceform.submit();
	
//}
//	else
//	{
//	alert("Please fill the forms correctly");
//	}	
	
}
function shipping1()
{
document.frmshipping.action="https://www.paypal.com/cgi-bin/webscr" ;
document.frmshipping.amount.value="30.00";
if (document.form1.radiobutton[0].checked== true) document.frmshipping.amount.value="7.50";
if (document.form1.radiobutton[1].checked== true) document.frmshipping.amount.value="17.00";
document.frmshipping.submit();
}