function show_weather(city_div_id,weather_div_id,weatherinfo)
{
    //var city_div_id = "city_" + city_id;
    //var weather_div_id = "city_weather_" + city_id;
    if($(city_div_id) == null)
    {
       alert('请指定' + city_div_id + '对象');
    }
    if($(weather_div_id) == null)
    {
       alert('请指定' + weather_div_id + '对象');
    }
    $(city_div_id).title = weatherinfo.date_y + ' ' + weatherinfo.weather1 + '  风力：' + weatherinfo.wind1 + '  紫外线：' + weatherinfo.index_uv + '  穿衣：' + weatherinfo.index;
    $(weather_div_id).innerHTML = " <img width='11px' src='http://m.weather.com.cn/img/c" + weatherinfo.img1 + ".gif'/>  " + weatherinfo.temp1;
}

function show_big_weather(city_div_id,img_div_id,text_div_id,tmp_div_id,weatherinfo)
{
    if($(city_div_id) == null)
    {
       alert('请指定' + city_div_id + '对象');
    }
    if($(img_div_id) == null)
    {
       alert('请指定' + img_div_id + '对象');
    }
    if($(text_div_id) == null)
    {
       alert('请指定' + text_div_id + '对象');
    }
    if($(tmp_div_id) == null)
    {
       alert('请指定' + tmp_div_id + '对象');
    }
    $(city_div_id).title = weatherinfo.date_y + ' ' + weatherinfo.weather1 + '  风力：' + weatherinfo.wind1 + '  紫外线：' + weatherinfo.index_uv + '  穿衣：' + weatherinfo.index;
    $(img_div_id).innerHTML = " <img src='http://m.weather.com.cn/img/b" + weatherinfo.img1 + ".gif'/>  " ;
    $(text_div_id).innerHTML = weatherinfo.weather1;
    $(tmp_div_id).innerHTML = weatherinfo.temp1;
}