﻿/*==============================================================================================
In these code file are the standard javascript functions for the layout of the pages
==============================================================================================*/

// <summary>
// Show the team link collection
// </summary>
function ShowTeams()
{
	document.getElementById('LinkCollection').style.display = 'inline';
}

// <summary>
// Show the team link collection and the a spacer for the sub navigation of the page
// </summary>
function ShowTeamsWithSubNav()
{
	document.getElementById('LinkCollection').style.display = 'inline';
	document.getElementById('LinkCollectionSpacer').style.display = 'block';
}