function Dron_weatherup(uid)
{
 this.weatherup = document.getElementById(uid);
 this.weatherupHeight = this.weatherup.clientHeight;
 this.weatherupInner = this.weatherup.innerHTML;
 this.scrollCol = this.scrolln = 0;
 this.setScroll = function ()
 {
  this.weatherup.scrollTop = this.scrollCol + this.scrolln;
  if(this.scrolln==this.weatherupHeight)
   return this.addScroll()
  else
   this.scrolln ++;
  var o = this;
  function m(){o.setScroll();}
  setTimeout(m,20);
 }
 this.addScroll = function ()
 {
  this.weatherup.innerHTML += "<br>" + this.weatherupInner;
  this.scrollCol = this.weatherup.scrollTop;
  this.scrolln = 0;
  var o = this;
  function m(){o.setScroll();}
  setTimeout(m,3000);
 }
 this.init = this.addScroll;
}
new Dron_weatherup("weatherup").init();