// JavaScript Document
 
function testimonialform()
{

if(document.testimonialform1.name.value=="")
{
alert("Please enter your name");
document.testimonialform1.name.focus();
return false;
}
if(document.testimonialform1.testimonial.value=="")
{
alert("Please enter Message");
document.testimonialform1.testimonial.focus();
return false;
}
return true;
 }
