function VideoListItem(p_titre, p_desc, p_imgsrc, p_link, p_trackinfos, p_date, p_hour, p_sportname, p_position, p_islive, p_livestart, p_liveend)
{
    this.titre = p_titre;
    this.desc = p_desc;
    this.imgsrc = p_imgsrc;
    this.link = p_link;
    this.trackinfos = p_trackinfos;
    this.date = p_date;
    this.hour = p_hour;
    this.sportname = p_sportname;
    this.position = p_position;
    this.islive = p_islive;
    this.livestart = p_livestart;
    this.liveend = p_liveend;
}

// Réécriture  javascript
function eso_docwrite(html) {document.write(html);}