// ********************* Begin Function to Hide ID by changing 'display' attribute to none ********************* //
function hideDisplay(id)
{//Hides sections of the page
	if(document.getElementById || document.all)
	{
		if(document.getElementById)
			var obj = document.getElementById(id);
		else
			var obj = document.all(id);
		
		obj.style.display = "none";
	}
}
// ********************* End Function to Hide ID by changing 'display' attribute to none ********************* //

// ********************* Begin Function to Show ID by changing 'display' attribute to block ********************* //
function showBlock(id)
{//Shows sections of the page
	if(document.getElementById || document.all)
	{
		if(document.getElementById)
			var obj = document.getElementById(id);
		else
			var obj = document.all(id);
		
		obj.style.display = "block";
	}
}
// ********************* End Function to Show ID by changing 'display' attribute to block ********************* //

// ********************* Begin Function to Show ID by changing 'display' attribute to inline ********************* //
function showInline(id)
{//Shows sections of the page
	if(document.getElementById || document.all)
	{
		if(document.getElementById)
			var obj = document.getElementById(id);
		else
			var obj = document.all(id);
		
		obj.style.display = "inline";
	}
}
// ********************* End Function to Show ID by changing 'display' attribute to inline ********************* //

// ********************* Begin Function to Hide ID by changing 'visibility' attribute to hidden ********************* //
function hideVisibility(id)
{//Hides sections of the page
	if(document.getElementById || document.all)
	{
		if(document.getElementById)
			var obj = document.getElementById(id);
		else
			var obj = document.all(id);
		
		obj.style.visibility = "hidden";
	}
}
// ********************* End Function to Hide ID by changing 'visibility' attribute to hidden ********************* //

// ********************* Begin Function to Show ID by changing 'visibility' attribute to visible ********************* //
function showVisibility(id)
{//Hides sections of the page
	if(document.getElementById || document.all)
	{
		if(document.getElementById)
			var obj = document.getElementById(id);
		else
			var obj = document.all(id);
		
		obj.style.visibility = "visible";
	}
}
// ********************* End Function to Show ID by changing 'visibility' attribute to visible ********************* //