/*
This file uses a generated file called fluxdata.js
aFluxDate, aFluxDpt and aFluxLabel are arrays initialized in
the file said before.
We use 'em to display the list of last ads
*/

document.writeln("<div class=\"crcom_ads\">");
document.writeln("<div class=\"title\" onclick=\"location.href='http://www.conducteur-routier.com';\">"+sCRCOMTitle+"</div>");
var iCRCOMAds=0;
while (iCRCOMAds<iCRCOMAdsMax){
    sLabel = (aFluxLabel[iCRCOMAds]).substr(0,iCRCOMLabelLengthMax);
    document.writeln("<div class=\"ad\">");
        document.writeln("<div class=\"date\">"+ aFluxDate[iCRCOMAds] +"</div>");
        document.writeln("<div class=\"dpt\">("+ aFluxDpt[iCRCOMAds] +")</div>");
        document.writeln("<div class=\"label\"><a href=\""+aFluxLink[iCRCOMAds]+"\" target=\"blank\">"+ sLabel +"...</a></div>");
    document.writeln("</div>");
    iCRCOMAds++;
}
document.writeln("</div>");

