/////////////////////////////////////////
function checkValues(obj){
		if(obj.fname.value==""){
			obj.fname.focus();
			alert("הקלד שם פרטי");
			return false;
		}
		
		if(obj.email.value==""){
			obj.email.focus();
			alert("הקלד דוא''ל");
			return false;
		}

		var ml=obj.email.value;
		if(ml.indexOf("@")==-1){
		alert("דוא''ל לא תקין");
		obj.email.focus();
		return false;
		}
	
		if(ml.indexOf(".")==-1){
		alert("דוא''ל לא תקין");
		obj.email.focus();
		return false;
		}
	return true;	
}
/////////////////////////////////////////
function checkValues_home(obj){
		if(obj.fname.value==""){
			obj.fname.focus();
			alert("הקלד שם פרטי");
			return false;
		}
		
		if(obj.email.value==""){
			obj.email.focus();
			alert("הקלד דוא''ל");
			return false;
		}

		var ml=obj.email.value;
		if(ml.indexOf("@")==-1){
		alert("דוא''ל לא תקין");
		obj.email.focus();
		return false;
		}
	
		if(ml.indexOf(".")==-1){
		alert("דוא''ל לא תקין");
		obj.email.focus();
		return false;
		}
	return true;	
}
/////////////////////////////////////////////////////////
function check_before_search(obj){
		if(obj.val_serach.value=="" || obj.val_serach.value=="חפשו מוצרים באתר"){
			obj.val_serach.focus();
			alert("הקלד ערך לחיפוש");
			return false;
		}
		return true;
}
