// JavaScript Document

<!-- popup à fermeture auto

function popup(image_loc,x,y)
{

 if(navigator.appName == "Netscape")
{

var L = x + 15;
var H = y + 20;
  HTML = "<html><body onBlur='top.close()'><img src='http://www.cruells.fr/renaud/usa/photos/"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(L,H)'></body></html>";
  popupImage = window.open("","photo","width=" +L +",height=" +H+",left="+1+",top="+1+",screenX="+1+",screenY="+1);
} 
  if(navigator.appName == "Microsoft Internet Explorer")
{
  HTML = "<html><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='http://www.cruells.fr/renaud/usa/photos/"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
}

  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
}
//-->

