// This script shows and hides expanded search options 

function showHide(shID) {
	if (document.getElementById(shID)) {
		if (document.getElementById(shID+'-show').style.display != 'none') {
			document.getElementById(shID+'-show').style.display = 'none';
			document.getElementById(shID).style.display = 'block';
			document.getElementById("content-minor").style.marginTop = '133px';
		}
		else {
			document.getElementById(shID+'-show').style.display = 'inline';
			document.getElementById(shID).style.display = 'none';
			document.getElementById("content-minor").style.marginTop = '0px';
		}
	}
}

// TODO-Phase2 - Have removed the search options until Phase 2 which will include TABs for search.
//// This script sets expanded search options link to visible
//// If JavaScript disabled, user will not see the option and can perform basic search

//function showSearchOptions() {
//	document.getElementById("search-expand").style.display = 'inline';
//}