
function checkForm(form)
{

	
	if(form.name.value=="")
	{
		alert("Please Enter your Name");
		form.name.focus();
		return false;
	}
	if(form.add1.value=="")
	{
		alert("Please Enter your Address");
		form.add1.focus();
		return false;
	}
	if(form.city.value=="")
	{
		alert("Please Enter the city name");
		form.city.focus();
		return false;
	}
	if(form.no.value=="")
	{
		alert("Please Enter the Contact no");
		form.no.focus();
		return false;
	}
	if(form.email.value=="")
	{
		alert("Please Enter the your Email Adress");
		form.email.focus();
		return false;
	}
		
	
	return true;
}

function checkForm1(form)
{

	
	if(form.select.value=="")
	{
		alert("Please Select your choice");
		form.select.focus();
		return false;
	}
	if(form.textfield.value=="")
	{
		alert("Please Enter the amount");
		form.textfield.focus();
		return false;
	}
	if(form.select2.value=="")
	{
		alert("Please select the currency type");
		form.select2.focus();
		return false;
	}
		
	
	return true;
}

function checkForm2(form)
{

	
	if(form.name1.value=="")
	{
		alert("Please Select the order");
		form.name1.focus();
		return false;
	}
	
		
	
	return true;
}

function checkForm3(form)
{

	if(form.product.value=="")
	{
		alert("Please Select your choice");
		form.product.focus();
		return false;
	}
	if(form.select4.value=="")
	{
		alert("Please Select your choice");
		form.select4.focus();
		return false;
	}
	

	if(form.amount1.value=="")
	{
		alert("Please Enter the amount");
		form.amount1.focus();
		return false;
	}
	
	
	
	
		
	
	return true;
}