function Ticker(name, id, shiftBy, interval)
{ 
this.name = name; 
this.id = id; 
this.shiftBy = shiftBy ? shiftBy : 1; 
this.interval = interval ? interval : 0; 
this.runId = null; 

this.div = document.getElementById(id); 

var node = this.div.firstChild; 
var next; 

while (node) 
{ 
next = node.nextSibling; 
if (node.nodeType == 3) 
this.div.removeChild(node); 
node = next; 
} 

this.left = 400; 
this.shiftLeftAt = this.div.firstChild.offsetWidth; 
this.div.style.height = this.div.firstChild.offsetHeight; 
this.div.style.width = 2 * screen.availWidth; 
this.div.style.visibility = 'visible';
}

function startTicker()
{ 
this.stop(); 

this.left -= this.shiftBy; 

if (this.left <= -this.shiftLeftAt) 
{ 
this.left = 400; 
this.div.appendChild(this.div.firstChild); 

this.shiftLeftAt = this.div.firstChild.offsetWidth; 
} 

this.div.style.left = (this.left + 'px'); 

this.runId = setTimeout(this.name + '.start()', this.interval);
}

function stopTicker()
{ 
if (this.runId) 
clearTimeout(this.runId); 

this.runId = null;
}

function changeTickerInterval(newinterval)
{ 

if (typeof(newinterval) == 'string') 
newinterval = parseInt('0' + newinterval, 10); 

if (typeof(newinterval) == 'number' && newinterval > 0) 
this.interval = newinterval; 

this.stop(); 
this.start();
}

Ticker.prototype.start = startTicker;
Ticker.prototype.stop = stopTicker;
Ticker.prototype.changeInterval = changeTickerInterval;
var ticker = null;

function init(){ticker = new Ticker('ticker', 'tickerID', 1, 25);ticker.start();}
onload = init
apc = (document.layers)? true:false
if (apc = "false")
{
document.write('<div align="left" class="cadre">');
document.write('<div class="ticker" id="tickerID" onMouseOver="ticker.stop();" onMouseOut="ticker.start();">');
document.write('<span class="banner"><nobr>');

    document.write('<img src="/js/netoo.gif" align="top" border="0">&nbsp; propose >>>>&nbsp;&nbsp;&nbsp; ');

    document.write('&#8226;&nbsp;Actualité du monde en live sur votre PC<a class="banner" href="http://www.france-info.com" target="_blank">France-Info.com</a>');

    document.write('&#8226;&nbsp;Trouvez les meilleurs prix du web sur<a class="banner" href="http://www.promoachats.com" target="_blank"><img src="/js/pa1.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Tous les résultats des jeux sont sur<a class="banner" href="http://www.foudujeu.com" target="_blank"><img src="/js/foudujeu.gif" align="top" border="0"></a>');
    
    document.write('&#8226;&nbsp;Comparez les offres de tous les voyagistes<a class="banner" href="http://www.netoo.fr/moteur-voyages.php" target="_blank">Moteur de voyages</a>');

    document.write('&#8226;&nbsp;Toutes les nouveautés livres DVD disponibles<a class="banner" href="http://www.amazon.fr" target="_blank"><img src="/js/amazon.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Programmes Télé et chaînes câblés<a class="banner" href="http://www.programme-tv-tele.com" target="_blank">Programme-TV-Tele.com</a>');
    
    document.write('&#8226;&nbsp;News françaises et internationales<a class="banner" href="http://permanent.nouvelobs.com" target="_blank"><img src="/js/nouvobs.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Guide du shopping malin sur le web<a class="banner" href="http://www.shopissimo.com" target="_blank"><img src="/js/shopi.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Votre horoscope gratuit du jour<a class="banner" href="http://www.lhoroscope.com" target="_blank">Lhoroscope.com</a>');
    
    document.write('&#8226;&nbsp;Info trafic et itinéraires en France<a class="banner" href="http://www.infotrafic.com" target="_blank">Infotrafic.com</a>');

    document.write('&#8226;&nbsp;Actualité de tous les sports en temps réel<a class="banner" href="http://www.lequipe.fr" target="_blank"><img src="/js/lequipe.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Toutes les offres emploi en France<a class="banner" href="http://www.optioncarriere.com" target="_blank"><img src="/js/optionc.gif" align="top" border="0"></a>');

    document.write('&#8226;&nbsp;Déstockage informatique, électroménager<a class="banner" href="http://www.netoo.com/cgi-bin/af/out.cgi?id=3608" target="_blank"><img src="/js/mrgood.gif" align="top" border="0"></a>');


document.write('	</nobr></span>');
document.write('</div>');
document.write('</div>');

}


