// WebTicker by Mioplanet // www.mioplanet.com TICKER_CONTENT = "10/01/2012 (28 days ago) Brilliant to get this sorted so quickly and to have good advice for future problems. Many thanks!. Rita Holme (Sector: Charity)|10/01/2012 (28 days ago) pleasant manner, quick & efficient - happy with time and and way in which call was dealt with, many thanks.. Laura Orlando (Sector: Recruitment)|11/01/2012 (27 days ago) Great, as usual.. Lynne Pressnell (Sector: Charity)|11/01/2012 (27 days ago) Quick, easy, efficient - just what was needed.. Brenda Joyce (Sector: Charity)|10/01/2012 (28 days ago) Very speedy turn-around. Rob Evans|09/01/2012 (29 days ago) Furiously fast work with right result, thanks Rob!. McGowan Claire (Sector: Prof services - Law)|11/01/2012 (27 days ago) helpful as always.. Jon Lovitt (Sector: Prof services - Law)|06/01/2012 (32 days ago) Excellent service. Benjamin Boucher-Ferté (Sector: Financial Services)|09/01/2012 (29 days ago) Looks very nice and clean. Thanks. Kay Spyrou (Sector: Financial Services)|06/01/2012 (32 days ago) perfect timing!. Jon MILLER (Sector: Distribution)|12/12/2011 (57 days ago) No -Wavex could not have been more helpful!. Joe Fattorini (Sector: Distribution)|30/12/2011 (39 days ago) Excellent prompt response to resolve the problem. Adrian Gain (Sector: Charity)|23/12/2011 (46 days ago) Really appreciated the quick and effective help.. Bobby Haque|25/12/2011 (44 days ago) Excellent service fir xmas day. Andy Nevin (Sector: Oil & Mining)|05/01/2012 (33 days ago) Thanks CharlesBRAs always a fast professional response. Phil Bones (Sector: Community)|05/12/2011 (64 days ago) Excellent and quick service! Thanks so much!. Kirsten Haeusser (Sector: Recruitment)|21/12/2011 (48 days ago) Thank you - timely information, quick and efficient. merry xmas and a happy ny!. Venera Collishe (Sector: Oil & Mining)|05/12/2011 (64 days ago) Technical brilliance. . Harry Sevier (Sector: Financial Services)|06/12/2011 (63 days ago) Rakesh (and Kiran) are both invaluable to the Society - please give them either a pay rise or a very good Christmas bonus! Keep up the good work guys.. All - London (Sector: Charity)|10/01/2012 (28 days ago) fab. Melissa Wyatt (Sector: Charity)|"; TICKER_RIGHTTOLEFT = false; TICKER_SPEED = 2; TICKER_STYLE = "font-family:Arial; font-size:11px; color:#000000"; TICKER_PAUSED = false; ticker_start(); function ticker_start() { var tickerSupported = false; TICKER_WIDTH = document.getElementById("TICKER").style.width; var img = ""; // Firefox if (navigator.userAgent.indexOf("Firefox")!=-1 || navigator.userAgent.indexOf("Safari")!=-1) { document.getElementById("TICKER").innerHTML = "
"+img+" "+img+"
"; tickerSupported = true; } // IE if (navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1) { document.getElementById("TICKER").innerHTML = "
"+img+""+img+"
"; tickerSupported = true; } if(!tickerSupported) document.getElementById("TICKER").outerHTML = ""; else { document.getElementById("TICKER").scrollLeft = TICKER_RIGHTTOLEFT ? document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth : 0; document.getElementById("TICKER_BODY").innerHTML = TICKER_CONTENT; document.getElementById("TICKER").style.display="block"; document.getElementById("TICKER").scrollLeft = 800 TICKER_tick(); } } function TICKER_tick() { if(!TICKER_PAUSED) document.getElementById("TICKER").scrollLeft += TICKER_SPEED * (TICKER_RIGHTTOLEFT ? -1 : 1); if(TICKER_RIGHTTOLEFT && document.getElementById("TICKER").scrollLeft <= 0) document.getElementById("TICKER").scrollLeft = document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth; if(!TICKER_RIGHTTOLEFT && document.getElementById("TICKER").scrollLeft >= document.getElementById("TICKER").scrollWidth - document.getElementById("TICKER").offsetWidth) document.getElementById("TICKER").scrollLeft = 0; window.setTimeout("TICKER_tick()", 30); }