<!--
var winVideo = 0;

function launchVideo(vidFile)
{

  if(winVideo)
  {
    if(!winVideo.closed) winVideo.close();
  }
  wWidth = 720;
  wHeight = 525;
  wLeft = (screen.width - wWidth) / 2 - 5;
  wTop = 0; //(screen.height - wHeight) / 2 - 30;
  winVideo = window.open(vidFile, 'winVideo', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=yes,width=' + wWidth + ',height=' + wHeight + ',left=' + wLeft + ',top=' + wTop);
  winVideo.focus();
  return winVideo;
}
//-->