function showMore( entryID, entryLink, htmlObj ) {
    extTextDivID = ( 'extText' + ( entryID ) );
    extLinkDivID = ( 'extLink' + ( entryID ) );
    if(  document.getElementById ) {
	if(  document.getElementById( extTextDivID ).style.display ) {
	    if(  entryLink != 0 ) {
		document.getElementById( extTextDivID ).style.display = "block";
		document.getElementById( extLinkDivID ).style.display = "none";
		htmlObj.blur();
	    } else { 
		document.getElementById( extTextDivID ).style.display = "none";
		document.getElementById( extLinkDivID ).style.display = "block";
	    }
	} else {
	    location.href = entryLink;
	    return true;
	}
    } else {
	location.href = entryLink;
	return true;
    }
}

function showMoreComments( entryID, entryLink, htmlObj ) {
    extTextDivID = ( 'extCommentText' + ( entryID ) );
    extLinkDivID = ( 'extCommentLink' + ( entryID ) );
    if(  document.getElementById ) {
	if(  document.getElementById( extTextDivID ).style.display ) {
	    if(  entryLink != 0 ) {
		document.getElementById( extTextDivID ).style.display = "block";
		document.getElementById( extLinkDivID ).style.display = "none";
		htmlObj.blur();
	    } else { 
		document.getElementById( extTextDivID ).style.display = "none";
		document.getElementById( extLinkDivID ).style.display = "block";
		htmlObj.blur();
	    }
	} else {
	    location.href = entryLink;
	    return true;
	}
    } else {
	location.href = entryLink;
	return true;
    }
}
