function OpenImgWin(strImgUrl) {
  
var imgWin = window.open('','_ImgWin','status=no,toolbar=no,menubar=no,location=no'); 
  imgWin.document.open(); 
  //imgWin.document.title = "Lakeside Harmony - Seneca Lake Geneva, N.Y."
  imgWin.document.write('<HTML><BODY leftMargin="0" topMargin="0" ONLOAD="window.resizeTo(document.images[0].width, document.images[0].height + 30);"><input type="button" value="Close Window" onclick="self.close();" style="position:absolute;z-index:1000;"><IMG SRC="'+ strImgUrl +'"><\/BODY><\/HTML>'); 
  imgWin.document.close();
  imgWin.focus(); 
}