/**
 *
 *     This file is part of Jahia Enterprise Edition v6 - Early Adopter Package
 *
 *     Copyright (C) 2002-2009 Jahia. All rights reserved.
 *
 * 	  Jahia delivers the first Open Source Web Content Integration Software
 * 	  by combining Enterprise Web Content Management
 * 	  with Document Management and Portal features.
 *
 *     The Jahia Enterprise Edition - Early Adopter package is delivered ON AN "AS IS" BASIS,
 *     WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED.
 *
 *    	Jahia Enterprise Edition - Early Adopter Package CANNOT be used for
 *    	any production environment and is strictly and exclusively delivered to You by Jahia
 *    	for test and development purpose.
 *
 *     Jahia Enterprise Edition must be used in accordance with the terms contained
 *     in a separate license agreement between you and Jahia (JSEL).
 *
 *     If you are unsure which license is appropriate
 *     for your use, please contact the sales department at sales@jahia.com.
 */

function ShowHideLayer(boxID) {
	/* Obtain reference for the selected boxID layer and its button */
	var box = document.getElementById("collapseBox"+boxID);
	
	/* If the selected box is currently invisible, show it */
	if(box.style.display == "none" || box.style.display=="") {
		box.style.display = "block";
	}
	/* otherwise hide it */
	else {
		box.style.display = "none";
	}
}