<SCRIPT>
function getcookie(name) {
var my_cookie = document.cookie;
var start = my_cookie.indexOf(name + "@weather.qq.com" + "=");
if (start == -1) return '';
start += name.length + 16; //1 stands of '='
var end = my_cookie.indexOf(";" ,start);
i