<search function="clc">
  <name>Calculate</name>
  <description>
    Evaluate numeric expressions.<br/>
    <div class="helpboxDescLabels">Examples:</div>
    <table class="helpboxDescTable">
  		<tr><td>clc (4+3)*(2+2)</td></tr>
      <tr><td>clc pow(e, pi/2)</td></tr>
  	</table>
  </description>
  <category>Functions</category>
  
  <script><![CDATA[
    function clc(q)
    {
      if( nullArgs("clc",q) )
        return false;
      else
        calculate(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>
