/*	This tid-bit by Rich Fallis, Ecommercial Programming & Design: rfallis@ecommercialpro.com. This script distributed under the terms of the GNU Public Liscense	*/

function toggle_section(section){																			// Hide or show section content
	var block_id = section.id.replace('_toggle','_section');
	var field = section.id.replace('_toggle','');
	var d = document.getElementById(block_id).style.display
	
	if((d == 'block') || (d == 'inline') || (d == '')){
		document.getElementById(section.id).innerHTML = 'more information';
		document.getElementById(block_id).style.display = 'none';
	}
	else{
		document.getElementById(section.id).innerHTML = 'close';
		document.getElementById(block_id).style.display = 'inline';
	}
}
