﻿// JavaScript Document
function AbrVent(myImage,myWidth,myHeight,origLeft,origTop){
  myHeight -= 0;
  myWidth -= 0;
  TheImgWin =
  window.open(myImage,'image','height='+ myHeight + 'width='+ myWidth + 'toolbar=no,directories=no,status=no' + 'menubar=no,scrollbars=no,resizable=no');
  TheImgWin.resizeTo(myWidth+14,myHeight+78);
  TheImgWin.moveTo(origLeft,origTop);
  TheImgWin.focus();
}

