function check_testimonial()
{
		if(document.share_testimonial_frm.you_are.value =="select" )
		{	
			alert("Please select who you are.");
			document.share_testimonial_frm.you_are.focus();
			return false;
		}
		
		if(document.share_testimonial_frm.title.value =="select" )
		{	
			alert("Please select your title.");
			document.share_testimonial_frm.title.focus();
			return false;
		}
		
		if(!CheckBlankField(document.share_testimonial_frm.full_name,'Full Name'))return (false)
		
		
		if(!CheckBlankField(document.share_testimonial_frm.country,'Location'))return (false)
		if(!CheckBlankField(document.share_testimonial_frm.short_description,'Your Comments'))return (false)
		if(!CheckBlankField(document.share_testimonial_frm.hello_spammers,'Security Code'))return (false)
}

function textCounter(field, countfield, maxlimit) 
{
	if (field.value.length > maxlimit) 
	{
  		field.value = field.value.substring(0, maxlimit);
	}
	else 
	{
	  countfield.value = maxlimit - field.value.length;
 	}
}