
/*
var req2 = new JsHttpRequest();
req2.onreadystatechange = function() {
    if (req2.readyState == 4) {
        document.getElementById('weather').innerHTML = req2.responseText;
    }
}
//req2.open(null, '/?mode=weather', true);
req2.open(null, 'http://kiringa.ru/_show_weather.php', true);
req2.send( { q: 123 } );

*/


function _show_weather()
{
	$('#weather').load('/_show_weather.php');
}

