/*function chmurka(e,v)
{
    if(v.title)
    {
        var t=document.createElement("div");
        t.className="chmurka";
        t.innerHTML=v.title;v.title="";
        v.move=function(e)
        {
            e=e||event;
            t.style.left=e.clientX+50+"px";
            t.style.top=e.clientY-40+"px";
        }
        v.move(e);
        document.body.appendChild(t);
        v.onmousemove=function(e)
        {
            v.move(e)
        }
        v.onmouseout=function(e)
        {
            v.title=t.innerHTML;
            document.body.removeChild(t);
        }
    }
}
*/

function Chmurka(T,t){
 T.title=''
 T.parentNode.lastChild.style.display=t?'block':'none'
}

