// Javascript to launch flvplayer:
var browser = navigator.appName.substring(0,8);
var ie = (browser == "Microsof");

function launchMovie(movie, height, width) {
   var movie_win;
   if (ie) {
      movie_win = window.open("/flvplayer/flvplayer.php?t=Neural+Core+Dump&m=" + movie + "&w=" + width + "&h=" + height, "NCDVidWin", "height=" + (height + 40) + ",width=" + (width + 20));
   } else {
      movie_win = window.open("/flvplayer/flvplayer.php?t=Neural+Core+Dump&m=" + movie + "&w=" + width + "&h=" + height, "NCDVidWin", "innerHeight=" + (height + 40) + ",innerWidth=" + (width + 20));
   }
}

