function LeserkommentarShowHid(objID) { objTabLeserkommentar = document.getElementById('TabLeserkommentar'+objID) objTabLeserkommentarDisplay = objTabLeserkommentar.style.display; imgLeserkommentarDisplay = document.getElementById('ImgLeserkommentarDisplay'+objID) if (objTabLeserkommentarDisplay == 'none') { objTabLeserkommentar.style.display = 'inline'; imgLeserkommentarDisplay.src = '../Files/Web/_Layout/LeserkommentarDisplayInline.gif' } else { objTabLeserkommentar.style.display = 'none'; imgLeserkommentarDisplay.src = '../Files/Web/_Layout/LeserkommentarDisplayNone.gif' } }