/*
File Name:
   scripts/video.js
File Author:
   Joe Morrow <j-morrow@northwestern.edu>
Last Updated:
   12:25 PM 4/14/2005 JOE
*/


function openVideo(x) {
   if ((x > 0) && (x < 94)) {
      var xs = x + '';
      var pageName = "../video.php?video_id=" + xs;
      var remote = window.open(pageName, "Video", "height=340, width=400");
   }
}

