var scrollCounter   =0;

var scrollText      ="Indian Outsouring Company ";

var scrollDelay     =60;

var i = 0;

while (i++ < 100)

scrollText =" " + scrollText;

scrollText +="which provides Business Process Outsourcing (BPO) and Knowledge Process Outsourcing (KPO)!";

function Scroller ( )

{

window.status = scrollText.substring (scrollCounter++,

                                    scrollText.length);

    if     (scrollCounter == scrollText.length)

            scrollCounter = 0;

    setTimeout ( "Scroller ( ) ", scrollDelay);

}



Scroller ( );
