document.write("");
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);
};