	function toggle(theID)
	{
		if (document.getElementById)
		{
			// this is the way the standards work
			var style2 = document.getElementById(theID).style;
			style2.display = style2.display? "":"none";
		}
		else if (document.all)
		{
			// this is the way old msie versions work
			var style2 = document.all[theID].style;
			style2.display = style2.display? "":"none";
		}
		else if (document.layers)
		{
			// this is the way nn4 works
			var style2 = document.layers[theID].style;
			style2.display = style2.display? "":"none";
		}
	}


   function activate(theName) {
      document.images[theName].src = "graphics/"+theName+"_pressed.gif";
   }

   function deactivate(theName) {
      document.images[theName].src = "graphics/"+theName+".jpg";
   }



	function openimage(url, vHeight, vWidth)
	{
		picwin = window.open(url,'','scrollbars=yes,menubar=yes,height='+vHeight+',width='+vWidth+',resizable=yes,toolbar=no,location=no,status=no');
		picwin.document.write('<html><head><title>Full Size</title></head><body>');
		picwin.document.write('<p><a href="javascript:window.close()">close window</a> | You may need to scroll to see the entire image.</p>');
		picwin.document.write('<div><img src="'+url+'" /></div>');
		picwin.document.write('</body></html>');
		picwin.document.close();
	}