function formValidation_testiadd(){
	
	var errormsg="One of the field(s) is missing/invalid:-";
	var errorflag = false;
	var name=document.getElementById("testi_name").value;
	var contactno=document.getElementById("testi_contactno").value;
	var emailadd=document.getElementById("testi_emailadd").value;	
	var country=document.getElementById("testi_country").value;	
	var company=document.getElementById("testi_company").value;
	var profession=document.getElementById("testi_profession").value;
	var testimonial=document.getElementById("testi_testimonial").value;
	var picture=document.getElementById("testi_picture").value;	
	//alert("hello");
	if(checkemptyString(name)){
		errormsg+="\n - Name";
		errorflag=true;
	}	
	
	if(checkemptyString(contactno)|| checkNumbers(contactno)){
		errormsg+="\n - Contact Number";
		errorflag=true;
	}
	
	if(emailcheck(emailadd)||checkemptyString(emailadd)){
		errormsg+="\n - Email Address";
		errorflag=true;
	}	
	
	if(checkemptyString(country)){
		errormsg+="\n - Country";
		errorflag=true;
	}	
	
	if(checkemptyString(profession)){
		errormsg+="\n - Profession";
		errorflag=true;
	}
	
	if(checkemptyString(testimonial)){
		errormsg+="\n - Testimonial";
		errorflag=true;
	}
	
	if(checkemptyString(picture)){
		errormsg+="\n - Picture";
		errorflag=true;
	}
	
	if(errorflag){
		alert(errormsg);
	}else{
		document.contactform.submit();
	}
}
