// JavaScript Document
function objectFlash(theFile, largeur, hauteur, flashvars )
{
    document.write('<object type=\"application/x-shockwave-flash\" data=\"' + theFile + '\" width=\"' + largeur + '\" height=\"' + hauteur + '\">' +
    ' <param name=\"FlashVars\" value=\"' + flashvars + '\" />' +
    ' <param name=\"wmode\" value=\"transparent\">' +
    ' <param name=\"movie\" value=\"' + theFile + '\" />' +
    ' <div>Plugin Flash : <a href=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\">http://www.macromedia.com</a></div>' +
    ' </object>');
}