<search function="run">
  <name>Run</name>
  <description>
    Replacement for the Windows Start menu Run command.<br/>
    <div class="helpboxDescLabels">Example:</div>
    <table class="helpboxDescTable">
  		<tr><td>run winword</td></tr>
  	</table>
  </description>
  <category>Functions</category>
  
  <script>
    function run(q)
    {
      if( nullArgs("run",q) )
        return false;
      else
      {
        try
        {
          openDocument(q);
        }
        catch (e)
        {
          alert("Could not run " + q);
        }
      }
    }
  </script>

  <copyright>
	Copyright (c) 2002 David Bau
	Distributed under the terms of the
	GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
  </copyright>
</search>

