<!-- script code, Copyright 2001 ZZEE -->

<script type="text/javascript">

<!--

function exp_coll(i, i2, s)

{

 if (s.style.display == 'block')

 {

   s.style.display = 'none';

   i.style.display = 'none';

   i2.style.display = 'inline';

 }

 else

 {

   s.style.display = 'block';

   i.style.display = 'inline';

   i2.style.display = 'none';

 }

 return false;

}

function exp_all()
{
<!--#for var="item"--><!--#if var="open"--><!--#if var="children"-->
  ul_<!--#echo var="item"-->.style.display="block";
  im_<!--#echo var='item'-->.style.display="inline";
  im2_<!--#echo var='item'-->.style.display="none";
<!--#endif--><!--#endif--><!--#endfor-->
  return false;

}


function coll_all()
{
<!--#for var="item"--><!--#if var="open"--><!--#if var="children"-->
  ul_<!--#echo var="item"-->.style.display="none";
  im_<!--#echo var='item'-->.style.display="none";
  im2_<!--#echo var='item'-->.style.display="inline";
<!--#endif--><!--#endif--><!--#endfor-->
  return false;

}


-->

</script>



<!-- EXPAND AND COLLAPSE ALL BUTTONS -->


<form>
<input type="submit" style="width:150px;" onclick="return exp_all();" value="&gt;&gt; Expand All" />
<input type="submit" style="width:150px;" onclick="return coll_all();" value="&lt;&lt; Collapse All" />
</form>

<!-- MENU GOES -->


<ul style="list-style-type:none; ">
<!--#for var="item"-->

	<!--#if var="open"-->


		<!--#if var="children"-->
			<li>

			<a href="#" style="text-decoration: none;" onclick="return exp_coll(im_<!--#echo var="item"-->, im2_<!--#echo var="item"-->, ul_<!--#echo var="item"-->);" title="Click to expand/collapse">
				<span id="im_<!--#echo var='item'-->" style="border:solid black 1px; height:25px; width:25px;">&#160;-&#160;</span>
				<span id="im2_<!--#echo var='item'-->" style="border:solid black 1px; height:25px; width:25px; display:none;">&#160;+&#160;</span>
			</a>
	
			<a href="<!--#echo var='link'-->">
			<!--#echo var="numbering"--><!--#echo var="text"--></a>

			<ul style="list-style-type:none; " id="ul_<!--#echo var="item"-->">
			<script type="text/javascript">
				ul_<!--#echo var="item"-->.style.display="none";
				im_<!--#echo var='item'-->.style.display="none";
				im2_<!--#echo var='item'-->.style.display="inline";
			</script>

		<!--#else-->
			<li>
			<span style="width:25px;">&#160;</span>
			<a href="<!--#echo var='link'-->">
			<!--#echo var="numbering"--><!--#echo var="text"--></a>
			</li>
		<!--#endif-->

	<!--#else-->
		<!--#if var="children"-->
			</ul>
			</li>
		<!--#endif-->
	<!--#endif-->

<!--#endfor-->

</ul>