document.write('<table border="0" cellpadding="0" cellspacing="0" class="tianqi">');
document.write('<tr>');
document.write('<td class="tianqi1" id="city_data_1"></td>');
document.write('<td class="tianqi2" id="city_data_2"></td>');
document.write('<td class="tianqi3" id="city_data_3"></td>');
document.write('</tr>');
document.write('</table>');
var weather_mycity = new Array(new Array("西安","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a02.png","多云转阴","-4","3","微风"),new Array("咸阳","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a02.png","多云转阴","-5","1","微风"),new Array("铜川","http://app2.cnwest.com/index/weather/img/a00.png","http://app2.cnwest.com/index/weather/img/a01.png","晴转多云","-9","-2","微风"),new Array("宝鸡","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a01.png","多云","-4","1","东风<=3级"),new Array("渭南","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a01.png","多云","-4","3","微风"),new Array("延安","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a01.png","多云","-12","-2","微风"),new Array("汉中","http://app2.cnwest.com/index/weather/img/a02.png","http://app2.cnwest.com/index/weather/img/a02.png","阴","3","8","微风"),new Array("榆林","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a00.png","多云转晴","-16","-3","微风"),new Array("安康","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a02.png","多云转阴","4","8","微风"),new Array("商洛","http://app2.cnwest.com/index/weather/img/a01.png","http://app2.cnwest.com/index/weather/img/a02.png","多云转阴","-4","3","微风"));
function put_w(id)
{
	if(id == "") return;
	if(!weather_mycity || weather_mycity.length != 10) return;
	if(!document.getElementById('city_data_1') || !document.getElementById('city_data_2') || !document.getElementById('city_data_3')) return;
	document.getElementById('city_data_1').innerHTML = weather_mycity[id][0];
	if(weather_mycity[id][1]!=weather_mycity[id][2])
	{
	document.getElementById('city_data_2').className = "tianqi2";
	document.getElementById('city_data_2').innerHTML = '<img src="http://app2.cnwest.com/index/weather/img/weather.gif" height="20" width="30" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+weather_mycity[id][1]+'\',sizingMethod=\'scale\');"><img src="http://app2.cnwest.com/index/weather/img/weather.gif" height="20" width="30" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+weather_mycity[id][2]+'\',sizingMethod=\'scale\');">';	
	}else{
	document.getElementById('city_data_2').className = "tianqi4";
	document.getElementById('city_data_2').innerHTML = '<img src="http://app2.cnwest.com/index/weather/img/weather.gif" height="20" width="30" style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\''+weather_mycity[id][1]+'\',sizingMethod=\'scale\');">';	
	}
	//document.getElementById('city_data_3').innerHTML = weather_mycity[id][3]+"&nbsp;"+weather_mycity[id][4]+"-"+weather_mycity[id][5]+"℃&nbsp;"+weather_mycity[id][6];
	document.getElementById('city_data_3').innerHTML = weather_mycity[id][3]+"&nbsp;"+weather_mycity[id][5]+"℃--"+weather_mycity[id][4]+"℃";
}
function Ggetcookie(sName)
{
    var aCookie = document.cookie.split("; ");
    for (var i=0; i < aCookie.length; i++)
    {
        var aCrumb = aCookie[i].split("=");
        if (sName == aCrumb[0])
        {
            return aCrumb[1];
        }
    }
    return null;
}
if(Ggetcookie("city") != null)
{
   	put_w(Ggetcookie("city"));
}else{
   	put_w('0');
}
