var width_div_flashplayer = 580; var height_div_flashplayer = 540; function positionne_div_flashplayer() { // positionne en fonction de la résolution de l'écran if (document.getElementById("flashPlayer") && document.getElementsByTagName("body")[0]) { flash_div = document.getElementById("flashPlayer"); body_el = document.getElementsByTagName("body")[0]; // centre dans le site - Si scroll est présent, en tient compte if (document.getElementsByTagName("body")[0].scrollHeight > document.getElementsByTagName("body")[0].clientHeight) { flash_div.style.top = Math.ceil((document.getElementsByTagName("body")[0].clientHeight / 2) - (460/2)) + document.getElementsByTagName("body")[0].scrollTop; } else { flash_div.style.top = 178; } flash_div.style.left = 100; } } function joue_la_video(chemin_flv, width_flv, height_flv) { // le calque existe ? if (document.getElementById("flashPlayer") == null) // détruit auparavant via "Fermer" { d = document.createElement("div"); d.id = "flashPlayer"; var t = document.getElementsByTagName("body")[0].appendChild(d); } var attributes = {}; var params = {}; // for fullscreen params.allowfullscreen = "true"; params.wmode = "transparent"; var flashvars = {}; flashvars.file = chemin_flv; flashvars.langFermer = ""; // flashvars.streamscript = "../swf/flvprovider.php"; flashvars.bufferlength = "1.5"; flashvars.domaine = "www.louislatour.com"; // width and height of the player (h is height of the video + 20 for controlbar) // required for IE7 // flashvars.width = width_flv; // flashvars.height = height_flv; // width and height of the video // flashvars.displaywidth = width_flv; // flashvars.displayheight = height_flv; // flashvars.autostart = "true"; // flashvars.showdigits = "true"; // for fullscreen // flashvars.showfsbutton = "true"; // 9 for Flash Player 9 (for ON2 Codec and FullScreen) // swfobject.embedSWF("phpsflvplayer.swf", "flashPlayer", width_flv, height_flv, "9.0.0", "playerProductInstall.swf", flashvars, params, attributes); swfobject.embedSWF("../swf/video.swf", "flashPlayer", width_flv, height_flv, "8.0.0", "playerProductInstall.swf", flashvars, params, attributes); positionne_div_flashplayer(); document.getElementById("flashPlayer").style.visibility = "visible"; if (document.getElementById("TB_overlay")) { var hauteurTB_overlay = 0; if (document.getElementsByTagName("body")[0].scrollHeight > document.getElementsByTagName("body")[0].clientHeight) { hauteurTB_overlay = document.getElementsByTagName("body")[0].scrollHeight; } else { hauteurTB_overlay = document.getElementsByTagName("body")[0].clientHeight; } if (document.getElementsByTagName("body")[0]) { document.getElementById("TB_overlay").style.height = hauteurTB_overlay + "px"; } document.getElementById("TB_overlay").style.display = "block"; } } function removeVideo() { swfobject.removeSWF("flashPlayer"); if (document.getElementById("TB_overlay")) { document.getElementById("TB_overlay").style.display = "none"; } }