/* Mike's DHTML scroller (By Mike Hall) Last updated July 21st, 02' by Dynamic Drive for NS6 functionality For this and 100's more DHTML scripts, visit http://www.dynamicdrive.com */ //SET SCROLLER APPEARANCE AND MESSAGES var myScroller1 = new Scroller(0, 0, 154, 275, 0, 0); //(xpos, ypos, width, height, border, padding) myScroller1.setColors("", "", ""); //(fgcolor, bgcolor, bdcolor) //myScroller1.setFont("Verdana,Arial,Helvetica", 2); myScroller1.setFont("Arial",2); myScroller1.addItem("
Prepay Go! is pleased to announce significant recent developments in Southern Europe, Africa and Asia.
Please contact info@prepaygo.com for further information
Key statistics (2008): Prepaid transactions by volume will reach 9% of all payments in 2012, versus 5.3% in 2007. Figures are respectively 44.0% (39.0%) for Debit, 37.3% (43.3%) for Credit and 7.5% (8.7%) for ChargeCards. Prepaid is the place where one should be.
"); //SET SCROLLER PAUSE myScroller1.setPause(4500); //set pause beteen msgs, in milliseconds myScroller1.setSpeed(80); // If Netscape 6 or above speed up the scroller var isNS=document.getElementById&&!ie&&navigator.userAgent.indexOf("Opera")==-1 if (isNS) { myScroller1.setSpeed(80); } function set_scroll_init(){ myScroller1.create(); myScroller1.hide(); myScroller1.setzIndex(2); myScroller1.show(); set_scroll_position(); } function set_scroll_position(){ var a; if(document.all){ a = 0; }else{ a = 10; } myScroller1.moveTo((document.body.offsetWidth/2)+315+a, 254); }