/**********************************************************************************/
/***		Client-side JavaScript function library																	***/
/***		Copyright Apache Solutions Ltd 2007																			***/
/***		(unauthorised use of this code will result in prosecution by law)				***/
/**********************************************************************************/

//
//	Hides or shows the given element:
//
function Toggle(id) {
	if (document.getElementById) {
		var el = document.getElementById(id);
		el.style.visibility = (el.style.visibility == 'hidden' || el.style.visibility == '') ? 'visible' : 'hidden';
	} 
} 

//
//	Shows the first element and hides the other:
//
function Switch(selected_id, deselected_id) {
	if (document.getElementById) {
		document.getElementById(selected_id).style.display = 'block';
		document.getElementById(deselected_id).style.display = 'none';
	} 
} 


//
// Script end.
//
