
// movieWindow.js. Functions to open the ViewMovie.htm window & pass which movie to show
// Assumes script mainTop.js was included in the html file, which holds variable publicPath
//---------------------------------------------------------------------------------------
function movieWindow( movieSrc )
//
//---------------------------------------------------------------------------------------
{

  var htmlPath = publicPath + 'ViewMovie.htm?movieSrc=' + movieSrc;
  contentWindow=window.open( htmlPath, 'Movie', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,left=10,top=10,width=525,height=425');
  contentWindow.document.title='Buntport Movie';
  contentWindow.focus();

} // function movieWindow()
