<!--function changeColor (item, c, statusText, d) {    item.style.backgroundColor = c;	item.style.color = d;    window.status = (statusText == null) ? '' : statusText;    // note: net6/mac doesn't seem to like the "hand" cursor (others work though)    item.style.cursor = "hand";}// a separate function so that one could modify it to take custom// target locations for framed documentsfunction goTo (url) {    document.location.href = url;}//-->