// function to play a flash video in the HIMSS Video Player (http://www.himss.org/videos/videoPlayer.asp
// requires the file name (minus .flv) and a title to be passed
// created by Ward Seward - April 13, 2007 (FRIDAY THE 13th!!!)
// Link Example (<a href="javascript:playVideo('AlGross', 'Al Gross talks about New Orleans')">Launch the video test</a>)
function playVideo(file, title) {
movieLocation = 'http://www.himss.org/videos/videoplayer.asp?file='+file+'&title='+title
window.open(movieLocation, 'video', 'scrollbars=no,menubar=no,height=500,width=560,resizable=no,toolbar=no,location=no,status=no');
}

