    function pogoda(sity)	{
      $.post("/css/pogoda.ajax.php", {sity: sity},
        function(data){
          $("#pogoda").html(data);
    }); 
    }
    
    function doBlinK(id, color1, color2, freq) {
    var elem = document.getElementById(id);
	if(elem === null) return false;
    elem.blink = true;
    blink = function(id){
        var elem = document.getElementById(id);
        with (elem.style) {
            if (elem.blink)
                color = color1;
            else color = color2;
            elem.blink = !elem.blink;
        }
    }
    setInterval('blink("'+id+'")', freq);
}

