function showToggle(show,hide,item) {
	if(document.getElementById) {
		document.writeln('[<a href="javascript:toggle(\'' + item + '\')"><span id="showlink-' + item + '">' + show + '</span><span id="hidelink-' + item + '" style="display:none;">' + hide + '</span></a>]');
	}
}

function toggle(item) {
	var content = document.getElementById(item);
	var showlink=document.getElementById('showlink-' + item);
	var hidelink=document.getElementById('hidelink-' + item);
	if(content.style.display == 'none') {
		content.style.display = 'block';
		hidelink.style.display = '';
		showlink.style.display = 'none';
	} else {
		content.style.display = 'none';
		hidelink.style.display = 'none';
		showlink.style.display = '';

	}
}