<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
	<title>Untitled document</title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
imgout=new Image(9,9); imgin=new Image(9,9); /////////////////BEGIN USER EDITABLE/////////////////////////////// imgout.src=&quot;images/u.gif&quot; mce_src=&quot;images/u.gif&quot;; imgin.src=&quot;images/d.gif&quot; mce_src=&quot;images/d.gif&quot;; ///////////////END USER EDITABLE/////////////////////////////////// //this switches expand collapse icons function filter(imagename,objectsrc){ if (document.images){ document.images[imagename].src=eval(objectsrc+&quot;.src&quot;); } } //show OR hide funtion depends on if element is shown or hidden function shoh(id) { if (document.getElementById) { // DOM3 = IE5, NS6 if (document.getElementById(id).style.display == &quot;none&quot;){ document.getElementById(id).style.display = &#39;block&#39;; filter((&quot;img&quot;+id),&#39;imgin&#39;); } else { filter((&quot;img&quot;+id),&#39;imgout&#39;); document.getElementById(id).style.display = &#39;none&#39;; } } else { if (document.layers) { if (document.id.display == &quot;none&quot;){ document.id.display = &#39;block&#39;; filter((&quot;img&quot;+id),&#39;imgin&#39;); } else { filter((&quot;img&quot;+id),&#39;imgout&#39;); document.id.display = &#39;none&#39;; } } else { if (document.all.id.style.visibility == &quot;none&quot;){ document.all.id.style.display = &#39;block&#39;; } else { filter((&quot;img&quot;+id),&#39;imgout&#39;); document.all.id.style.display = &#39;none&#39;; } } } } 
</body>
</html>

