<!--
function JH_Play_Video(Story,VideoTitle,Videofile)
{
new_window = open("","","width=320,height=345,left=125,top=200");
new_window.document.open();
new_window.document.write("<html><head><title>" + Story + " " + VideoTitle + "</title></head>");
new_window.document.write("<body bgcolor='#999999' leftmargin='0px' topmargin='0px' rightmargin='0px' bottommargin='0px'>");
new_window.document.write("<OBJECT ID='MediaPlayer' width='320' height='290' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902' standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>");
new_window.document.write("<param name='FileName' value=" + Videofile + ">");
new_window.document.write("<param name='animationatStart' value='false'>");
new_window.document.write("<param name='transparentatStart' value='true'>");
new_window.document.write("<param name='autoStart' value='true'>");
new_window.document.write("<param name='showControls' value='true'>");
new_window.document.write("<param name='showstatusbar' value='true'>");
new_window.document.write("<param name='autorewind' value='true'>");
new_window.document.write("<param NAME='enablecontextmenu' value='false'>");
new_window.document.write("<param name='showtracker' value='false'>");
new_window.document.write("<param name='videoborder3d' name='0'>");
new_window.document.write("<EMBED type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/MediaPlayer/' ");
new_window.document.write("SRC=" + Videofile + " name='MediaPlayer' width='320' height='290' AutoStart=true");
new_window.document.write("ENABLECONTEXTMENU='0' AUTOREWIND='1' SHOWCONTROLS=true ANIMATIONATSTART='0'");
new_window.document.write("TRANSPARENTATSTART='1' SHOWTRACKER='0' SHOWDISPLAY='0' SHOWSTATUSBAR='1'");
new_window.document.write("VIDEOBORDER3D='0'>");
new_window.document.write("</EMBED>");
new_window.document.write("</OBJECT>");
new_window.document.write("<span style='color: #000000;	font-size: 18px;'>Story: " + Story + "<br>");
new_window.document.write("Title:   " + VideoTitle);
new_window.document.write("</span>");
new_window.document.write("</body></html>");
new_window.document.close(); 
}
//-->
