document.write(""); function changer_langue(langue){ var strURL = new String(document.location); if (langue == "an"){ strURL = strURL.replace("_fr","_an") } if (langue == "fr"){ strURL = strURL.replace("_an","_fr"); } location.href=strURL; } function modalwin_popup(url, nom, mwidth, mheight, configuration) { if (document.all&&window.print) //if ie5 window.showModalDialog(url,nom,"help:no;resizable:no;edge:raised;status:no;dialogWidth:"+mwidth+"px;dialogHeight:"+mheight+"px"); else window.open(url,nom,configuration); }; var gAutoPrint = true; // Flag for whether or not to automatically call the print function function printSpecial() { if (document.getElementById != null) { var html = '\n\n'; if (document.getElementsByTagName != null) { var headTags = document.getElementsByTagName("title"); if (headTags.length > 0) html += headTags[0].innerHTML; } html += '\n\n\n\n'; var printReadyElem = document.getElementById("contenu_texte"); if (printReadyElem != null) { html += printReadyElem.innerHTML; } else { alert("Aucune version imprimable de ce document..."); return; } html += '\n\n'; var printWin = window.open("","printSpecial","width=780,height=400,scrollbars=yes,menubar=yes"); printWin.document.open(); printWin.document.write(html); printWin.document.close(); printWin.window.print(); } }