function toggleApplicationContent(showContent, hideContent)
{
	var showObj;
	var hideObj;
	showObj = document.getElementById(showContent);
	hideObj = document.getElementById(hideContent);	
	hideObj.style.display = 'none';
	showObj.style.display = 'block'; 	
	return;
}