window.onload = function(){

if (document.getElementsByTagName) {

var objs = document.getElementsByTagName("object");

for (i=0; i<objs.length; i++) {

objs[i].outerHTML = objs[i].outerHTML;

}

}

}

window.onunload = function() {

if (document.getElementsByTagName) {

var objs = document.getElementsByTagName("object");

for (i=0; i<objs.length; i++) {

objs[i].outerHTML = "";

}

}}

function affichage_popup(nom_de_la_page, nom_interne_de_la_fenetre)
{
window.open (nom_de_la_page, nom_interne_de_la_fenetre, config='height=500, width=700, toolbar=no, menubar=no, scrollbars=no, resizable=no, location=no, directories=no, status=no')
}

function ouvrirFenetreCentree(adresse,nomFenetre,w,h,scroll) {
 var win
 LeftPosition=(screen.width) ? (screen.width-w)/2-10 : 0
 TopPosition=(screen.height) ? (screen.height-h)/2-10 : 0
 parametres='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'
 if ((adresse.substring(adresse.length-3,adresse.length).toUpperCase()=="GIF") || (adresse.substring(adresse.length-3,adresse.length).toUpperCase()=="JPG")) {
  win=window.open("",nomFenetre,parametres)
  win.document.write("<html><head><title>Hôtel Le Donjon (Carcassonne)</title>\n")
  win.document.write("<meta http-equiv=\"imagetoolbar\" content=\"no\">\n")
  win.document.write("</head><body bgcolor=white>\n")
  win.document.write("<center><img src=\""+adresse+"\"></center>\n")
  win.document.write("</body></html>\n")
  win.document.close()
 }
 else {
  win=window.open(adresse,nomFenetre,parametres)
 }
}