﻿function getUrlParam(name)
{   
    var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");   
    var r = window.location.search.substr(1).match(reg);   
    if (r!=null) 
    return unescape(r[2]);
    return null;   
}
function onloadWeather()
{
    $.ajax({
    type: "POST",
    url: "../../AjaxQuest/vote.ashx",
    data: "Action=qihou",
    success: function(msg){   
       document.getElementById("spanWeather").outerHTML=msg;
        }               
    });
}        

function onloadIndexWeather()
{
    $.ajax({
    type: "POST",
    url: "AjaxQuest/vote.ashx",
    data: "Action=qihou",
    success: function(msg){   
       document.getElementById("spanWeather").outerHTML=msg;
        }               
    });
}        


