﻿function $(id) {
    return document.getElementById(id)
}

function fouceClean(id) {
    $(id).value = "";
}
function restore(id, rid) {
    if ($(id).value == "") {
        $(id).value = $(rid).value;
    }
}

function changeit(id) {
    var node = document.getElementById(id);
    var sname = document.getElementById(id).getAttribute("className");
    $("quanwen").setAttribute("class", "bian");
    $("gongsi").setAttribute("class", "bian");
    $("zhiwei").setAttribute("class", "bian");
    node.setAttribute("class", "bian1");
}



