//	############################################################
//	Functions to change the "display" status of objects to block
//	############################################################
function show_element(id)
{ 
	ID = document.getElementById(id); 
 
	ID.style.display = "block"; 
}

//	###########################################################
//	Functions to change the "display" status of objects to none
//	###########################################################
function hide_element(id)
{ 
	ID = document.getElementById(id); 
 
	ID.style.display = "none"; 
}

//	###################################################
//	Functions to toggle the "display" status of objects
//	###################################################
function toggle_display_element(id)
{ 
	ID = document.getElementById(id); 
 
	if ( ID.style.display == "none" )
	{
		ID.style.display = "block"; 
	}
	else if ( ID.style.display == "block" )
	{
		ID.style.display = "none"; 
	}
	else
	{
		ID.style.display = "block"; 
	}
}

function message(message)
{
	alert(message);
}
