   function open_media(file_path){
         OpenWindow=window.open("", "newwin", "height=350,width=400,toolbar=no,scrollbars=no,menubar=no");
         OpenWindow.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'");
         OpenWindow.document.write("'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>");
         OpenWindow.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>");
         OpenWindow.document.write("<head>");
         OpenWindow.document.write("<title>ZeroSeconds Video</title>");
         OpenWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'/>");
         OpenWindow.document.write("</head>");
         OpenWindow.document.write("<body bgcolor='000000'>");
         OpenWindow.document.write("<div style='width:310px; height:auto; margin:auto; border:0px #FFFFFF solid;'>");
         OpenWindow.document.write("<OBJECT id='mediaPlayer' width='320' height='285'");
         OpenWindow.document.write("classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'");
         OpenWindow.document.write("codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'");
         OpenWindow.document.write("standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>");
         OpenWindow.document.write("<param name='fileName' value='"+file_path+"'>");
         OpenWindow.document.write("<param name='animationatStart' value='true'>");
         OpenWindow.document.write("<param name='transparentatStart' value='true'>");
         OpenWindow.document.write("<param name='autoStart' value='true'>");
         OpenWindow.document.write("<param name='showControls' value='true'>");
         OpenWindow.document.write("<param name='loop' value='false'>");
         OpenWindow.document.write("<EMBED type='application/x-mplayer2'");
         OpenWindow.document.write("pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'");
         OpenWindow.document.write("id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'");
         OpenWindow.document.write("bgcolor='darkblue' showcontrols='true' showtracker='-1'");
         OpenWindow.document.write("showdisplay='0' showstatusbar='-1' videoborder3d='-1' width='320' height='285'");
         OpenWindow.document.write("src='"+file_path+"' autostart='false' designtimesp='5311' loop='true'>");
         OpenWindow.document.write("</EMBED>");
         OpenWindow.document.write("</OBJECT>");
         OpenWindow.document.write("</div>");
         OpenWindow.document.write("</body>");
         OpenWindow.document.write("</html>");
         OpenWindow.document.close();
         self.name="main";
      }
      function open_quick(file_path){
         OpenWindow=window.open("", "newwin", "height=300,width=400,toolbar=no,scrollbars=no,menubar=no");
         OpenWindow.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN'");
         OpenWindow.document.write("'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>");
         OpenWindow.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>");
         OpenWindow.document.write("<head>");
         OpenWindow.document.write("<title>ZeroSeconds Video</title>");
         OpenWindow.document.write("</head>");
         OpenWindow.document.write("<body bgcolor='000000'>");
         OpenWindow.document.write("<div style='width:310px; height:auto; margin:auto; border:0px #FFFFFF solid;'>");
         OpenWindow.document.write("<OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width='320'");
         OpenWindow.document.write("height='255' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>");
         OpenWindow.document.write("<param name='src' value='"+file_path+"'>");
         OpenWindow.document.write("<param name='autoplay' value='true'>");
         OpenWindow.document.write("<param name='controller' value='true'>");
         OpenWindow.document.write("<param name='loop' value='false'>");
         OpenWindow.document.write("<EMBED src='"+file_path+"' width='320' height='255' autoplay='true'");
         OpenWindow.document.write("controller='true' loop='false' pluginspage='http://www.apple.com/quicktime/download/'>");
         OpenWindow.document.write("</EMBED>");
         OpenWindow.document.write("</OBJECT>");
         OpenWindow.document.write("</div>");
         OpenWindow.document.write("</body>");
         OpenWindow.document.write("</html>");
         OpenWindow.document.close();
         self.name="main";
      }