//PLF - http://www.jejavascript.net/
var txt_defil_width = 385; //largeur
var txt_defil_height = 150; //hauteur
var txt_defil_bgcolor = ''; //couleur de fond
var txt_defil_background = ""; //image de fond

function une_genere()
{
document.write('<marquee ');

if (ie) 
{
	document.write('');
} 
else if (ns6) 
{
	document.write(' id="scroller" ');
}
document.write(' behavior="scroll" direction="up" scrollamount="1" scrolldelay="1" onmouseover="this.stop()" onmouseout="this.start()" style="height:100%;width:100%;border:solid #B4C1D3 1px;background:#D7DDE6;padding:5px;" height="auto" width="100%">');

for (var i=0; i<nbtxt; i++) 
{
document.write('<table class="une">');
document.write(txt_defil_info[i]);
document.write('</table>');
}

document.write('</marquee>');


}


