domainName = 'http://daleelcom.net/';
var imagesPath = 'http://daleelcom.net/images/';
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;}
function commonDaleelSearch(tt){
		if(tt==13){ 
			document.commonSearch.name.value = trim(document.commonSearch.name.value); 
			if(document.commonSearch.name.value == ""){
				alert("الرجاء ادخال الكلمة او العبارة التي تبحث عنها");
				go_search_ar=false;
				return false;
			}else{
				go_search_ar=true;
				document.commonSearch.submit();
			}
		}else{
			return false;
		}
}