//valitation
function validate()
{
  
//Phone
	var m1=document.payamount.Best_Friends.value;
 	var p1=document.payamount.Best_Friends;
	
	  
	if((m1!='') && isNaN(m1.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p1.select();
		p1.focus();
		return false;
	}

	var m2=document.payamount.Dear_Friends.value;
 	var p2=document.payamount.Dear_Friends;
	
	  
	if((m2!='') && isNaN(m2.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p2.select();
		p2.focus();
		return false;
	}

	var m3=document.payamount.Good_Friends.value;
 	var p3=document.payamount.Good_Friends;
	
	  
	if((m3!='') && isNaN(m3.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p3.select();
		p3.focus();
		return false;
	}

	var m4=document.payamount.Chef_formerly.value;
	var p4=document.payamount.Chef_formerly;
	
	  
	if((m4!='') && isNaN(m4.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p4.select();
		p4.focus();
		return false;
	}

	var m5=document.payamount.Marche_Moderne.value;
	var p5=document.payamount.Marche_Moderne;
	
	  
	if((m5!='') && isNaN(m5.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p5.select();
		p5.focus();
		return false;
	}

	var m6=document.payamount.Five_Crowns.value;
	var p6=document.payamount.Five_Crowns;
	
	  
	if((m6!='') && isNaN(m6.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p6.select();
		p6.focus();
		return false;
	}

	var m7=document.payamount.Mozambique.value;
 	var p7=document.payamount.Mozambique;
	
	  
	if((m7!='') && isNaN(m7.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p7.select();
		p7.focus();
		return false;
	}

	var m8=document.payamount.Traditions.value;
	var p8=document.payamount.Traditions;
	
	  
	if((m8!='') && isNaN(m8.substr(0,5)))
	{
		alert("Please enter Numbers only");
		p8.select();
		p8.focus();
		return false;
	}

	 
   
}

 
