function vidWin(strSpec) {
              OpenWindow=window.open("", "newWin", "height=340,width=420,toolbar=no,scrollbars=auto,menubar=no");
              OpenWindow.document.write('<html></html>');
              OpenWindow.document.close();
              OpenWindow.document.open();
              OpenWindow.document.write('<html>');
              OpenWindow.document.write('<title>Video Clip Viewer</title>');
              OpenWindow.document.write('<body style="margin:10px; background-color:black;"><div align="center">');

              //OpenWindow.document.write('<embed src="http://river.scc.spokane.edu/_asf/' + strSpec +  '.asx" showcontrols="1" controls="smallconsole" autostart="1"></embed>');

              OpenWindow.document.write('<object id="NSPlay" name="NSPlay" width="400" height="320" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Media Player components..." type="application/x-oleobject">');
              OpenWindow.document.write('<param name="FileName" value="http://river.scc.spokane.edu/_asf/' + strSpec + '.asx">');
              OpenWindow.document.write('<param name="VideoBorder3D" value="false">');
              OpenWindow.document.write('<param name="AutoStart" value="true">');
              OpenWindow.document.write('<param name="ControlType" value="1">');
              OpenWindow.document.write('<param name="AnimationStart" value="FALSE">');
              OpenWindow.document.write('<param name="TransparentAtStart" value="FALSE">');
              OpenWindow.document.write('<param name="ShowPositionControls" value="false">');
              OpenWindow.document.write('<param name="ShowGotoBar" value="false">');
              OpenWindow.document.write('<param name="ShowTracker" value="false">');
              OpenWindow.document.write('<param name="ShowDisplay" value="FALSE">');
              OpenWindow.document.write('<param name="ShowCaptioning" value="FALSE">');
              OpenWindow.document.write('<param name="DisplayMode" value="0">');
              OpenWindow.document.write('<param name="ShowControls" value="1">');
              OpenWindow.document.write('<param name="ShowStatusBar" value="false">');
              OpenWindow.document.write('<param name="InvokeURLs" value="TRUE">');
              OpenWindow.document.write('<embed type="application/x-mplayer2"');
              OpenWindow.document.write('       pluginspage="http://www.microsoft.com/windows/mediaplayer/download/"');
              OpenWindow.document.write('       src="http://river.scc.spokane.edu/_asf/' + strSpec + '.asx"');
              OpenWindow.document.write('       name="NSPlay"');
              OpenWindow.document.write('       videoborder3d=false');
              OpenWindow.document.write('       autostart=true');
              OpenWindow.document.write('       animationstart=FALSE');
              OpenWindow.document.write('       transparentatstart=FALSE');
              OpenWindow.document.write('       showpositioncontrols=false');
              OpenWindow.document.write('       showgotobar=false');
              OpenWindow.document.write('       showtracker=false');
              OpenWindow.document.write('       showcontrols=1');
              OpenWindow.document.write('       showstatusbar=false');
              OpenWindow.document.write('       controltype="1"');
              OpenWindow.document.write('       showdisplay="FALSE"');
              OpenWindow.document.write('       showcaptioning="FALSE"');
              OpenWindow.document.write('       displaymode="0"');
              OpenWindow.document.write('       invokeurls=TRUE');
              OpenWindow.document.write('       width=400');
              OpenWindow.document.write('       height=320');
              OpenWindow.document.write('       filename="http://river.scc.spokane.edu/_asf/' + strSpec + '.asx">');
              OpenWindow.document.write('</embed>');
              OpenWindow.document.write('</object>');
              OpenWindow.document.write("</div></body></html>");
              OpenWindow.document.close();
              self.name="main";
            }