function toggleVis(span,img){
	if (document.getElementById(span).style.display == 'none'){
		document.getElementById(span).style.display = 'block';
	if (img != null){document.getElementById(img).src = 'img/td_nav_down.gif';}
	}
	else {
		document.getElementById(span).style.display = 'none';
	if (img != null){document.getElementById(img).src = 'img/td_nav_right.gif';}
	}
}

