// WebTicker by Mioplanet // www.mioplanet.com TICKER_CONTENT = "02/04/2008 (37 days ago) always an superb service. Thanks. Rachel Bayliss (Sector: Oil & Mining)  |  11/04/2008 (28 days ago) Oliver is excellent he has always sorted out any problems however difficult. He is a credit to your business.. Esther Marsden (Sector: Recruitment)  |  11/04/2008 (28 days ago) He was great, very prompt and friendly :). resourcer (Sector: Recruitment)  |  28/03/2008 (42 days ago) Oliviers calmness and patience is a virtue....im delighted with the service we receive...thanks again.. Tracy Carpenter (Sector: Financial Services)  |  27/03/2008 (43 days ago) The support engineer was really helpful and enjoyable to speak to. Emily Guest (Sector: Recruitment)  |  17/04/2008 (22 days ago) Very helpful and professional manner. Phil Morris (Sector: Financial Services)  |  08/04/2008 (31 days ago) As usual, a very friendly and efficient service.. Wendy Voss (Sector: Oil & Mining)  |  26/03/2008 (44 days ago) excellent swift service. Malini Rajendran (Sector: Marketing / Media / PR)  |  10/04/2008 (29 days ago) Paul, excellent support as usual. thank you for your kindness. Carlo. Carlo Boi (Sector: Charity)  |  01/04/2008 (38 days ago) Great that this was done so quickly. Thank you!. Lisa Oeder (Sector: Charity)  |  03/04/2008 (36 days ago) Again great patience shown Thankyou. Shirley Border (Sector: Utilities)  |  11/04/2008 (28 days ago) Excellent. A Quick Response. Murali Mittagunta (Sector: Financial Services)  |  17/03/2008 (53 days ago) Excellent service once again!. Paul Foley (Sector: Oil & Mining)  |  26/03/2008 (44 days ago) Excellent as ever, thoughly nice chap.. Nick Olden (Sector: Oil & Mining)  |  27/03/2008 (43 days ago) Nimal was very responsive and helpful! Thanks for fixing it so quickly!. Veronica Dendinger (Sector: Training )  |  20/03/2008 (50 days ago) Very helpful as always. Fiona Poole (Sector: Marketing / Media / PR)  |  10/04/2008 (29 days ago) Brilliant service, thanks Richard.. Scott Gibson (Sector: Charity)  |  11/04/2008 (28 days ago) James yet again has been a great help.. Cheryl Douglas (Sector: Marketing / Media / PR)  |  17/03/2008 (53 days ago) Very good service, thank you for your quick responce and friendly staff (Matthew White assisted me). . Melissa Staer (Sector: Distribution)  |  09/04/2008 (30 days ago) Brilliant service and the early call was much appreciated. Thanks James. Louise. Louise Mcdonnell (Sector: Financial Services)  |  "; 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"; 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); }