<!--

//Popup à la taille images:
//===============================================

function afficheMaxi(image, texte)

{

  i1 = new Image;
  var titre = "Arkham";

  var nn4 = (document.layers) ? true : false;
  var ie5 = (document.all) ? true : false;
  var dom = (document.getElementById && !document.all) ? true : false;
 
  i1.src = chemin = image;

  html = '<html><head><title>'+titre+'<\/title><script language="Javascript">function nodroit(){return(false); }document.oncontextmenu = nodroit; </script><\/head><body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0"><center><img src="'+chemin+'" border="0" name="imageTest" onLoad="window.resizeTo(document.imageTest.width+10,document.imageTest.height+80)" alt="Arkham" />'+texte+'<\/center><\/body><\/html>';
  popupImage = window.open('','_blank','toolbar="0",location="0",directories="0",status="no",menuBar="0",scrollbars="0",resizable="1", copyhistory="0", menuBar="no"');
  popupImage.document.open();
  popupImage.document.write(html);
  popupImage.document.close()
}


//-->
