      
      /* this is the ucda news script--*/
      
      
      
      //Spécify the width of the scrolling text (in pixels)
      var marqueewidth=195;
      //Spécify the height of the scrolling text
      var marqueeheight=125;
      //Spécify the speed of the scrolling...(higher figure=higher speed)
      var speed=1;
      //Spécify the content of the scrolling text
      var marqueecontents='<regular><center><b>WELCOME TO DIALOGUE CONSULTS.</b><br /><br />Welcome to the official website of Dialogue Consults. It is our prayer that you find this website informative and know about us as much as you wish.<br /><br />In case of a gap in knowledge, please just feel free to contact us and we shall ge back to you. <br /> <br />Dialogue consults is a leading consulting firm in Kampala Uganda which offers a wide range of consulting services to merit our reputation as a multidisciplinary consultancy.<br /><br /> We have demonstrated experience in marketing, management, IT, product development and social research.</center></strong>';
      
      if (document.all)
      document.write('<marquee direction="up" scrollAmount='+speed+'; style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>');
      
      function regenerate(){
      window.location.reload();
      }
      function regenerate2(){
      if (document.layers){
      setTimeout("window.onresize=regenerate",450);
      intializemarquee();
      }
      }
      
      function intializemarquee(){
      document.cmarquee01.document.cmarquee02.document.write(marqueecontents);
      document.cmarquee01.document.cmarquee02.document.close();
      thelength=document.cmarquee01.document.cmarquee02.document.height;
      scrollit();
      }
      
      function scrollit(){
      if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
      document.cmarquee01.document.cmarquee02.top-=speed;
      setTimeout("scrollit()",100);
      }
      else{
      document.cmarquee01.document.cmarquee02.top=marqueeheight;
      scrollit();
      }
      }
      
      window.onload=regenerate2;