﻿function goup_method() {
    document.getElementById("goDown").style.visibility = "hidden";
    document.getElementById("goDown").style.display = "none";
    document.getElementById("goUp").style.visibility = "visible";
    document.getElementById("goUp").style.display = "block";
    $(".menu").toggle("blind", { direction: "vertical" }, 800);
}


function godown_method() {
    document.getElementById("goDown").style.visibility = "visible";
    document.getElementById("goDown").style.display = "block";
    document.getElementById("goUp").style.display = "none";
    document.getElementById("goUp").style.visibility = "hidden";
    $(".menu").toggle("blind", { direction: "vertical" }, 800);
}

function show(s) {
    $("#" + s).toggle("blind", { direction: "vertical" }, 800);
}

function hide(s) {
    $("#" + s).toggle("blind", { direction: "vertical" }, 800);
}

function addtofav() {
    if (window.sidebar) {
        window.sidebar.addPanel(document.title, location.href, "");
    }
    else if (window.external) {
        window.external.AddFavorite(location.href, document.title);
    }
    else if (window.opera && window.print) {
        return true;
    }
}
