function setBookmark(bookmark_url, bookmark_title) { 
    if (document.all) window.external.AddFavorite(bookmark_url,bookmark_title);
    else alert("STRG-D drücken, um bei Netscape den Bookmark zu setzen.\n(Bitte vorher diese Fenster wieder schliessen!)");
}

function openPopup(path, name, width, height, left, top) {
    new_window = window.open(path, name, "width="+width+",height="+height+",left="+left+",top="+top);
    new_window.focus();
}

function openWin(pfad) {
    new_win = window.open(pfad);
    document.getElementById("iframe_tracking").src = "click_tracking.php?click_target="+pfad;
    new_win.focus();
}

function openHelp(technical_term) {
    new_popup = window.open("help.php?fachwort="+technical_term,"Help","width=300,height=300,left=100,top=100");
    new_popup.focus();
}

function highlightRow(current_row, highlight_class) {
    current_row.className = highlight_class;
}

function lowlightRow(current_row, lowlight_class) {
    current_row.className = lowlight_class;
}
