function AboutAuthors()
{
  var width = 370;
  var height = 300;
  var x = screen.width / 2 - width / 2;
  var y = screen.height / 2 - height / 2;

  window.open("index.php?TLC=Main.AboutAuthors", "AboutAuthors","resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,width="+width+",height="+height+",left="+x+",top="+y);
}

function PopupImage(ImgWidth, ImgHeight, ImgID, ImgPath, ImgComment)
{
  var AdditionalWidth = 120;
  var AdditionalHeight = 140;

  if (ImgWidth == '')
    var ImgWidth = 300;

  if (ImgHeight == '')
    var ImgHeight = 300;

  var width = (ImgWidth * 1) + AdditionalWidth;
  var height = (ImgHeight * 1) + AdditionalHeight;
  var x = screen.width / 2 - width / 2;
  var y = screen.height / 2 - height / 2;

  if (ImgID != '')
    var params = '&media_id=' + ImgID;
  else
    var params = '&image_path=' + ImgPath + '&image_comment=' + ImgComment;

  MyWindow = window.open("?TLC=OpenFile.PopupImage" + params, "image" ,"resizable=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,width="+width+",height="+height+",left="+x+",top="+y); 
  MyWindow.resizeTo(width, height);
  MyWindow.moveTo(x, y);
}

function SetFocus()
{
  window.focus();
}
