function echeck(str) {
	var at="@"
	var dot="."
	if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(" ")!=-1){
	  return false
	}
  return true					
}
//called from email to us
function ValidateForm(){
	var emailID=document.contact.email;
	if ((emailID.value==null)||(emailID.value=="")){
		alert("נא הקלידו כתובת האימייל שלכם")
		return false
	}
	if (echeck(emailID.value)==false){
                alert("כתובת האימייל שהקלדתם שגוי")
		emailID.focus()
		return false
	}
	return true
 }
