<!--

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

function afficheMaxi()

{

  i1 = new Image;
  var titre = "Fantasy.fr";

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

  if (nn4) {
   i1.src = chemin = document.layers['big'].innerHTML;
   }
  else if (ie5) {
   i1.src = chemin = document.all['big'].innerHTML;
   }
  else if (dom) {
   i1.src = chemin = document.getElementById('big').innerHTML;
   }

  html = '<html><head><title>'+titre+'<\/title><base href=\"http://www.fantasy.fr/boutique/\" \/><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+50,document.imageTest.height+60)" alt="Fantasy.fr" /><\/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()
}

//-->
