function gotoPage(url) {
    location.href=url;
}
function overLink(element,statusText,color) {
    cursortype=(browser.isIE?(browser.isIE6?"pointer":"hand"):"pointer");
    if (element.style) {
        element.style.background=color;
        element.style.cursor=cursortype;
    }
    window.status=statusText;
}
function outLink(element,color) {
    if (element.style) {
        element.style.background=color;
        element.style.cursor='default';
    }
    window.status=window.defaultStatus;
}
