      
      /* this is the ucda news script--*/
      
      
      
      //Spécify the width of the scrolling text (in pixels)
      var marqueewidth=310;
      //Spécify the height of the scrolling text
      var marqueeheight=100;
      //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>Welcome to the official website of EACSV. It is our prayer that you find this website informative and know about us as much as you wish. In case of a gap in knowledge, please just fill Contact-Us form and we shall get back to you.<p> When we founded this organization we were inspired by the powerful symbolism of business development that rises from the ashes more brilliant than before. We chose to name the organization EACSV. <p>This company has continued to grow and evolve as a business of dedicated staff who are committed to our original vision. Our core belief is that interaction with our clients can provide the hope needed for growth of any business.</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",310);
      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;