/* =========================================================================

JavaScript Source File -- Created with SAPIEN Technologies PrimalScript 2009

NAME: 

AUTHOR: Nickolai , 
DATE  : 3/28/2011

COMMENT: 

============================================================================ */
function RevealTier (theTier) {
	theDiv = document.getElementById(theTier);
	if (theDiv.style.display=='block') {
	theDiv.style.display ='none';
	theAnchor = '#'+theTier + '2'
	location.href = theAnchor;
	}
	else {
		theDiv.style.display ='block';
	}
}
