function getmeteobycp(cp,ville,url){
  cook.set("_mecp",cp);
  cook.set("_mecity",ville);
  cook.set("_meurl",url);
	$('#meteoresults').attr("href",url);
	$('#meteoquery').val('');
	$('#shera').hide();
	$("#canvas_meteolistcities").hide();
	$("#meteolistcities").html('');
		var meteoapiurl='../api/json.php?callback=results&q=';
		$.getJSON(meteoapiurl+cp,function(json){
			$.each(json.results,function(i,rep){
			   $("#meteoresults").html('<img style="float:left" src="http://www.rtlinfo.be/meteo/widget/pictos/'+rep.icon+'.gif"/><p><strong>'+ville+'</strong><br /><span class="snt">'+rep.temperature+'°c</span>'+rep.description+'</p>');
			});
		});
	};


