// Blue Discus Systems (BDS) Collapsing Containers - Version 1.1.1 - JavaScript
//
// Copyright 2005 Blue Discus Systems LLC - www.BlueDiscusSystems.com
//
// License is granted to freely use these Java Scripts for personal or commercial use.
// You may NOT, however, sell these Java Scripts except if written permission is provided
//		to you by Blue Discus Systems LLC.
//
// Contact: garyz@BlueDiscusSystems.com
//
// We would appreciate it if you would credit Blue Discus Systems for these scripts
//     and provide a link to our main website at www.BlueDiscusSystems.com
// 

var BDS_ToggleContainerExpandImagePath = 'Images/folderplus.gif';
var BDS_ToggleContainerCollapseImagePath = 'Images/folderminus.gif';

function BDS_ToggleContainer(contIndex) {
	var contId='Container'+contIndex;
	var btnId='ContainerBtn'+contIndex;
	if (document.getElementById(contId).style.display=='none') {
		document.getElementById(contId).style.display='';
		document.getElementById(btnId).src=BDS_ToggleContainerCollapseImagePath;
		document.getElementById(btnId).alt='Click to Collapse';
	} else {
		document.getElementById(contId).style.display='none';
		document.getElementById(btnId).src=BDS_ToggleContainerExpandImagePath;
		document.getElementById(btnId).alt='Click to Expand';
	}	
}