<!--
var disp_hist_title='PHOTO';
var base='../img/his/';
var isNav4, isIE4;
//
if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
	isNav4 = (navigator.appName == "Netscape") ? 1 : 0;
	isIE4 = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}
//
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//
function disp_hist(myimage,title) {
	display(base+myimage,title)
}
//
function display(myimage,title) {
 html = "<HTML><HEAD><TITLE>MEGOFF : "+disp_hist_title+" : "+title+"</TITLE>" +
  "</HEAD><BODY LEFTMARGIN=0 " +
  "MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0>" +
  "<div style=position:absolute; left:0px; top:0px'>"+
  "<IMG SRC='" + myimage + "' BORDER=0 NAME=image ALT='"+title+"' " +
  "onClick='window.close()' onload='";
  if (!isIE4) {
	html=html+"window.innerWidth = document.layers[0].document.images[0].width;"+
	"window.innerHeight = document.layers[0].document.images[0].height;'>"+
	"</BODY></HTML>";
  }else{
	html=html+"window.resizeTo(document.image.width+10,document.image.height+30)'>"+
	"</BODY></HTML>";
  }
 popup=window.open
   ('','image','width=540,height=540,toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()
 };
//-->
