function doValidSearch(){
	_("errorMsg").style.display = 'none';
	document.searchfrm.name.value = trim(document.searchfrm.name.value);
	if (document.searchfrm.name.value == "" && (document.searchfrm.country.value == -1 || document.searchfrm.country.value == '')){
		_("errorMsg").innerHTML = 'الرجاء ادخال الاسم أو الدولة';
		_("errorMsg").style.display = 'block';
		document.searchfrm.name.focus();
		return false
	}else if (document.searchfrm.country.value != -1 &&  document.searchfrm.name.value == ''){
		document.searchfrm.action = domainName+'subNetwork'+document.searchfrm.country.value+'.htm' ;
		document.searchfrm.submit();
		//window.location = domainName+'subNetwork'+document.searchfrm.network.value+'.htm' ;
	}else{
		document.searchfrm.submit();
		//window.location = domainName+'searchAll.htm?name='+document.searchfrm.name.value+'&country='+document.searchfrm.network.value ;
	}
}
function chooseCity(countryCode,pageNo,cityId){
	if (cityId != -1){
		window.location=domainName+'subNetwork'+countryCode+'-'+cityId+'.htm' ;
	}
	else{
		window.location=domainName+'subNetwork'+countryCode+'.htm' ;
	}
}
function seeZoom(){
	window.location  = document.getElementById('zooom').value ;
}
function seeClippat(){
	window.location  = document.getElementById('clippat').value ;
}