function chmurka(e,v){
  if(v.title){
    var t=document.createElement("div");
    t.className="chmurka";
    t.style.cursor="hand;"
    titl=v.title;
    s=v.title;
    t.innerHTML='<img src="'+v.title+'">';
    v.title="";
    v.move=function(e){
      t.style.cursor="hand;"
      e=e||event;
      t.style.left=e.clientX+document.body.scrollLeft+5+"px";
      t.style.top=e.clientY+20+document.body.scrollTop+"px";
    }
    v.move(e);
    document.body.appendChild(t);
    v.onmousemove=function(e){v.move(e);}
    v.onmouseout=function(e){
      s=t.innerHTML;
      document.body.removeChild(t);
      v.title=titl;
    }
  }
}

