

//  This script and many more are available free online at -->
//  The JavaScript Source!! http://javascript.internet.com -->

// Begin
function writeMarquee(le_texte) {
/*
document.write("<marquee behavior='scroll' direction='up' scrollamount='1' scrolldelay='1' onmouseover='this.stop()' onmouseout='this.start()' style='height:30px;width:100%;border:solid #B4C1D3 1px;background:#D7DDE6;padding:2px;' height='30' width='100%'>"+le_texte+"</marquee>");
*/
document.write("<marquee scrolldelay='250' scrollamount='25'>"+le_texte+"</marquee>");


}

function writeMarqueeV(le_texte) {

document.write("<div align='center'><marquee behavior='scroll' direction='up' scrollamount='1' loop='999' scrolldelay='75' truespeed onmouseover='this.stop()' onmouseout='this.start()' style='font-size:1.1em;text-align:center;height:75px;width:50%;background:#ffffff;padding-left:2em;padding-right:2em;border-width: 0.1em;border-bottom-style: dotted;border-top-style:dotted;border-color: #c855b8;'>"+le_texte+"</marquee></div>");




}
//  End -->


// Free JavaScripts provided
//by <a href="http://javascriptsource.com">The JavaScript Source</a>
