/* 	
	HIDE/SHOW FUNCTIONS
	Created 2004-04-12 by Robert Karlsson <robert /AT/ i2studios.com> for i2 STUDIOS
	Visit http://www.i2studios.com for additional details
	This script is free and can be used freely. For details about license, refer to http://www.i2studios.com/php/policy.php

	//NOTE: this script assumes your images to hide and show is called plus.gif (to open) and minus.gif (to close)

*/

//indicator=the name of the image that was clicked, object=the object to show or hide
function toggleDisplay(indicator, object){
	if (object.style.display=='') {
		document.getElementById(object).style.display='none';
		document.getElementById(indicator).src='/images/plus.gif';
	}
	else {
		document.getElementById(object).style.display='';
		document.getElementById(indicator).src='/images/minus.gif';
	}
}