				function setWeather( city ){;
                    try{
                        XMLHttp.sendReq('GET', '/weathers.jsp?city='+encodeURI(city), '', getWeather);
                        }catch(e){alert(e.message());}
                }
				
				function getWeather(obj) {
                    try{

                        var strWeather = obj.responseText;
                        var allWeather = strWeather.split("^");
					    document.getElementById("showWeather").innerHTML = '<img src="/images/wimage/'+allWeather[0]+'" width="15" height="15">&nbsp;'+allWeather[1]+'&nbsp;&nbsp;&nbsp;'+allWeather[2]+'&nbsp;&nbsp;&nbsp;'+allWeather[3]+'&nbsp;&nbsp;&nbsp;'+allWeather[4]+'&nbsp;&nbsp;&nbsp;'+allWeather[5];
                        }catch(e){alert(e.message());}

                }