if (document.images) {
}

/* funksjon som viser tekst på statuslinjen. */

function dm(msgStr) {
    window.status = msgStr;
    document.returnValue = true;
}


function dmim(msgStr) {
    document.returnValue = false;
    var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
    if (showMsg) {
        window.status = msgStr;
        document.returnValue = true;
    }
}
