function getWeather(locode, targetDivId){
	if (!targetDivId) targetDivId='result';
	if(!locode) return;
	$(targetDivId).innerHTML='<img alt="loading.." src="style/default/ar/images/Throbber-small.gif" />';
	new Ajax.Request('weatherc.php?w='+locode, {
	    parameters: {
	    	},
	  	onComplete: function(res) {
			var res=eval(res.responseText);
			$(targetDivId).innerHTML='';
			var title=WeatherCodeTranslation[res.condition.temprature.code];//res.condition.temprature.text;
			$(targetDivId).appendChild(
			Builder.node('div', {
						 'class':'weather-block'
						 }, [
				Builder.node('span', {
						 'class':'weather-title'
						 }),
				" : "+res.condition.temprature.temp+"°"
			]));
		}
	}
	);

}
