   var scrollCounter = 0;
   var scrollText    = "DDPs of thirty two ULB provisionally approved by KMPC --- 
  
32 ULBs submit final DDP for KMPC approval after internal appraisal ---- 
  
Internal appraisal on in 6 other ULBs --- 
  
Identification of first Sixteen ULBs in switching over to Accrual Based Double Entry Accounting System. --- 
  
Day to day Entries in Double Entry Accrual Based Accounting  starts in all 40 ULBs --- 
  
Standard Operating Procedures for work processes and asset management developed for ULBs --- 
  
Roll out of three components of KUSP to 85 other ULBs starts. --- 
  
Current Situation Report for Howrah  Development  and  Rejuvenation Plan prepared. ---
  
DFID finish Mid-Term Funding Review ";
   var scrollDelay   = 100;

   var i = 0;
   while (i ++ < 140)
   scrollText = " " + scrollText;
   function Scroller()
   {
    window.status = scrollText.substring(scrollCounter++, 
                    scrollText.length);
    if (scrollCounter == scrollText.length) 
                    scrollCounter = 0;
                    setTimeout("Scroller()", scrollDelay);
       }
    Scroller();
     