function showHideDiv( divId, theLink ){
    var theDiv = document.getElementById( divId );
	var theImg = document.getElementById( divId+"img" );
	if( theDiv.style.display != "block" ){
		theDiv.style.display = "block";
		theImg.src = "images/i_hideinfo.gif";
	}
	else{
		theDiv.style.display = "none";
		theImg.src = "images/i_moreinfo.gif";
	}
	return false;
}