//
// form-magic.js
//
// Functions for form manipulation.
//
// @author James Ronan { james.ronan@pipex.net }
//


//
// Function: hideElementById(String).
// 
// Hides the Element specified by ID
// 
// @parma		String				- Element ID to hide.
//
function hideElementById(element_id) {

	document.getElementById(element_id).style.display='none';

} // End of Function: hideElementById(String)




//
// Function: showElementById(String).
// 
// Shows the Element specified by ID
// 
// @parma		String				- Element ID to show
//
function showElementById(element_id) {

	document.getElementById(element_id).style.display='block';

} // End of Function: showElementById(String)

