//***********************//
//function tabswap
//Swaps the tabs so it hides the inactive ones and shows the active ones
//@params
// -tabID - denotes which tab was clicked to show
// -oldID - denotes which tab was active and needs to be hidden
//***********************//
function tabSwap(tabID, oldID)
{ 
	var displayTab = document.getElementById(tabID);
	displayTab.style.display = "block";
	
	var hideTab = document.getElementById(oldID);
	hideTab.style.display = "none";
}