<!--
function windowopen(img) {
  theImage = new Image();
  theImage.onload = imgLoaded;
  theImage.caption = "Aebi New England, LLC";
  theImage.src = img;
}
function imgLoaded() {
  iw = this.width; ih = this.height; wp = 8; hp = 28;
  aw = screen.availWidth-wp; ah = screen.availHeight-hp;
  if ( iw>aw || ih>ah) { ar = Math.min(aw/iw,ah/ih); iw = Math.round(iw*ar); ih = Math.round(ih*ar); }
  navigator.MS = navigator.appName.indexOf("Microsoft") != -1 ? true : false; 
  navigator.AOL = navigator.appVersion.indexOf("AOL") != -1 ? true : false;
  nw = iw; nh = ih; if ( navigator.MS && !navigator.AOL ) { nw -= 4; nh -= 4; }
  showit = window.open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+nw+",height="+nh+",dependent=no");
  showit.document.write("<html><head><title>"+this.caption+"</title>");
  showit.document.write("<style type=\"text/css\">");
  showit.document.write("body{border:0px;padding:0px;margin:0px;}");
  showit.document.write("img{position:absolute;top:0px;left:0px;border:0px;padding:0px;margin:0px;width:"+iw+";height:"+ih+";}");
  showit.document.write("</style></head><body>");
  showit.document.write("<img src=\""+this.src+"\" width=\""+iw+"\" height=\""+ih+"\" >");
  showit.document.write("</body></html>");
  showit.document.close();
  showit.moveTo( Math.round((aw-iw)/2), navigator.AOL ? 0 : Math.round((ah-ih)/2) );
  return false;
}
//-->
