var count = 0;
var delay = 50;
var text = "                                                                                                                  Welcome to At Home PC Repairs";
function  scroll () {
       window.status = text.substring (count, text.length) + text.substring (0, count)
        if (count < text.length)
                count ++;
        else
                count = 0;
        setTimeout ("scroll()", delay);
}
