////////////////////////////
/*
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 English section 
		only
*/
/////////////////////////////
function SearchVal(theForm){

	if (!(theForm.cat.value)){
		window.alert ("Please choose a category");
		return false;
	}
	
	if (!(theForm.key.value)){
		window.alert ("Please enter a keyword");
		return false;
	}

	theForm.submit();
	return true;
}


function CountryVal(theForm){

	if(!theForm.country.value){
		window.alert("Please Choose your Country");
		return false;
	}
	
	theForm.submit();
	return true;
}