function ViewImage(myLocation, myWidth, myHeight, myTarget) {
  tmpWin= window.open(myLocation, myTarget, '"toolbar=no,status=no,scrollbars=no,menubar=no,width=' + myWidth + ',height=' + myHeight + '"');
  tmpWin.focus();
}
