////////////////////////////
/*
Developed By: Mohammed S Alabsi
Title: Web Developer
Date: July 24th, 2005
System: Mobile
Objective: Performs Client-Side Validation for the "Search" from. Applied on the Arabic section 
		only
*/
/////////////////////////////
function SearchVal(theForm){

	if (!(theForm.cat.value)){
		window.alert ("الرجاء اختيار الفئة");
		return false;
	}
	
	if (!(theForm.key.value)){
		window.alert ("فضلا ادخل كلمة البحث");
		return false;
	}

	theForm.submit();
	return true;
}


function CountryVal(theForm){

	if(!theForm.country.value){
		window.alert("الرجاء اختيار بلدك");
		return false;
	}
	
	theForm.submit();
	return true;
}