//script de gestion de la pub

function displayPub( zone, language, index, screenName ){
    var altImg = "Publicite zone :" + zone + ", language :" + language + ", index :" + index + ", screenName :" + screenName;
    var img;
    var zone;
    if ( zone == "LEFT_BAR" ) {
        img = "pub"+index+".gif";
        zone = null;
        document.write("<img src='../../temp/" + img + "' alt='' />");
    } else if ( zone == "TOP_BAR" ) {
        img = "../../temp/topBanner"+index+".swf";
        zone = null;
        document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"468\" height=\"60\"><param name=\"movie\" value=\""+img+"\"><param name=\"quality\" value=\"high\"><embed src=\""+img+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"468\" height=\"60\"></embed></object>");
    } else if ( zone == "RIGHT_BAR" ) {
        img = "rightOffresPub"+index+".gif";
        zone = "zoneRightPub";
        document.write("<img src='../../temp/" + img + "' alt='' class='" + zone +"' />");
    } else if ( zone == "RIGHTEST_BAR" ) {
        img = "../../temp/rightestOffresPub"+index+".swf";
        zone = "zoneRightestPub";
        document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0\" width=\"120\" height=\"600\"><param name=\"movie\" value=\""+img+"\"><param name=\"quality\" value=\"high\"><embed src=\""+img+"\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"120\" height=\"600\"></embed></object>");
    }
}

