function Validation()
{
var f1=document.OrderForm;
	if(f1.pur_purchase.value=="select")
	{
		alert("Please select Purpose of purchase");
		f1.pur_purchase.focus();
		return false;
	}
	else if(f1.product.value=="select")
	{
		alert("Please select your choice");
		f1.product.focus();
		return false;
	}
	else if(f1.currency_id.value=="-1")
	{
		alert("Please select Currency");
		f1.currency_id.focus();
		return false;
	}
	else if(f1.amount.value=="")
	{
		alert("Please amount you want to purchase");
		f1.amount.focus();
		return false;
	}
	else if(f1.ex_rate.value=="0.00")
	{
		alert("Please select Currency");
		f1.currency_id.focus();
		return false;
	}
	else if(f1.AMT.value=="0.00")
	{
		alert("Please quote your amount");		
		return false;
	}
return true;
}
function AddToCart()
{
if(Validation()){
document.OrderForm.submit();}
}

function processValidator()
{
var f1=document.OrderForm;	
if(f1.val.value=="0")
{
alert("Sorry! We can't process Empty Order Cart.Please add your order ");
return false;
}
return true;
}

function ProcessOrder()
{
if(processValidator())
{
document.OrderForm.method="post";
document.OrderForm.action="doOrderInfo";
document.OrderForm.submit();}
}