﻿
function menuover(id) {
    document.getElementById(id).bgColor = "#999999";
    document.getElementById(id).style.cursor = "hand";
}

function mouseHand(id) {
    document.getElementById(id).style.cursor = "hand";
}
function Productclick(id, type) {
    window.navigate("ProductsDetail.aspx?id="+id+"&type="+type);

}
function menuout(id) {
    document.getElementById(id).bgColor = "#1c3889";
}

function menuclick(id) {
    window.navigate(id + ".aspx");
}
function caseClick(id) {
    window.open("CaseDetail.aspx?id=" + id);
}
function signmove(id) {
    var left = id + "left";
    document.getElementById(left).style.display = "block";
    var right = id + "right";
    document.getElementById(right).style.display = "block";
}
function signout(id) {
    var left = id + "left";
    document.getElementById(left).style.display = "none";
    var right = id + "right";
    document.getElementById(right).style.display = "none";
}
function proDetail(id) {
    window.open("ProductsDetail.aspx?id=" + id);
}
