// JavaScript Document
function validate_send(){

if(document.getElementById('mycount').value==0) {
  document.getElementById('mymail').value=document.getElementById('mymail').value+document.getElementById('yourmail').value;
  document.getElementById('mycount').value=1; }

obj= document.getElementById('sname');
			if(obj.value.length<1){
			alert("Моля въведете Име!")
			obj.focus();
			obj.select();
			return false;
			}
			if(obj.value.length <3){
				alert("Полето Име е прекалено кратко!")
				obj.focus();
				obj.select();
				return false;
			}
			
obj = document.getElementById('smail');
			if (obj.value.length < 1) {
				alert("Моля, въведете е-мейл!")
				obj.focus();
				obj.select();
				return false;
			}
			
			re = /^[_A-Za-z][_A-Za-z0-9\-\.]+@[_A-Za-z0-9\-\.]+\.[_A-Za-z][_A-Za-z0-9]+$/g;
			if (!obj.value.match(re)) {
				alert("Въведеният е-мейл е невалиден!")
				obj.focus();
				obj.select();
				return false;
			}

obj= document.getElementById('smessage');
			if(obj.value.length<1){
			alert("Моля въведете Вашето съобщение!")
			obj.focus();
			obj.select();
			return false;
			}
			if(obj.value.length <7){
				alert("Въведеното съобщение е прекалено кратко!")
				obj.focus();
				obj.select();
				return false;
			}

			

			
return true;
}
