home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Freeware / Multimedia / mplayerclassicXP / mplayerc.exe / 1033 / HTML / 346 < prev    next >
Text File  |  2005-03-20  |  61KB  |  1,736 lines

  1. <html>
  2.     <head>
  3.         <title>MPC WebServer</title>
  4.         <meta HTTP-EQUIV="content-type" CONTENT="text/html; charset=[charset]">
  5.         <link rel="stylesheet" type="text/css" href="/default.css">
  6.         <script language="JavaScript" type="text/JavaScript">
  7.  
  8.         // var filedir = "[filedirarg]";
  9.         var filepath = "[filepath]";
  10.         var curpos = [position];
  11.         var length = [duration];
  12.         var state = [state];
  13.         var pbr = [playbackrate];
  14.         var eta = [reloadtime];
  15.         var volume = [volumelevel];
  16.         var muted = [muted]; // -1 no sound
  17.  
  18.         var starttime = (new Date()).getTime();
  19.         var slidersize = 500;
  20.         var sliderbuttonwidth = 15;
  21.         var vsb=10;
  22.         var vss=100;
  23.         var sc=0
  24.         var rdirt
  25.         var AP
  26.         var RL
  27.         var rpt
  28.         var etaup=false
  29.         
  30.         if (eta==0) eta=(state<0 && filepath.length>0)?2:120;
  31.  
  32.         function init()
  33.         {
  34.             if (eta>0) RL=setTimeout("etaup=true; if (re.checked==true) postform(0,'null',0);",1000*eta);
  35.             Live=(length<1);
  36.             starttime=starttime-curpos;
  37.             rdirt=length*pbr/slidersize;
  38.             rdirt=Math.floor(rdirt>1000?1000:(rdirt<300?300:rdirt))
  39.             cpf=document.getElementById("pos")
  40.             cp=document.getElementById("time")
  41.             sas=document.getElementById("SliderAutoScroll")
  42.             re=document.getElementById("reloadenabled")
  43.             s=document.getElementById("slider")
  44.             sb1=document.getElementById("c1")
  45.             sb2=document.getElementById("c2")
  46.             sb3=document.getElementById("c3")
  47.             vs=document.getElementById("v")
  48.             vs1=document.getElementById("v1")
  49.             vs2=document.getElementById("v2")
  50.             vs3=document.getElementById("v3")
  51.             document.getElementById("muted").innerHTML= muted == -1 ? "X" : muted == 1 ? "M" : "  ";
  52.  
  53.             s.height=sb1.height=sb2.height=sb3.height=vs.height=vs1.height=vs2.height=vs3.height=20
  54.             s.width=slidersize+(sb2.width=sliderbuttonwidth);
  55.             vs.width=vss+(vs2.width=vsb);
  56.  
  57.             sb1.onclick=sb2.onclick=sb3.onclick=sliderclick
  58.             vs1.onclick=vs2.onclick=vs3.onclick=vsliderclick
  59.  
  60.             sas.checked=true;
  61.             // g=" "+secondsToTS(curpos,0,true)+" "+x<0?("Buffering %"+(-x-1).toString()):"";
  62.             cp.innerHTML = cpf.value=secondsToTS(curpos,5,false);
  63.             rpt=curpos;
  64.             if (state==2 && pbr!=0)
  65.                 autoplay();
  66.             vupdate(volume,true);
  67.             return update(curpos,true);
  68.         }
  69.         function autoplay(a)
  70.         {
  71.             if (etaup && re.checked==true)
  72.             {
  73.                 etaup=false;
  74.                 RL=setTimeout("etaup=true; if (re.checked==true) postform(0,'null',0);",5000);
  75.             }
  76.             AP=setTimeout('autoplay()',rdirt);
  77.             var ct = (new Date()).getTime();
  78.             var cap=pbr*(ct-starttime);
  79.             if (cap>length && !Live) if (re.checked==true) RL=setTimeout('window.location=window.location',5000);
  80.             cap=((cap>length && !Live)?length:(cap<0?0:cap))
  81.             if (sas.checked==true || a==true)
  82.             {
  83.                 update(cap,true)
  84.                 cpf.value=secondsToTS(cap,5,false);
  85.             }
  86.             var gg = " "+secondsToTS(cap,5,true)+" ";
  87.             cp.innerHTML = gg;
  88.             rpt=cap;
  89.             return true;
  90.         }
  91.         function pad(number, length)
  92.         {
  93.             var str = '' + number;
  94.             while(str.length < length) str = '0' + str;
  95.             return str;
  96.         }
  97.         function secondsToTS(a,b,c)
  98.         {
  99.             var a1 = Math.floor(a/3600000);
  100.             var a2 = Math.floor(a/60000)%60;
  101.             var a3 = Math.floor(a/1000)%60;
  102.             var a4 = Math.floor(a)%1000;
  103.             var a1s = pad(a1.toString(),2);
  104.             var a2s = pad(a2.toString(),2);
  105.             var a3s = pad(a3.toString(),2);
  106.             var a4s = pad(a4.toString(),3);
  107.             switch(b){
  108.             case 1:    return a1s;
  109.             case 2:    return a2s;
  110.             case 3:    return a3s;
  111.             case 4:    return a4s;
  112.             case 5:    //return a1s+":"+a2s+":"+a3s+"."+a4s;
  113.             case 6:    //return ((a1>0?(a1s+":"):"")+a2s+":"+a3s+"."+a4s);
  114.             case 7:    return a1s+":"+a2s+":"+a3s;
  115.             default: return ((a1>0?(a1s+":"):"")+a2s+":"+a3s);
  116.             }
  117.             return "bahh";
  118.         }
  119.         function parsetime(y)
  120.         {
  121.             ts=timesyntax(y)
  122.             t = 0
  123.             p1=ts.indexOf(".")
  124.             p2=ts.indexOf(":")
  125.             p3=ts.indexOf(":",p2+1)
  126.             p4=ts.indexOf(":",p3+1)
  127.             if (p4!=-1 || (p1!=-1 && p2!=-1 && p2>p1) || (p1!=-1 && p3!=-1 && p3>p1)) return -2000;
  128.             p1=(p1 == -1?ts.length+1:p1)
  129.             if (p2 == -1)        t=parseFloat((ts+"      ").substring(0,p1+4));
  130.             if (p2 != -1 && p3 == -1)    t=parseInt(ts.substring(0,p2))*60 + 
  131.                             parseFloat("0"+(ts+"      ").substring(p2+1,p1+4));
  132.             if (p2 != -1 && p3 != -1)    t=parseInt(ts.substring(0,p2))*3600 + 
  133.                             parseInt(ts.substring(p2+1,p3))*60 + 
  134.                             parseFloat("0"+(ts+"      ").substring(p3+1,p1+4));
  135.             return t;
  136.         }
  137.         function update(a,b)
  138.         {
  139.             if (a==-2000) return false;
  140.             if (b){    m=(curpos=((a>length && !Live)?length:(a<0?0:a)))*slidersize/length;    }
  141.             else{    curpos=(m=(a>slidersize?slidersize:(a<0?0:a)))*length/slidersize;    }
  142.             if (m>sb1.width)
  143.                 {sb3.width=slidersize-Math.floor(m);    sb1.width=m;}else
  144.                 {sb1.width=m;        sb3.width=slidersize-sb1.width;}
  145.             return true;
  146.         }
  147.         function sliderclick(e)
  148.         {
  149.             update(    (window.event?window.event.clientX-3:e.clientX) + document.body.scrollLeft -
  150.                 getoffsetx(s) - Math.floor(sliderbuttonwidth/2) + sc,    false);
  151.             cpf.value=secondsToTS(curpos,5,false);
  152.             sas.checked=false;
  153.             return true;
  154.         }
  155.         function getoffsetx(m)
  156.         {
  157.             var x = m.offsetLeft;
  158.             while (m.offsetParent)    {x += (m = m.offsetParent).offsetLeft; }
  159.             return x;
  160.         }
  161.         function posupdate()
  162.         {
  163.             if (event.keyCode < 46 || event.keyCode > 58 || event.keyCode==47)
  164.                 return false;
  165.             self.setTimeout('update(parseFloat(parsetime(cpf.value)),true)',1);
  166.             return true;
  167.         }
  168.  
  169.         function timesyntax(ts)
  170.         {
  171.             var b=""
  172.             for(a=0;a<ts.length;a++)
  173.             {
  174.                 switch(ts.charAt(a)){
  175.                 case "0":    b+="0";break;
  176.                 case "1":    b+="1";break;
  177.                 case "2":    b+="2";break;
  178.                 case "3":    b+="3";break;
  179.                 case "4":    b+="4";break;
  180.                 case "5":    b+="5";break;
  181.                 case "6":    b+="6";break;
  182.                 case "7":    b+="7";break;
  183.                 case "8":    b+="8";break;
  184.                 case "9":    b+="9";break;
  185.                 case ".":    b+=".";break;
  186.                 case ":":    b+=":";break;
  187.                 default:    break;}
  188.             }
  189.             return b;
  190.         }
  191.  
  192.         function vupdate(a,b)
  193.         {
  194.             if (b){    m=(volume=((a>100)?100:(a<0?0:a)))*vss/100;    }
  195.             else{    volume=(m=(a>vss?vss:(a<0?0:a)))*100/vss;    }
  196.             volume=Math.ceil(volume)
  197.             vs1.width=m;
  198.             vs3.width=vss-vs1.width;
  199.             return true;
  200.         }
  201.         function vsliderclick(e)
  202.         {
  203.             return vupdate(    (window.event?window.event.clientX-3:e.clientX) + document.body.scrollLeft -
  204.                 getoffsetx(vs) - Math.floor(vsb/2) + sc,    false);
  205.         }
  206.         function postform(wmc,ext,extv)
  207.         {
  208.             document.getElementById("fwmc").value=wmc;
  209.             document.getElementById("fextra").value=extv;
  210.             document.getElementById("fextra").name=ext;
  211.             document.getElementById("ef").submit();
  212.             return true;
  213.         }
  214.  
  215.         </script>
  216.     </head>
  217.     <body onload="init()">
  218.         <p>
  219.             <strong>
  220.                 Feel free to redesign this page (nice image buttons, more "player-like" layout, etc.), but if you do 
  221.                 alter the page <a href="http://cvs.sourceforge.net/viewcvs.py/guliverkli/guliverkli/src/apps/mplayerc/res/web/">here</a>
  222.                 and not the one you can save from the browser. Post your comments, remarks, ideas, progress into 
  223.                 <a href="https://sourceforge.net/forum/message.php?msg_id=2357783">this topic</a>.
  224.             </strong>
  225.         </p>
  226.         <p>
  227.             File Info
  228.             <noscript>: disabled (component requires javascript)</noscript>
  229.             <br>
  230.             <table border="2" cellspacing="1" cellpadding="4">
  231.                 <tr>
  232.                     <td colspan="4">
  233.                         <nobr>
  234.                             Loaded file: <a href="[browserpath]?path=[filepatharg]&redir=[path]">[filepath]</a>
  235.                             <a href="[browserpath]?path=[filedirarg]">Browse...</a>
  236.                         </nobr>
  237.                     </td>
  238.                 </tr>
  239.                 <tr>
  240.                     <td>
  241.                         Status: [statestring]
  242.                     </td>
  243.                     <td align="center">
  244.                         <table>
  245.                             <tr>
  246.                                 <td id="time">[positionstring]</td>
  247.                                 <td>/</td>
  248.                                 <td>[durationstring]</td>
  249.                             </tr>
  250.                         </table>
  251.                     </td>
  252.                     <td>
  253.                         <input type="checkbox" id="reloadenabled" checked>
  254.                     </td>
  255.                     <td align="center">
  256.                         <noscript>
  257.                             <form action="[commandpath]" method="POST">
  258.                         </noscript>
  259.                         <input type="submit" value="Refresh" name="submit" onclick="window.location=window.location; return false;">
  260.                         <noscript></form></noscript>
  261.                     </td>
  262.                 </tr>
  263.             </table>
  264.         </p>
  265.         <p>
  266.             <form action="[commandpath]" method="POST">
  267.                 <input type="hidden" name="[wmcname]" value="-1"> Goto control
  268.                 <noscript>: (position slider disabled)</noscript>
  269.                 <br>
  270.                 <table border="2" cellspacing="1" cellpadding="4">
  271.                     <tr>
  272.                         <td>
  273.                             <table id="slider" border="0" cellspacing="0" cellpadding="0" width="1" height="1" style="background-image:url('sliderback.gif');">
  274.                                 <tr>
  275.                                     <td><img id="c1" width="1" height="1" src="/1pix.gif" ></td>
  276.                                     <td><img id="c2" width="1" height="1" src="/slidergrip.gif"></td>
  277.                                     <td><img id="c3" width="1" height="1" src="/1pix.gif"></td>
  278.                                 </tr>
  279.                             </table>
  280.                         </td>
  281.                         <td>
  282.                             <input type="checkbox" id="SliderAutoScroll" onclick="if (sas.checked==true) {update(rpt,true); cpf.value=secondsToTS(rpt,5,false)}; return true;">
  283.                         </td>
  284.                         <td>
  285.                             <noscript>Goto...</noscript>
  286.                             <input id="pos" name="position" size="12" onfocus="sas.checked=false;" onkeypress="return posupdate()"
  287.                                 value="[positionstring]">
  288.                         </td>
  289.                         <td>
  290.                             <input type="submit" value="Go!" name="submit" onclick="postform([setposcommand],'position',timesyntax(cpf.value)); return false;">
  291.                         </td>
  292.                     </tr>
  293.                 </table>
  294.             </form>
  295.         </p>
  296.         <p>
  297.             <table border="0" cellspacing="0" cellpadding="0">
  298.                 <tr>
  299.                     <td>
  300.                         Playback control<br>
  301.                         <table border="2" cellspacing="1" cellpadding="4">
  302.                             <tr>
  303.                                 <td>
  304.                                     <noscript>
  305.                                         <form action="[commandpath]" method="POST">
  306.                                             <input type="hidden" name="[wmcname]" value="155">
  307.                                     </noscript>
  308.                                     <input type="submit" value="  > " name="submit" onclick="postform(155,'null',0); return false;">
  309.                                     <noscript></form></noscript>
  310.                                 </td>
  311.                                 <td>
  312.                                     <noscript>
  313.                                         <form action="[commandpath]" method="POST">
  314.                                             <input type="hidden" name="[wmcname]" value="156">
  315.                                     </noscript>
  316.                                     <input type="submit" value=" I I " name="submit" onclick="postform(156,'null',0); return false;">
  317.                                     <noscript></form></noscript>
  318.                                 </td>
  319.                                 <td>
  320.                                     <noscript>
  321.                                         <form action="[commandpath]" method="POST">
  322.                                             <input type="hidden" name="[wmcname]" value="158">
  323.                                     </noscript>
  324.                                     <input type="submit" value=" # " name="submit" onclick="postform(158,'null',0); return false;">
  325.                                     <noscript></form></noscript>
  326.                                 </td>
  327.                                 <td>
  328.                                  
  329.                                 </td>
  330.                                 <td>
  331.                                     <noscript>
  332.                                         <form action="[commandpath]" method="POST">
  333.                                             <input type="hidden" name="[wmcname]" value="164">
  334.                                     </noscript>
  335.                                     <input type="submit" value="I<<" name="submit" onclick="postform(164,'null',0); return false;">
  336.                                     <noscript></form></noscript>
  337.                                 </td>
  338.                                 <td>
  339.                                     <noscript>
  340.                                         <form action="[commandpath]" method="POST">
  341.                                             <input type="hidden" name="[wmcname]" value="159">
  342.                                     </noscript>
  343.                                     <input type="submit" value="<<" name="submit" onclick="postform(159,'null',0); return false;">
  344.                                     <noscript></form></noscript>
  345.                                 </td>
  346.                                 <td>
  347.                                     <noscript>
  348.                                         <form action="[commandpath]" method="POST">
  349.                                             <input type="hidden" name="[wmcname]" value="160">
  350.                                     </noscript>
  351.                                     <input type="submit" value=">>" name="submit" onclick="postform(160,'null',0); return false;">
  352.                                     <noscript></form></noscript>
  353.                                 </td>
  354.                                 <td>
  355.                                     <noscript>
  356.                                         <form action="[commandpath]" method="POST">
  357.                                             <input type="hidden" name="[wmcname]" value="165">
  358.                                     </noscript>
  359.                                     <input type="submit" value=">>I" name="submit" onclick="postform(165,'null',0); return false;">
  360.                                     <noscript></form></noscript>
  361.                                 </td>
  362.                                 <td>
  363.                                      
  364.                                 </td>
  365.                                 <td>
  366.                                     <noscript>
  367.                                         <form action="[commandpath]" method="POST">
  368.                                             <input type="hidden" name="[wmcname]" value="32774">
  369.                                     </noscript>
  370.                                     <input type="submit" value=" <I " name="submit" onclick="postform(32774,'null',0); return false;">
  371.                                     <noscript></form></noscript>
  372.                                 </td>
  373.                                 <td>
  374.                                     <noscript>
  375.                                         <form action="[commandpath]" method="POST">
  376.                                             <input type="hidden" name="[wmcname]" value="32773">
  377.                                     </noscript>
  378.                                     <input type="submit" value=" I> " name="submit" onclick="postform(32773,'null',0); return false;">
  379.                                     <noscript></form></noscript>
  380.                                 </td>
  381.                             </tr>
  382.                         </table>
  383.                     <td width="20">
  384.                          
  385.                     </td>
  386.                     <td>
  387.                         Seek<br>
  388.                         <table border="2" cellspacing="1" cellpadding="4">
  389.                             <tr>
  390.                                 <td>
  391.                                     <noscript>
  392.                                         <form action="[commandpath]" method="POST">
  393.                                             <input type="hidden" name="[wmcname]" value="32777">
  394.                                     </noscript>
  395.                                     <input type="submit" value="< k" name="submit" onclick="postform(32777,'null',0); return false;">
  396.                                     <noscript></form></noscript>
  397.                                 </td>
  398.                                 <td>
  399.                                     <noscript>
  400.                                         <form action="[commandpath]" method="POST">
  401.                                             <input type="hidden" name="[wmcname]" value="32793">
  402.                                     </noscript>
  403.                                     <input type="submit" value="<<<" name="submit" onclick="postform(32793,'null',0); return false;">
  404.                                     <noscript></form></noscript>
  405.                                 </td>
  406.                                 <td>
  407.                                     <noscript>
  408.                                         <form action="[commandpath]" method="POST">
  409.                                             <input type="hidden" name="[wmcname]" value="32791">
  410.                                     </noscript>
  411.                                     <input type="submit" value=" << " name="submit" onclick="postform(32791,'null',0); return false;">
  412.                                     <noscript></form></noscript>
  413.                                 </td>
  414.                                 <td>
  415.                                     <noscript>
  416.                                         <form action="[commandpath]" method="POST">
  417.                                             <input type="hidden" name="[wmcname]" value="32789">
  418.                                     </noscript>
  419.                                     <input type="submit" value="  <  " name="submit" onclick="postform(32789,'null',0); return false;">
  420.                                     <noscript></form></noscript>
  421.                                 </td>
  422.                                 <td>
  423.                                     <noscript>
  424.                                         <form action="[commandpath]" method="POST">
  425.                                             <input type="hidden" name="[wmcname]" value="32790">
  426.                                     </noscript>
  427.                                     <input type="submit" value="  >  " name="submit" onclick="postform(32790,'null',0); return false;">
  428.                                     <noscript></form></noscript>
  429.                                 </td>
  430.                                 <td>
  431.                                     <noscript>
  432.                                         <form action="[commandpath]" method="POST">
  433.                                             <input type="hidden" name="[wmcname]" value="32792">
  434.                                     </noscript>
  435.                                     <input type="submit" value=" >> " name="submit" onclick="postform(32792,'null',0); return false;">
  436.                                     <noscript></form></noscript>
  437.                                 </td>
  438.                                 <td>
  439.                                     <noscript>
  440.                                         <form action="[commandpath]" method="POST">
  441.                                             <input type="hidden" name="[wmcname]" value="32794">
  442.                                     </noscript>
  443.                                     <input type="submit" value=">>>" name="submit" onclick="postform(32794,'null',0); return false;">
  444.                                     <noscript></form></noscript>
  445.                                 </td>
  446.                                 <td>
  447.                                     <noscript>
  448.                                         <form action="[commandpath]" method="POST">
  449.                                             <input type="hidden" name="[wmcname]" value="32778">
  450.                                     </noscript>
  451.                                     <input type="submit" value="k >" name="submit" onclick="postform(32778,'null',0); return false;">
  452.                                     <noscript></form></noscript>
  453.                                 </td>
  454.                             </tr>
  455.                         </table>
  456.                     </td>
  457.                 </tr>
  458.             </table>
  459.         </p>
  460.         <p>
  461.             <table border="0" cellspacing="0" cellpadding="0">
  462.                 <tr>
  463.                     <td>
  464.                         Volume control
  465.                         <noscript>: (integer between 0 & 100)</noscript><br>
  466.                         <table border="2" cellspacing="1" cellpadding="4">
  467.                             <tr>
  468.                                 <td id="muted" align="center" valign="center">
  469.                                     U
  470.                                 </td>
  471.                                 <td>
  472.                                     <noscript>
  473.                                         <form action="[commandpath]" method="POST">
  474.                                             <input type="hidden" name="[wmcname]" value="163">
  475.                                     </noscript>
  476.                                     <input type="submit" value="Mute" name="submit" onclick="postform(163,'null',0); return false;">
  477.                                     <noscript></form></noscript>
  478.                                 </td>
  479.                                 <td>
  480.                                     <table border="0" cellspacing="0" cellpadding="0">
  481.                                         <tr>
  482.                                             <td>
  483.                                                 <table id="v" width="1" height="1" border="0" cellspacing="0" cellpadding="0" style="background-image:url('vbg.gif');">
  484.                                                     <tr>
  485.                                                         <td><img id="v1" src="/1pix.gif" width="1" height="1"></td>
  486.                                                         <td><img id="v2" src="/vbs.gif" width="1" height="1"></td>
  487.                                                         <td><img id="v3" src="/1pix.gif" width="1" height="1"></td>
  488.                                                     </tr>
  489.                                                 </table>
  490.                                             </td>
  491.                                             <td>
  492.                                                 <noscript>
  493.                                                     <form action="[commandpath]" method="POST">
  494.                                                         <input type="hidden" name="[wmcname]" value="[setvolumecommand]">
  495.                                                         <input name="volume" value="[volumelevel]" size="5">
  496.                                                     <!-- FIXME /form -->
  497.                                                 </noscript>
  498.                                             </td>
  499.                                         </tr>
  500.                                     </table>
  501.                                 </td>
  502.                                 <td>
  503.                                     <input type="submit" value="Go!" name="submit" onclick="postform([setvolumecommand],'volume',volume); return true;">
  504.                                     <noscript></form><!-- FIXME --></noscript>
  505.                                 </td>
  506.                                 <td>
  507.                                     <noscript>
  508.                                         <form action="[commandpath]" method="POST">
  509.                                             <input type="hidden" name="[wmcname]" value="162">
  510.                                     </noscript>
  511.                                     <input type="submit" value="Down" name="submit" onclick="postform(162,'null',0); return true;">
  512.                                     <noscript></form></noscript>
  513.                                 </td>
  514.                                 <td>
  515.                                     <noscript>
  516.                                         <form action="[commandpath]" method="POST">
  517.                                             <input type="hidden" name="[wmcname]" value="161">
  518.                                     </noscript>
  519.                                     <input type="submit" value="  Up  " name="submit" onclick="postform(161,'null',0); return true;">
  520.                                     <noscript></form></noscript>
  521.                                 </td>
  522.                             </tr>
  523.                         </table>
  524.                     </td>
  525.                     <td width="20">
  526.                          
  527.                     </td>
  528.                     <td>
  529.                         Playlist
  530.                         <table border="2" cellspacing="1" cellpadding="4">
  531.                             <tr>
  532.                                 <td>
  533.                                     <noscript>
  534.                                         <form action="[commandpath]" method="POST">
  535.                                             <input type="hidden" name="[wmcname]" value="331">
  536.                                     </noscript>
  537.                                     <input type="submit" value="<<" name="submit" onclick="postform(331,'null',0); return false;">
  538.                                     <noscript></form></noscript>
  539.                                 </td>
  540.                                 <td>
  541.                                     <noscript>
  542.                                         <form action="[commandpath]" method="POST">
  543.                                             <input type="hidden" name="[wmcname]" value="332">
  544.                                     </noscript>
  545.                                     <input type="submit" value=">>" name="submit" onclick="postform(332,'null',0); return false;">
  546.                                     <noscript></form></noscript>
  547.                                 </td>
  548.                             </tr>
  549.                         </table>
  550.                     <td width="20">
  551.                          
  552.                     </td>
  553.                     <td>
  554.                         Panic Button<br>
  555.                         <table border="2" cellspacing="1" cellpadding="4">
  556.                             <tr>
  557.                                 <td>
  558.                                     <noscript>
  559.                                         <form action="[commandpath]" method="POST">
  560.                                             <input type="hidden" name="[wmcname]" value="32795">
  561.                                     </noscript>
  562.                                     <input type="submit" value="Boss Key" name="submit" onclick="postform(32795,'null',0); return false;">
  563.                                     <noscript></form></noscript>
  564.                                 </td>
  565.                             </tr>
  566.                         </table>
  567.                     </td>
  568.                     <td width="20">
  569.                          
  570.                     </td>
  571.                     <td>
  572.                         Audio Delay<br>
  573.                         <table border="2" cellspacing="1" cellpadding="4">
  574.                             <tr>
  575.                                 <td>
  576.                                     <noscript>
  577.                                         <form action="[commandpath]" method="POST">
  578.                                             <input type="hidden" name="[wmcname]" value="32822">
  579.                                     </noscript>
  580.                                     <input type="submit" value="-10ms" name="submit" onclick="postform(32822,'null',0); return false;">
  581.                                     <noscript></form></noscript>
  582.                                 </td>
  583.                                 <td>
  584.                                     <noscript>
  585.                                         <form action="[commandpath]" method="POST">
  586.                                             <input type="hidden" name="[wmcname]" value="32821">
  587.                                     </noscript>
  588.                                     <input type="submit" value="+10ms" name="submit" onclick="postform(32821,'null',0); return false;">
  589.                                     <noscript></form></noscript>
  590.                                 </td>
  591.                             </tr>
  592.                         </table>
  593.                     </td>
  594.                 </tr>
  595.             </table>
  596.         </p>
  597.         <!-- sorry chobits, I was thinking of doing this differently :) p>
  598.             <form action="[commandpath]" method="POST">
  599.                 Playlist Editor<br>
  600.                 <table border="2" cellspacing="1" cellpadding="4">
  601.                     <tr align="center">
  602.                         <td colspan="4">
  603.                             <input type="hidden" name="[wmcname]" value="-3">
  604.                             <textarea name="playlist" multiple cols="60" rows="10" wrap="off">[playlist]</textarea>
  605.                         </td>
  606.                     </tr>
  607.                     <tr>
  608.                         <td align="center">
  609.                             Play changes on update 
  610.                             <input type="checkbox" name="playupdate" checked>
  611.                         </td>
  612.                         <td align="center">
  613.                             Playlist playing position 
  614.                             <input type="text" name="playlistposition" size=4 value="[currentplaylistposition]">
  615.                         </td>
  616.                         <td align="center">
  617.                             <input type="submit" value="Update" name="submit">
  618.                         </td>
  619.                     </tr>
  620.                 </table>
  621.             </form>
  622.         </p -->
  623.         <p>
  624.             <table border="0" cellspacing="0" cellpadding="0">
  625.                 <tr>
  626.                     <td>
  627.                         Pan&Scan Move<br>
  628.                         <table border="0" cellspacing="0" cellpadding="0">
  629.                             <tr>
  630.                                 <td>
  631.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  632.                                         <tr>
  633.                                             <td align="center">
  634.                                                 <noscript>
  635.                                                     <form action="[commandpath]" method="POST">
  636.                                                         <input type="hidden" name="[wmcname]" value="251">
  637.                                                 </noscript>
  638.                                                 <input type="submit" value="Up/Left" name="submit" onclick="postform(251,'null',0); return false;">
  639.                                                 <noscript></form></noscript>
  640.                                             </td>
  641.                                         </tr>
  642.                                     </table>
  643.                                 </td>
  644.                                 <td>
  645.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  646.                                         <tr>
  647.                                             <td align="center">
  648.                                                 <noscript>
  649.                                                     <form action="[commandpath]" method="POST">
  650.                                                         <input type="hidden" name="[wmcname]" value="249">
  651.                                                 </noscript>
  652.                                                 <input type="submit" value="Up" name="submit" onclick="postform(249,'null',0); return false;">
  653.                                                 <noscript></form></noscript>
  654.                                             </td>
  655.                                         </tr>
  656.                                     </table>
  657.                                 </td>
  658.                                 <td>
  659.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  660.                                         <tr>
  661.                                             <td align="center">
  662.                                                 <noscript>
  663.                                                     <form action="[commandpath]" method="POST">
  664.                                                         <input type="hidden" name="[wmcname]" value="252">
  665.                                                 </noscript>
  666.                                                 <input type="submit" value="Up/Right" name="submit" onclick="postform(252,'null',0); return false;">
  667.                                                 <noscript></form></noscript>
  668.                                             </td>
  669.                                         </tr>
  670.                                     </table>
  671.                                 </td>
  672.                             </tr>
  673.                             <tr>
  674.                                 <td>
  675.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  676.                                         <tr>
  677.                                             <td align="center">
  678.                                                 <noscript>
  679.                                                     <form action="[commandpath]" method="POST">
  680.                                                         <input type="hidden" name="[wmcname]" value="247">
  681.                                                 </noscript>
  682.                                                 <input type="submit" value="Left" name="submit" onclick="postform(247,'null',0); return false;">
  683.                                                 <noscript></form></noscript>
  684.                                             </td>
  685.                                         </tr>
  686.                                     </table>
  687.                                 </td>
  688.                                 <td>
  689.                                     <table border="2" cellspacing="1" cellpadding="4">
  690.                                         <tr>
  691.                                             <td>
  692.                                                 <noscript>
  693.                                                     <form action="[commandpath]" method="POST">
  694.                                                         <input type="hidden" name="[wmcname]" value="255">
  695.                                                 </noscript>
  696.                                                 <input type="submit" value="Center" name="submit" onclick="postform(255,'null',0); return false;">
  697.                                                 <noscript></form></noscript>
  698.                                             </td>
  699.                                         </tr>
  700.                                     </table>
  701.                                 </td>
  702.                                 <td>
  703.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  704.                                         <tr>
  705.                                             <td align="center">
  706.                                                 <noscript>
  707.                                                     <form action="[commandpath]" method="POST">
  708.                                                         <input type="hidden" name="[wmcname]" value="248">
  709.                                                 </noscript>
  710.                                                 <input type="submit" value="Right" name="submit" onclick="postform(248,'null',0); return false;">
  711.                                                 <noscript></form></noscript>
  712.                                             </td>
  713.                                         </tr>
  714.                                     </table>
  715.                                 </td>
  716.                             </tr>
  717.                             <tr>
  718.                                 <td>
  719.                                     <table border="2" cellspacing="1" cellpadding="4">
  720.                                         <tr>
  721.                                             <td>
  722.                                                 <noscript>
  723.                                                     <form action="[commandpath]" method="POST">
  724.                                                         <input type="hidden" name="[wmcname]" value="253">
  725.                                                 </noscript>
  726.                                                 <input type="submit" value="Down/Left" name="submit" onclick="postform(253,'null',0); return false;">
  727.                                                 <noscript></form></noscript>
  728.                                             </td>
  729.                                         </tr>
  730.                                     </table>
  731.                                 </td>
  732.                                 <td>
  733.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  734.                                         <tr>
  735.                                             <td align="center">
  736.                                                 <noscript>
  737.                                                     <form action="[commandpath]" method="POST">
  738.                                                         <input type="hidden" name="[wmcname]" value="250">
  739.                                                 </noscript>
  740.                                                 <input type="submit" value="Down" name="submit" onclick="postform(250,'null',0); return false;">
  741.                                                 <noscript></form></noscript>
  742.                                             </td>
  743.                                         </tr>
  744.                                     </table>
  745.                                 </td>
  746.                                 <td>
  747.                                     <table border="2" cellspacing="1" cellpadding="4">
  748.                                         <tr>
  749.                                             <td>
  750.                                                 <noscript>
  751.                                                     <form action="[commandpath]" method="POST">
  752.                                                         <input type="hidden" name="[wmcname]" value="254">
  753.                                                 </noscript>
  754.                                                 <input type="submit" value="Down/Right" name="submit" onclick="postform(254,'null',0); return false;">
  755.                                                 <noscript></form></noscript>
  756.                                             </td>
  757.                                         </tr>
  758.                                     </table>
  759.                                 </td>
  760.                             </tr>
  761.                         </table>
  762.                     <td width="30">
  763.                          
  764.                     </td>
  765.                     <td>
  766.                         Pan&Scan Size<br>
  767.                         <table border="0" cellspacing="0" cellpadding="0">
  768.                             <tr>
  769.                                 <td>
  770.                                      
  771.                                 </td>
  772.                                 <td>
  773.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  774.                                         <tr>
  775.                                             <td align="center">
  776.                                                 <noscript>
  777.                                                     <form action="[commandpath]" method="POST">
  778.                                                         <input type="hidden" name="[wmcname]" value="249">
  779.                                                 </noscript>
  780.                                                 <input type="submit" value="Inc Height" name="submit" onclick="postform(249,'null',0); return false;">
  781.                                                 <noscript></form></noscript>
  782.                                             </td>
  783.                                         </tr>
  784.                                     </table>
  785.                                 </td>
  786.                                 <td>
  787.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  788.                                         <tr>
  789.                                             <td align="center">
  790.                                                 <noscript>
  791.                                                     <form action="[commandpath]" method="POST">
  792.                                                         <input type="hidden" name="[wmcname]" value="146">
  793.                                                 </noscript>
  794.                                                 <input type="submit" value="Inc Size" name="submit" onclick="postform(146,'null',0); return false;">
  795.                                                 <noscript></form></noscript>
  796.                                             </td>
  797.                                         </tr>
  798.                                     </table>
  799.                                 </td>
  800.                             </tr>
  801.                             <tr>
  802.                                 <td>
  803.                                     <table border="2" cellspacing="1" cellpadding="4">
  804.                                         <tr>
  805.                                             <td>
  806.                                                 <noscript>
  807.                                                     <form action="[commandpath]" method="POST">
  808.                                                         <input type="hidden" name="[wmcname]" value="247">
  809.                                                 </noscript>
  810.                                                 <input type="submit" value="Dec Width" name="submit" onclick="postform(247,'null',0); return false;">
  811.                                                 <noscript></form></noscript>
  812.                                             </td>
  813.                                         </tr>
  814.                                     </table>
  815.                                 </td>
  816.                                 <td>
  817.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  818.                                         <tr>
  819.                                             <td align="center">
  820.                                                 <noscript>
  821.                                                     <form action="[commandpath]" method="POST">
  822.                                                         <input type="hidden" name="[wmcname]" value="152">
  823.                                                 </noscript>
  824.                                                 <input type="submit" value="Reset" name="submit" onclick="postform(152,'null',0); return false;">
  825.                                                 <noscript></form></noscript>
  826.                                             </td>
  827.                                         </tr>
  828.                                     </table>
  829.                                 </td>
  830.                                 <td>
  831.                                     <table border="2" cellspacing="1" cellpadding="4">
  832.                                         <tr>
  833.                                             <td>
  834.                                                 <noscript>
  835.                                                     <form action="[commandpath]" method="POST">
  836.                                                         <input type="hidden" name="[wmcname]" value="248">
  837.                                                 </noscript>
  838.                                                 <input type="submit" value="Inc Width" name="submit" onclick="postform(248,'null',0); return false;">
  839.                                                 <noscript></form></noscript>
  840.                                             </td>
  841.                                         </tr>
  842.                                     </table>
  843.                             <tr>
  844.                     </td>
  845.                     <td>
  846.                         <table border="2" cellspacing="1" cellpadding="4" width="100%">
  847.                             <tr>
  848.                                 <td align="center">
  849.                                     <noscript>
  850.                                         <form action="[commandpath]" method="POST">
  851.                                             <input type="hidden" name="[wmcname]" value="147">
  852.                                     </noscript>
  853.                                     <input type="submit" value="Dec Size" name="submit" onclick="postform(147,'null',0); return false;">
  854.                                     <noscript></form></noscript>
  855.                                 </td>
  856.                             </tr>
  857.                         </table>
  858.                     </td>
  859.                     <td>
  860.                         <table border="2" cellspacing="1" cellpadding="4" width="100%">
  861.                             <tr>
  862.                                 <td align="center">
  863.                                     <noscript>
  864.                                         <form action="[commandpath]" method="POST">
  865.                                             <input type="hidden" name="[wmcname]" value="250">
  866.                                     </noscript>
  867.                                     <input type="submit" value="Dec Height" name="submit" onclick="postform(250,'null',0); return false;">
  868.                                     <noscript></form></noscript>
  869.                                 </td>
  870.                             </tr>
  871.                         </table>
  872.                     </td>
  873.                 </tr>
  874.             </table>
  875.             </td> </tr> </table>
  876.         </p>
  877.         <p>
  878.             <table border="0" cellspacing="0" cellpadding="0">
  879.                 <tr>
  880.                     <td>
  881.                         Video Frame<br>
  882.                         <table border="0" cellspacing="0" cellpadding="0">
  883.                             <tr>
  884.                                 <td>
  885.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  886.                                         <tr>
  887.                                             <td align="center">
  888.                                                 <noscript>
  889.                                                     <form action="[commandpath]" method="POST">
  890.                                                         <input type="hidden" name="[wmcname]" value="271">
  891.                                                 </noscript>
  892.                                                 <input type="submit" value="Half" name="submit" onclick="postform(271,'null',0); return false;">
  893.                                                 <noscript></form></noscript>
  894.                                             </td>
  895.                                         </tr>
  896.                                     </table>
  897.                                 </td>
  898.                                 <td>
  899.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  900.                                         <tr>
  901.                                             <td align="center">
  902.                                                 <noscript>
  903.                                                     <form action="[commandpath]" method="POST">
  904.                                                         <input type="hidden" name="[wmcname]" value="273">
  905.                                                 </noscript>
  906.                                                 <input type="submit" value="Double" name="submit" onclick="postform(273,'null',0); return false;">
  907.                                                 <noscript></form></noscript>
  908.                                             </td>
  909.                                         </tr>
  910.                                     </table>
  911.                                 </td>
  912.                             </tr>
  913.                             <tr>
  914.                                 <td>
  915.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  916.                                         <tr>
  917.                                             <td align="center">
  918.                                                 <noscript>
  919.                                                     <form action="[commandpath]" method="POST">
  920.                                                         <input type="hidden" name="[wmcname]" value="272">
  921.                                                 </noscript>
  922.                                                 <input type="submit" value="Normal" name="submit" onclick="postform(272,'null',0); return false;">
  923.                                                 <noscript></form></noscript>
  924.                                             </td>
  925.                                         </tr>
  926.                                     </table>
  927.                                 </td>
  928.                                 <td>
  929.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  930.                                         <tr>
  931.                                             <td align="center">
  932.                                                 <noscript>
  933.                                                     <form action="[commandpath]" method="POST">
  934.                                                         <input type="hidden" name="[wmcname]" value="274">
  935.                                                 </noscript>
  936.                                                 <input type="submit" value="Stretch" name="submit" onclick="postform(274,'null',0); return false;">
  937.                                                 <noscript></form></noscript>
  938.                                             </td>
  939.                                         </tr>
  940.                                     </table>
  941.                                 </td>
  942.                             </tr>
  943.                             <tr>
  944.                                 <td>
  945.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  946.                                         <tr>
  947.                                             <td align="center">
  948.                                                 <noscript>
  949.                                                     <form action="[commandpath]" method="POST">
  950.                                                         <input type="hidden" name="[wmcname]" value="275">
  951.                                                 </noscript>
  952.                                                 <input type="submit" value="Inside" name="submit" onclick="postform(275,'null',0); return false;">
  953.                                                 <noscript></form></noscript>
  954.                                             </td>
  955.                                         </tr>
  956.                                     </table>
  957.                                 </td>
  958.                                 <td>
  959.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  960.                                         <tr>
  961.                                             <td align="center">
  962.                                                 <noscript>
  963.                                                     <form action="[commandpath]" method="POST">
  964.                                                         <input type="hidden" name="[wmcname]" value="276">
  965.                                                 </noscript>
  966.                                                 <input type="submit" value="Outside" name="submit" onclick="postform(276,'null',0); return false;">
  967.                                                 <noscript></form></noscript>
  968.                                             </td>
  969.                                         </tr>
  970.                                     </table>
  971.                                 </td>
  972.                             </tr>
  973.                         </table>
  974.                     <td width="30">
  975.                     </td>
  976.                     <td>
  977.                         DVD Menu Controler<br>
  978.                         <table border="0" cellspacing="0" cellpadding="0">
  979.                             <tr>
  980.                                 <td>
  981.                                      
  982.                                 </td>
  983.                                 <td>
  984.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  985.                                         <tr>
  986.                                             <td align="center">
  987.                                                 <noscript>
  988.                                                     <form action="[commandpath]" method="POST">
  989.                                                         <input type="hidden" name="[wmcname]" value="32783">
  990.                                                 </noscript>
  991.                                                 <input type="submit" value="Up" name="submit" onclick="postform(32783,'null',0); return false;">
  992.                                                 <noscript></form></noscript>
  993.                                             </td>
  994.                                         </tr>
  995.                                     </table>
  996.                                 </td>
  997.                                 <td>
  998.                                      
  999.                                 </td>
  1000.                             </tr>
  1001.                             <tr>
  1002.                                 <td>
  1003.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1004.                                         <tr>
  1005.                                             <td align="center">
  1006.                                                 <noscript>
  1007.                                                     <form action="[commandpath]" method="POST">
  1008.                                                         <input type="hidden" name="[wmcname]" value="32781">
  1009.                                                 </noscript>
  1010.                                                 <input type="submit" value="Left" name="submit" onclick="postform(32781,'null',0); return false;">
  1011.                                                 <noscript></form></noscript>
  1012.                                             </td>
  1013.                                         </tr>
  1014.                                     </table>
  1015.                                 </td>
  1016.                                 <td>
  1017.                                     <table border="2" cellspacing="1" cellpadding="4">
  1018.                                         <tr>
  1019.                                             <td>
  1020.                                                 <noscript>
  1021.                                                     <form action="[commandpath]" method="POST">
  1022.                                                         <input type="hidden" name="[wmcname]" value="32785">
  1023.                                                 </noscript>
  1024.                                                 <input type="submit" value="Activate" name="submit" onclick="postform(32785,'null',0); return false;">
  1025.                                                 <noscript></form></noscript>
  1026.                                             </td>
  1027.                                         </tr>
  1028.                                     </table>
  1029.                                 </td>
  1030.                                 <td>
  1031.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1032.                                         <tr>
  1033.                                             <td align="center">
  1034.                                                 <noscript>
  1035.                                                     <form action="[commandpath]" method="POST">
  1036.                                                         <input type="hidden" name="[wmcname]" value="32782">
  1037.                                                 </noscript>
  1038.                                                 <input type="submit" value="Right" name="submit" onclick="postform(32782,'null',0); return false;">
  1039.                                                 <noscript></form></noscript>
  1040.                                             </td>
  1041.                                         </tr>
  1042.                                     </table>
  1043.                                 </td>
  1044.                             </tr>
  1045.                             <tr>
  1046.                                 <td>
  1047.                                     <table border="2" cellspacing="1" cellpadding="4">
  1048.                                         <tr>
  1049.                                             <td>
  1050.                                                 <noscript>
  1051.                                                     <form action="[commandpath]" method="POST">
  1052.                                                         <input type="hidden" name="[wmcname]" value="32786">
  1053.                                                 </noscript>
  1054.                                                 <input type="submit" value="Back" name="submit" onclick="postform(32786,'null',0); return false;">
  1055.                                                 <noscript></form></noscript>
  1056.                                             </td>
  1057.                                         </tr>
  1058.                                     </table>
  1059.                                 </td>
  1060.                                 <td>
  1061.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1062.                                         <tr>
  1063.                                             <td align="center">
  1064.                                                 <noscript>
  1065.                                                     <form action="[commandpath]" method="POST">
  1066.                                                         <input type="hidden" name="[wmcname]" value="32784">
  1067.                                                 </noscript>
  1068.                                                 <input type="submit" value="Down" name="submit" onclick="postform(32784,'null',0); return false;">
  1069.                                                 <noscript></form></noscript>
  1070.                                             </td>
  1071.                                         </tr>
  1072.                                     </table>
  1073.                                 </td>
  1074.                                 <td>
  1075.                                     <table border="2" cellspacing="1" cellpadding="4">
  1076.                                         <tr>
  1077.                                             <td>
  1078.                                                 <noscript>
  1079.                                                     <form action="[commandpath]" method="POST">
  1080.                                                         <input type="hidden" name="[wmcname]" value="32787">
  1081.                                                 </noscript>
  1082.                                                 <input type="submit" value="Leave" name="submit" onclick="postform(32787,'null',0); return false;">
  1083.                                                 <noscript></form></noscript>
  1084.                                             </td>
  1085.                                         </tr>
  1086.                                     </table>
  1087.                                 </td>
  1088.                         </table>
  1089.                     <td width="30">
  1090.                          
  1091.                     </td>
  1092.                     <td>
  1093.                         Misc<br>
  1094.                         <table border="0" cellspacing="0" cellpadding="0">
  1095.                             <tr>
  1096.                                 <td>
  1097.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1098.                                         <tr>
  1099.                                             <td align="center">
  1100.                                                 <noscript>
  1101.                                                     <form action="[commandpath]" method="POST">
  1102.                                                         <input type="hidden" name="[wmcname]" value="131">
  1103.                                                 </noscript>
  1104.                                                 <input type="submit" value="Open File" name="submit" onclick="postform(131,'null',0); return false;">
  1105.                                                 <noscript></form></noscript>
  1106.                                             </td>
  1107.                                         </tr>
  1108.                                     </table>
  1109.                                 </td>
  1110.                                 <td>
  1111.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1112.                                         <tr>
  1113.                                             <td align="center">
  1114.                                                 <noscript>
  1115.                                                     <form action="[commandpath]" method="POST">
  1116.                                                         <input type="hidden" name="[wmcname]" value="132">
  1117.                                                 </noscript>
  1118.                                                 <input type="submit" value="Open DVD" name="submit" onclick="postform(132,'null',0); return false;">
  1119.                                                 <noscript></form></noscript>
  1120.                                             </td>
  1121.                                         </tr>
  1122.                                     </table>
  1123.                                 </td>
  1124.                                 <td>
  1125.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1126.                                         <tr>
  1127.                                             <td align="center">
  1128.                                                 <noscript>
  1129.                                                     <form action="[commandpath]" method="POST">
  1130.                                                         <input type="hidden" name="[wmcname]" value="225">
  1131.                                                 </noscript>
  1132.                                                 <input type="submit" value="Open Device" name="submit" onclick="postform(225,'null',0); return false;">
  1133.                                                 <noscript></form></noscript>
  1134.                                             </td>
  1135.                                         </tr>
  1136.                                     </table>
  1137.                                 </td>
  1138.                             </tr>
  1139.                             <tr>
  1140.                                 <td>
  1141.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1142.                                         <tr>
  1143.                                             <td align="center">
  1144.                                                 <noscript>
  1145.                                                     <form action="[commandpath]" method="POST">
  1146.                                                         <input type="hidden" name="[wmcname]" value="313">
  1147.                                                 </noscript>
  1148.                                                 <input type="submit" value="Save As" name="submit" onclick="postform(313,'null',0); return false;">
  1149.                                                 <noscript></form></noscript>
  1150.                                             </td>
  1151.                                         </tr>
  1152.                                     </table>
  1153.                                 </td>
  1154.                                 <td>
  1155.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1156.                                         <tr>
  1157.                                             <td align="center">
  1158.                                                 <noscript>
  1159.                                                     <form action="[commandpath]" method="POST">
  1160.                                                         <input type="hidden" name="[wmcname]" value="32823">
  1161.                                                 </noscript>
  1162.                                                 <input type="submit" value="Close" name="submit" onclick="postform(32823,'null',0); return false;">
  1163.                                                 <noscript></form></noscript>
  1164.                                             </td>
  1165.                                         </tr>
  1166.                                     </table>
  1167.                                 </td>
  1168.                                 <td>
  1169.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1170.                                         <tr>
  1171.                                             <td align="center">
  1172.                                                 <noscript>
  1173.                                                     <form action="[commandpath]" method="POST">
  1174.                                                         <input type="hidden" name="[wmcname]" value="135">
  1175.                                                 </noscript>
  1176.                                                 <input type="submit" value="Exit" name="submit" onclick="postform(135,'null',0); return false;">
  1177.                                                 <noscript></form></noscript>
  1178.                                             </td>
  1179.                                         </tr>
  1180.                                     </table>
  1181.                                 </td>
  1182.                             </tr>
  1183.                             <tr>
  1184.                                 <td>
  1185.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1186.                                         <tr>
  1187.                                             <td align="center">
  1188.                                                 <noscript>
  1189.                                                     <form action="[commandpath]" method="POST">
  1190.                                                         <input type="hidden" name="[wmcname]" value="222">
  1191.                                                 </noscript>
  1192.                                                 <input type="submit" value="Go To" name="submit" onclick="postform(222,'null',0); return false;">
  1193.                                                 <noscript></form></noscript>
  1194.                                             </td>
  1195.                                         </tr>
  1196.                                     </table>
  1197.                                 </td>
  1198.                                 <td>
  1199.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1200.                                         <tr>
  1201.                                             <td align="center">
  1202.                                                 <noscript>
  1203.                                                     <form action="[commandpath]" method="POST">
  1204.                                                         <input type="hidden" name="[wmcname]" value="154">
  1205.                                                 </noscript>
  1206.                                                 <input type="submit" value="Options" name="submit" onclick="postform(154,'null',0); return false;">
  1207.                                                 <noscript></form></noscript>
  1208.                                             </td>
  1209.                                         </tr>
  1210.                                     </table>
  1211.                                 </td>
  1212.                                 <td>
  1213.                                     <table border="2" cellspacing="1" cellpadding="4" width="100%">
  1214.                                         <tr>
  1215.                                             <td align="center">
  1216.                                                 <noscript>
  1217.                                                     <form action="[commandpath]" method="POST">
  1218.                                                         <input type="hidden" name="[wmcname]" value="283">
  1219.                                                 </noscript>
  1220.                                                 <input type="submit" value="Properties" name="submit" onclick="postform(283,'null',0); return false;">
  1221.                                                 <noscript></form></noscript>
  1222.                                             </td>
  1223.                                         </tr>
  1224.                                     </table>
  1225.                                 </td>
  1226.                         </table>
  1227.                     </td>
  1228.                 </tr>
  1229.             </table>
  1230.         </p>
  1231.         <p>
  1232.             <table border="0" cellspacing="0" cellpadding="0">
  1233.                 <tr>
  1234.                     <td>
  1235.                         Zoom control<br>
  1236.                         <table border="2" cellspacing="1" cellpadding="4">
  1237.                             <tr>
  1238.                                 <td>
  1239.                                     <noscript>
  1240.                                         <form action="[commandpath]" method="POST">
  1241.                                             <input type="hidden" name="[wmcname]" value="142">
  1242.                                     </noscript>
  1243.                                     <input type="submit" value="Zoom 50%" name="submit" onclick="postform(142,'null',0); return false;">
  1244.                                     <noscript></form></noscript>
  1245.                                 </td>
  1246.                                 <td>
  1247.                                     <noscript>
  1248.                                         <form action="[commandpath]" method="POST">
  1249.                                             <input type="hidden" name="[wmcname]" value="143">
  1250.                                     </noscript>
  1251.                                     <input type="submit" value="Zoom 100%" name="submit" onclick="postform(143,'null',0); return false;">
  1252.                                     <noscript></form></noscript>
  1253.                                 </td>
  1254.                                 <td>
  1255.                                     <noscript>
  1256.                                         <form action="[commandpath]" method="POST">
  1257.                                             <input type="hidden" name="[wmcname]" value="144">
  1258.                                     </noscript>
  1259.                                     <input type="submit" value="Zoom 200%" name="submit" onclick="postform(144,'null',0); return false;">
  1260.                                     <noscript></form></noscript>
  1261.                                 </td>
  1262.                             </tr>
  1263.                         </table>
  1264.                     </td>
  1265.                     <td width="20">
  1266.                          
  1267.                     </td>
  1268.                     <td>
  1269.                         Fullscreen control<br>
  1270.                         <table border="2" cellspacing="1" cellpadding="4">
  1271.                             <tr>
  1272.                                 <td>
  1273.                                     <noscript>
  1274.                                         <form action="[commandpath]" method="POST">
  1275.                                             <input type="hidden" name="[wmcname]" value="141">
  1276.                                     </noscript>
  1277.                                     <input type="submit" value="Normal" name="submit" onclick="postform(141,'null',0); return false;">
  1278.                                     <noscript></form></noscript>
  1279.                                 </td>
  1280.                                 <td>
  1281.                                     <noscript>
  1282.                                         <form action="[commandpath]" method="POST">
  1283.                                             <input type="hidden" name="[wmcname]" value="32788">
  1284.                                     </noscript>
  1285.                                     <input type="submit" value="w/o res.change" name="submit" onclick="postform(32788,'null',0); return false;">
  1286.                                     <noscript></form></noscript>
  1287.                                 </td>
  1288.                             </tr>
  1289.                         </table>
  1290.                     </td>
  1291.                 </tr>
  1292.             </table>
  1293.         </p>
  1294.         <p>
  1295.             <table border="0" cellspacing="0" cellpadding="0">
  1296.                 <tr>
  1297.                     <td>
  1298.                         Player views<br>
  1299.                         <table border="2" cellspacing="1" cellpadding="4">
  1300.                             <tr>
  1301.                                 <td>
  1302.                                     <noscript>
  1303.                                         <form action="[commandpath]" method="POST">
  1304.                                             <input type="hidden" name="[wmcname]" value="308">
  1305.                                     </noscript>
  1306.                                     <input type="submit" value="Minimal" name="submit" onclick="postform(308,'null',0); return false;">
  1307.                                     <noscript></form></noscript>
  1308.                                 </td>
  1309.                                 <td>
  1310.                                     <noscript>
  1311.                                         <form action="[commandpath]" method="POST">
  1312.                                             <input type="hidden" name="[wmcname]" value="309">
  1313.                                     </noscript>
  1314.                                     <input type="submit" value="Compact" name="submit" onclick="postform(309,'null',0); return false;">
  1315.                                     <noscript></form></noscript>
  1316.                                 </td>
  1317.                                 <td>
  1318.                                     <noscript>
  1319.                                         <form action="[commandpath]" method="POST">
  1320.                                             <input type="hidden" name="[wmcname]" value="310">
  1321.                                     </noscript>
  1322.                                     <input type="submit" value="Normal" name="submit" onclick="postform(310,'null',0); return false;">
  1323.                                     <noscript></form></noscript>
  1324.                                 </td>
  1325.                             </tr>
  1326.                         </table>
  1327.                     </td>
  1328.                     <td width="20">
  1329.                     </td>
  1330.                     <td>
  1331.                         Detachable Controlls<br>
  1332.                         <table border="2" cellspacing="1" cellpadding="4">
  1333.                             <tr>
  1334.                                 <td>
  1335.                                     <noscript>
  1336.                                         <form action="[commandpath]" method="POST">
  1337.                                             <input type="hidden" name="[wmcname]" value="242">
  1338.                                     </noscript>
  1339.                                     <input type="submit" value="Playlist" name="submit" onclick="postform(242,'null',0); return false;">
  1340.                                     <noscript></form></noscript>
  1341.                                 </td>
  1342.                                 <td>
  1343.                                     <noscript>
  1344.                                         <form action="[commandpath]" method="POST">
  1345.                                             <input type="hidden" name="[wmcname]" value="236">
  1346.                                     </noscript>
  1347.                                     <input type="submit" value="Subresync" name="submit" onclick="postform(236,'null',0); return false;">
  1348.                                     <noscript></form></noscript>
  1349.                                 </td>
  1350.                                 <td>
  1351.                                     <noscript>
  1352.                                         <form action="[commandpath]" method="POST">
  1353.                                             <input type="hidden" name="[wmcname]" value="244">
  1354.                                     </noscript>
  1355.                                     <input type="submit" value="Capture" name="submit" onclick="postform(244,'null',0); return false;">
  1356.                                     <noscript></form></noscript>
  1357.                                 </td>
  1358.                             </tr>
  1359.                         </table>
  1360.                     </td>
  1361.                 </tr>
  1362.             </table>
  1363.             <table border="2" cellspacing="1" cellpadding="4">
  1364.                 <tr>
  1365.                     <td>
  1366.                         <noscript>
  1367.                             <form action="[commandpath]" method="POST">
  1368.                                 <input type="hidden" name="[wmcname]" value="267">
  1369.                         </noscript>
  1370.                         <input type="submit" value="Caption&Menu" name="submit" onclick="postform(267,'null',0); return false;">
  1371.                         <noscript></form></noscript>
  1372.                     </td>
  1373.                     <td>
  1374.                         <noscript>
  1375.                             <form action="[commandpath]" method="POST">
  1376.                                 <input type="hidden" name="[wmcname]" value="136">
  1377.                         </noscript>
  1378.                         <input type="submit" value="Seeker" name="submit" onclick="postform(136,'null',0); return false;">
  1379.                         <noscript></form></noscript>
  1380.                     </td>
  1381.                     <td>
  1382.                         <noscript>
  1383.                             <form action="[commandpath]" method="POST">
  1384.                                 <input type="hidden" name="[wmcname]" value="137">
  1385.                         </noscript>
  1386.                         <input type="submit" value="Controls" name="submit" onclick="postform(137,'null',0); return false;">
  1387.                         <noscript></form></noscript>
  1388.                     </td>
  1389.                     <td>
  1390.                         <noscript>
  1391.                             <form action="[commandpath]" method="POST">
  1392.                                 <input type="hidden" name="[wmcname]" value="138">
  1393.                         </noscript>
  1394.                         <input type="submit" value="Information" name="submit" onclick="postform(138,'null',0); return false;">
  1395.                         <noscript></form></noscript>
  1396.                     </td>
  1397.                     <td>
  1398.                         <noscript>
  1399.                             <form action="[commandpath]" method="POST">
  1400.                                 <input type="hidden" name="[wmcname]" value="139">
  1401.                         </noscript>
  1402.                         <input type="submit" value="Statistics" name="submit" onclick="postform(139,'null',0); return false;">
  1403.                         <noscript></form></noscript>
  1404.                     </td>
  1405.                     <td>
  1406.                         <noscript>
  1407.                             <form action="[commandpath]" method="POST">
  1408.                                 <input type="hidden" name="[wmcname]" value="140">
  1409.                         </noscript>
  1410.                         <input type="submit" value="Status" name="submit" onclick="postform(140,'null',0); return false;">
  1411.                         <noscript></form></noscript>
  1412.                     </td>
  1413.                 </tr>
  1414.             </table>
  1415.         </p>
  1416.         <p>
  1417.             <table border="0" cellspacing="0" cellpadding="0">
  1418.                 <tr>
  1419.                     <td>
  1420.                         Generic Audio/Subtitles<br>
  1421.                         <table border="2" cellspacing="1" cellpadding="4">
  1422.                             <tr>
  1423.                                 <td>
  1424.                                     <noscript>
  1425.                                         <form action="[commandpath]" method="POST">
  1426.                                             <input type="hidden" name="[wmcname]" value="32800">
  1427.                                     </noscript>
  1428.                                     <input type="submit" value="< Audio" name="submit" onclick="postform(32800,'null',0); return false;">
  1429.                                     <noscript></form></noscript>
  1430.                                 </td>
  1431.                                 <td>
  1432.                                     <noscript>
  1433.                                         <form action="[commandpath]" method="POST">
  1434.                                             <input type="hidden" name="[wmcname]" value="32799">
  1435.                                     </noscript>
  1436.                                     <input type="submit" value="Audio >" name="submit" onclick="postform(32799,'null',0); return false;">
  1437.                                     <noscript></form></noscript>
  1438.                                 </td>
  1439.                                 <td>
  1440.                                      
  1441.                                 </td>
  1442.                                 <td>
  1443.                                     <noscript>
  1444.                                         <form action="[commandpath]" method="POST">
  1445.                                             <input type="hidden" name="[wmcname]" value="32802">
  1446.                                     </noscript>
  1447.                                     <input type="submit" value="< Subtitle" name="submit" onclick="postform(32802,'null',0); return false;">
  1448.                                     <noscript></form></noscript>
  1449.                                 </td>
  1450.                                 <td>
  1451.                                     <noscript>
  1452.                                         <form action="[commandpath]" method="POST">
  1453.                                             <input type="hidden" name="[wmcname]" value="32801">
  1454.                                     </noscript>
  1455.                                     <input type="submit" value="Subtitle >" name="submit" onclick="postform(32801,'null',0); return false;">
  1456.                                     <noscript></form></noscript>
  1457.                                 </td>
  1458.                             </tr>
  1459.                         </table>
  1460.                     </td>
  1461.                     <td width="20">
  1462.                          
  1463.                     </td>
  1464.                     <td>
  1465.                         <!-- p TODO -->
  1466.                         OGM Audio/Subtitles<br>
  1467.                         <table border="2" cellspacing="1" cellpadding="4">
  1468.                             <tr>
  1469.                                 <td>
  1470.                                     <noscript>
  1471.                                         <form action="[commandpath]" method="POST">
  1472.                                             <input type="hidden" name="[wmcname]" value="32803">
  1473.                                     </noscript>
  1474.                                     <input type="submit" value="< Audio" name="submit" onclick="postform(32803,'null',0); return false;">
  1475.                                     <noscript></form></noscript>
  1476.                                 </td>
  1477.                                 <td>
  1478.                                     <noscript>
  1479.                                         <form action="[commandpath]" method="POST">
  1480.                                             <input type="hidden" name="[wmcname]" value="32804">
  1481.                                     </noscript>
  1482.                                     <input type="submit" value="Audio >" name="submit" onclick="postform(32804,'null',0); return false;">
  1483.                                     <noscript></form></noscript>
  1484.                                 </td>
  1485.                                 <td>
  1486.                                      
  1487.                                 </td>
  1488.                                 <td>
  1489.                                     <noscript>
  1490.                                         <form action="[commandpath]" method="POST">
  1491.                                             <input type="hidden" name="[wmcname]" value="32806">
  1492.                                     </noscript>
  1493.                                     <input type="submit" value="< Subtitle" name="submit" onclick="postform(32806,'null',0); return false;">
  1494.                                     <noscript></form></noscript>
  1495.                                 </td>
  1496.                                 <td>
  1497.                                     <noscript>
  1498.                                         <form action="[commandpath]" method="POST">
  1499.                                             <input type="hidden" name="[wmcname]" value="32805">
  1500.                                     </noscript>
  1501.                                     <input type="submit" value="Subtitle >" name="submit" onclick="postform(32805,'null',0); return false;">
  1502.                                     <noscript></form></noscript>
  1503.                                 </td>
  1504.                             </tr>
  1505.                         </table>
  1506.                     </td>
  1507.                 </tr>
  1508.             </table>
  1509.         </p>
  1510.         <p>
  1511.             <table border="0" cellspacing="0" cellpadding="0">
  1512.                 <tr>
  1513.                     <td>
  1514.                         Subtitles<br>
  1515.                         <table border="2" cellspacing="1" cellpadding="4">
  1516.                             <tr>
  1517.                                 <td>
  1518.                                     <noscript>
  1519.                                         <form action="[commandpath]" method="POST">
  1520.                                             <input type="hidden" name="[wmcname]" value="134">
  1521.                                     </noscript>
  1522.                                     <input type="submit" value="Load" name="submit" onclick="postform(134,'null',0); return false;">
  1523.                                     <noscript></form></noscript>
  1524.                                 </td>
  1525.                                 <td>
  1526.                                     <noscript>
  1527.                                         <form action="[commandpath]" method="POST">
  1528.                                             <input type="hidden" name="[wmcname]" value="239">
  1529.                                     </noscript>
  1530.                                     <input type="submit" value="Save" name="submit" onclick="postform(239,'null',0); return false;">
  1531.                                     <noscript></form></noscript>
  1532.                                 </td>
  1533.                             </tr>
  1534.                         </table>
  1535.                     </td>
  1536.                     <td width="20">
  1537.                          
  1538.                     </td>
  1539.                     <td>
  1540.                         DVD Angles/Audio/Subtitles<br>
  1541.                         <table border="2" cellspacing="1" cellpadding="4">
  1542.                             <tr>
  1543.                                 <td>
  1544.                                     <noscript>
  1545.                                         <form action="[commandpath]" method="POST">
  1546.                                             <input type="hidden" name="[wmcname]" value="32808">
  1547.                                     </noscript>
  1548.                                     <input type="submit" value="< Angle" name="submit" onclick="postform(32808,'null',0); return false;">
  1549.                                     <noscript></form></noscript>
  1550.                                 </td>
  1551.                                 <td>
  1552.                                     <noscript>
  1553.                                         <form action="[commandpath]" method="POST">
  1554.                                             <input type="hidden" name="[wmcname]" value="32807">
  1555.                                     </noscript>
  1556.                                     <input type="submit" value="Angle >" name="submit" onclick="postform(32807,'null',0); return false;">
  1557.                                     <noscript></form></noscript>
  1558.                                 </td>
  1559.                                 <td>
  1560.                                      
  1561.                                 </td>
  1562.                                 <td>
  1563.                                     <noscript>
  1564.                                         <form action="[commandpath]" method="POST">
  1565.                                             <input type="hidden" name="[wmcname]" value="32810">
  1566.                                     </noscript>
  1567.                                     <input type="submit" value="< Audio" name="submit" onclick="postform(32810,'null',0); return false;">
  1568.                                     <noscript></form></noscript>
  1569.                                 </td>
  1570.                                 <td>
  1571.                                     <noscript>
  1572.                                         <form action="[commandpath]" method="POST">
  1573.                                             <input type="hidden" name="[wmcname]" value="32809">
  1574.                                     </noscript>
  1575.                                     <input type="submit" value="Audio >" name="submit" onclick="postform(32809,'null',0); return false;">
  1576.                                     <noscript></form></noscript>
  1577.                                 </td>
  1578.                                 <td>
  1579.                                      
  1580.                                 </td>
  1581.                                 <td>
  1582.                                     <noscript>
  1583.                                         <form action="[commandpath]" method="POST">
  1584.                                             <input type="hidden" name="[wmcname]" value="32812">
  1585.                                     </noscript>
  1586.                                     <input type="submit" value="< Subtitle" name="submit" onclick="postform(32812,'null',0); return false;">
  1587.                                     <noscript></form></noscript>
  1588.                                 </td>
  1589.                                 <td>
  1590.                                     <noscript>
  1591.                                         <form action="[commandpath]" method="POST">
  1592.                                             <input type="hidden" name="[wmcname]" value="32811">
  1593.                                     </noscript>
  1594.                                     <input type="submit" value="Subtitle >" name="submit" onclick="postform(32811,'null',0); return false;">
  1595.                                     <noscript></form></noscript>
  1596.                                 </td>
  1597.                             </tr>
  1598.                         </table>
  1599.                     </td>
  1600.                 </tr>
  1601.             </table>
  1602.         </p>
  1603.         <p>
  1604.             <table border="0" cellspacing="0" cellpadding="0">
  1605.                 <tr>
  1606.                     <td>
  1607.                         DVD Menus<br>
  1608.                         <table border="2" cellspacing="1" cellpadding="4">
  1609.                             <tr>
  1610.                                 <td>
  1611.                                     <noscript>
  1612.                                         <form action="[commandpath]" method="POST">
  1613.                                             <input type="hidden" name="[wmcname]" value="166">
  1614.                                     </noscript>
  1615.                                     <input type="submit" value="Title" name="submit" onclick="postform(166,'null',0); return false;">
  1616.                                     <noscript></form></noscript>
  1617.                                 </td>
  1618.                                 <td>
  1619.                                     <noscript>
  1620.                                         <form action="[commandpath]" method="POST">
  1621.                                             <input type="hidden" name="[wmcname]" value="167">
  1622.                                     </noscript>
  1623.                                     <input type="submit" value="Root" name="submit" onclick="postform(167,'null',0); return false;">
  1624.                                     <noscript></form></noscript>
  1625.                                 </td>
  1626.                                 <td>
  1627.                                     <noscript>
  1628.                                         <form action="[commandpath]" method="POST">
  1629.                                             <input type="hidden" name="[wmcname]" value="168">
  1630.                                     </noscript>
  1631.                                     <input type="submit" value="Subtitle" name="submit" onclick="postform(168,'null',0); return false;">
  1632.                                     <noscript></form></noscript>
  1633.                                 </td>
  1634.                                 <td>
  1635.                                     <noscript>
  1636.                                         <form action="[commandpath]" method="POST">
  1637.                                             <input type="hidden" name="[wmcname]" value="169">
  1638.                                     </noscript>
  1639.                                     <input type="submit" value="Audio" name="submit" onclick="postform(169,'null',0); return false;">
  1640.                                     <noscript></form></noscript>
  1641.                                 </td>
  1642.                                 <td>
  1643.                                     <noscript>
  1644.                                         <form action="[commandpath]" method="POST">
  1645.                                             <input type="hidden" name="[wmcname]" value="170">
  1646.                                     </noscript>
  1647.                                     <input type="submit" value="Angle" name="submit" onclick="postform(170,'null',0); return false;">
  1648.                                     <noscript></form></noscript>
  1649.                                 </td>
  1650.                                 <td>
  1651.                                     <noscript>
  1652.                                         <form action="[commandpath]" method="POST">
  1653.                                             <input type="hidden" name="[wmcname]" value="171">
  1654.                                     </noscript>
  1655.                                     <input type="submit" value="Chapter" name="submit" onclick="postform(171,'null',0); return false;">
  1656.                                     <noscript></form></noscript>
  1657.                                 </td>
  1658.                             </tr>
  1659.                         </table>
  1660.                     </td>
  1661.                     <td width="20">
  1662.                          
  1663.                     </td>
  1664.                     <td>
  1665.                         Media Player Classic Menu's
  1666.                         <table border="2" cellspacing="1" cellpadding="4">
  1667.                             <tr>
  1668.                                 <td>
  1669.                                     <noscript>
  1670.                                         <form action="[commandpath]" method="POST">
  1671.                                             <input type="hidden" name="[wmcname]" value="32798">
  1672.                                     </noscript>
  1673.                                     <input type="submit" value="Filters" name="submit" onclick="postform(32798,'null',0); return false;">
  1674.                                     <noscript></form></noscript>
  1675.                                 </td>
  1676.                                 <td>
  1677.                                     <noscript>
  1678.                                         <form action="[commandpath]" method="POST">
  1679.                                             <input type="hidden" name="[wmcname]" value="32796">
  1680.                                     </noscript>
  1681.                                     <input type="submit" value="Player (short)" name="submit" onclick="postform(32796,'null',0); return false;">
  1682.                                     <noscript></form></noscript>
  1683.                                 </td>
  1684.                                 <td>
  1685.                                     <noscript>
  1686.                                         <form action="[commandpath]" method="POST">
  1687.                                             <input type="hidden" name="[wmcname]" value="32797">
  1688.                                     </noscript>
  1689.                                     <input type="submit" value="Player (long)" name="submit" onclick="postform(32797,'null',0); return false;">
  1690.                                     <noscript></form></noscript>
  1691.                                 </td>
  1692.                             </tr>
  1693.                         </table>
  1694.                     </td>
  1695.                 </tr>
  1696.             </table>
  1697.         </p>
  1698.         <p>
  1699.             Always On Top<br>
  1700.             <table border="2" cellspacing="1" cellpadding="4">
  1701.                 <tr>
  1702.                     <td>
  1703.                         <noscript>
  1704.                             <form action="[commandpath]" method="POST">
  1705.                                 <input type="hidden" name="[wmcname]" value="32827">
  1706.                         </noscript>
  1707.                         <input type="submit" value="Always" name="submit" onclick="postform(32827,'null',0); return false;">
  1708.                         <noscript></form></noscript>
  1709.                     </td>
  1710.                     <td>
  1711.                         <noscript>
  1712.                             <form action="[commandpath]" method="POST">
  1713.                                 <input type="hidden" name="[wmcname]" value="32828">
  1714.                         </noscript>
  1715.                         <input type="submit" value="While Playing" name="submit" onclick="postform(32828,'null',0); return false;">
  1716.                         <noscript></form></noscript>
  1717.                     </td>
  1718.                     <td>
  1719.                         <noscript>
  1720.                             <form action="[commandpath]" method="POST">
  1721.                                 <input type="hidden" name="[wmcname]" value="32826">
  1722.                         </noscript>
  1723.                         <input type="submit" value="Never" name="submit" onclick="postform(32826,'null',0); return false;">
  1724.                         <noscript></form></noscript>
  1725.                     </td>
  1726.                 </tr>
  1727.             </table>
  1728.             <form id="ef" action="[commandpath]" method="POST"> <!-- FIXME: POSTing does not want to work with mozilla -->
  1729.                 <input id="fwmc" type="hidden" name="[wmcname]" value="-2">
  1730.                 <input id="fextra" type="hidden" name="extra" value="">
  1731.             </form>
  1732.         </p>
  1733.     </body>
  1734. </html>
  1735. [debug]
  1736.