﻿
//

function createXMLHttp() 
{  
    var xmlHttp = false;  
    try
    {  
        xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");  
    }
    catch (e)
    {  
        try
        {  
            xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");  
        }
        catch(E)
        {  
            xmlHttp = false;  
        }
    }  
    if(!xmlHttp && typeof XMLHttpRequest!='undefined')
    {  
        xmlHttp = new XMLHttpRequest();  
    }  
    return xmlHttp;  
}
function getWeather()
{
    var oHttp=createXMLHttp();
    oHttp.open("POST","/en/NewTemp/js/ajaxWeather.aspx",false);
    oHttp.send("");
    var result=oHttp.responseText;
    document.getElementById("showweatherpic").src="http://www.tibettravel.com/en/"+result;//"<img src=http://www.tibettravel.com/en/"+result+" width=20 height=20 />";
}