function shownewsmore(id) {
    div = document.getElementById('newsmore' + id);
    img = document.getElementById('moreimage' + id);
    a = document.getElementById('morelink' + id);

    if(img.alt == 'show more...') {
    	text = 'click here to hide the additional information';
        div.style.display = 'block';
        img.src = '/pic/design/foldin.gif';
        img.alt = text;
        a.title = text;
        img.title = text;
    }
    else {
    	text = 'show more...';
        div.style.display = 'none';
        img.src = '/pic/design/foldout.gif';
        img.alt = text;
        a.title = text;
        img.title = text;
    }
}
