var body = "Great service and all round very good removal. Thanks very much for the great and speedy work. Very pleased! Great crew! Mr and Mrs Hugo – South Africa";
var body = body + " " + "...The men were very polite, clean, tidy and professional. What should be a very stressful experience was made so much easier due to their experience and helpful friendly manner – excellent. Mr and Mrs Niesiolowski  - Australia";
var body = body + " " + "...Excellent crew really helpful and courteous. I’d highly recommend them all. Ms Sumitri-Mills - Australia";
var body = body + " " + "...Absolutely fantastic team of 2 guys. Outstanding customer service, fast and hard working and never stopping their politeness and good humour even towards the end of the day. (A long day too!) Myself and my wife found these gentlemen brilliant in every aspect, a credit to Allfreight and a standing ovation from us. Well done!! Mr and Mrs Wardle- Australia";
var body = body + " " + "...Very efficient crew, friendly and professional. Miss D Weerasinghe,  - Australia";
var body = body + " " + "...Excellent service, your team have made this transition a less harrowing experience. Thank you. Mr and Mrs Thurlow -Australia";
var body = body + " " + "...Thanks to the removal crew for a great job. Mr P Lutge – South  Africa";
var body = body + " " + "...Excellent service who were very courteous and obliging. Would definitely use again or tell people about Allfreight. Mr Anderson- Australia";
var txtData = body;

var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;
function ticker() {
        var i,k,msg= " " + txtData + " ";
        k=(85/msg.length)+1;
        for(i=0;i<=k;i++) msg+=" "+msg;
        document.form2.ticker.value=msg.substring(position,position+100);
        if(position++==10000) position=0;
        id=setTimeout("ticker()",4000/30); }
function action() {
        if(!pause) {
                clearTimeout(id);
                pause=1; }

        else {
                ticker();
                pause=0; } }