function gotoName(link) {
    theElement = document.getElementById('header');
    if(theElement.offsetHeight)  {
	theOffset = theElement.offsetHeight;
    } else {
	if(theElement.style.pixelheight) {
	    theOffset = theElement.style.pixelHeight;
	} else {
	    theOffset = 0;
	}
    }
    theElement = document.getElementById('navbar');
    if(theElement.offsetHeight)  {
	theOffset = theOffset + theElement.offsetHeight;
    } else {
	if(theElement.style.pixelheight) {
	    theOffset = theOffset + theElement.style.pixelHeight;
	} else {
	    theOffset = theOffset + 0;
	}
    }
    location = "#" + link;
    window.scrollBy(0, -theOffset);   
}

