function fOpenClose(iLink, oCurrentElement) {
	oLink = document.getElementById('subLinks_' + iLink)
	if (oLink.style.display == 'none') {
		oLink.style.display = 'block';
		oCurrentElement.children(0).src = '/images/down.gif';
	} else {
		oLink.style.display = 'none';
		oCurrentElement.children(0).src = '/images/left.gif';
	}

}  