<!--
function openPlayer( fileName)
{
  ScrW = screen.availWidth;
  ScrH = screen.availHeight;
  L = ScrW / 2 - 200;
  T = ScrH / 2 - 240;
  window.open( fileName, "", "scrollbars=yes,resizable=yes,width=400,height=480,left=" + L + ",top=" + T);
}

function openPlayerWide( fileName)
{
  ScrW = screen.availWidth;
  ScrH = screen.availHeight;
  L = ScrW / 2 - 240;
  T = ScrH / 2 - 275;
  window.open( fileName, "", "scrollbars=yes,resizable=yes,width=480,height=550,left=" + L + ",top=" + T);
}
//-->
