// flooble Expandable Content header start
// Expandable content script from flooble.com.
// For more information please visit:
//   http://www.flooble.com/scripts/expand.php
// Copyright 2002 Animus Pactum Consulting Inc.
//----------------------------------------------
var ie4 = false; if(document.all) { ie4 = true; }
function getObject(id) { if (ie4) { return document.all[id]; } else { return document.getElementById(id); } }
function toggle(link, divId, title)
	{
		var lText = link.innerHTML;
		var d = getObject(divId);
		var TITLE1 = title;
		
 		if (lText == '[+]' + TITLE1)
 			{
 			link.innerHTML = '[-]' + TITLE1;
 			d.style.display = 'block';
 			}
 		else
 			{
 			link.innerHTML = '[+]' + TITLE1;
 			d.style.display = 'none';
 			}
 	}
 
/*

<!-- flooble Expandable Content box start -->
<div style="border: 1px solid #000000; padding: 0px; background: #EEEEEE; ">

<table border="0" cellspacing="0" cellpadding="2" width="100%" style="background: #000000; color: #FFFFFF; ">
	<tr>
	  <td>
About Circus Camp
	  </td>
	  <td align="right">
[<a title="show/hide" id="exp1229664735_link" href="javascript: void(0);" onclick="toggle(this, 'exp1229664735');"  style="text-decoration: none; color: #FFFFFF; ">−</a>]
	  </td>
	</tr>
</table>

<div id="exp1229664735" style="padding: 3px;">
This is the content in this box. <strong>HTML</strong> is ok, as well as <img src="http://www.mrgreggy.com/imgs/MG-AC_Squr_150px.png"> images
</div>

</div>

*/                