/* Copyright (c) 2006 Harrison Digital Media, Inc. All rights reserved. */

function ShowScreenshot(Width, Height, filename, title)
{
  var MaxWidth = screen.width - 30;
  var MaxHeight = screen.height - 30;
    
  if (Width>MaxWidth)
    Width = MaxWidth;
    
  if (Height>MaxHeight)
    Height = MaxHeight;
    
  var Left = (screen.width/2)-(Width/2);
  var Top = (screen.height/2)-(Height/2);

  var newWin = window.open(null,
    '_blank',
    'scrollbars=yes,status=no,resizable=yes,width='+Width+',height='+Height+',left='+Left+',top='+Top);
    
  newWin.document.open();
  newWin.document.write("<html><head><title>" + title + "</title></head>");
  newWin.document.write("<img src='" + filename + "' border=0;>");
  newWin.document.write("</body></html>");
  newWin.document.close();
}