   function trim(str) {      
        var from_start = 0;
        var from_end = str.length - 1;
        var return_value;

        while(str.charAt(from_start) == ' ') {
            from_start ++;
        }

        while(str.charAt(from_end) == ' ') {
           from_end --;
        }
   
        if(from_end < from_start){
           return '' ;
        }

        return_value = str.substring(from_start,from_end+1);
        return return_value;

    }//end function trim 
    
	function validSearch(){
    	document.x.title.value    = trim(document.x.title.value);
    	_("errorMsg").style.display = 'none';
    	
    	if(document.x.title.value == "" && document.x.country.value == "" && document.x.city.value == "" && document.x.category.value == "") {
	    	//window.alert('الرجاء إختيار احدى المعايير التي تبحث عنها');
            _("errorMsg").style.display = 'block'; 
	    	document.x.title.focus();
            return false;       
        }
        
        /*if(document.x.country.value == "") {
	   		window.alert('الرجاء اختيار الدولة');
            document.x.country.focus();
            return false;       
       	} 
       	if(document.x.city.value == "") {
	   		window.alert('الرجاء اختيار المدينة');
            document.x.city.focus();
            return false;       
        } 
        
        if(document.x.category.value == "") {
	    	window.alert('الرجاء اختيار تصنيف الفعالية');
            document.x.category.focus();
            return false;       
       	}*/
    }//end function validSearch
    
    