function HelpMeNew(one, way, color) {
    on = 1;
    style = (way == "vis") ? "visibility" : "display";
    chek1 = (way == "vis") ? "visible" : "block";
    chekon = (way == "vis") ? "hidden" : "none";
    chekoff = (way == "vis") ? "visible" : "block";

    var left = "document.getElementById('" + one + "').style." + style;
    if (eval(left) == chek1) eval(left + " = \"" + chekon + "\"");
    else eval(left + " = \"" + chekoff + "\"");
}
tmpHide = 0;
function HideLast(last) {
    //alert(tmpHide + ' ' + last);
    if (tmpHide != 0 && tmpHide != last && document.getElementById(tmpHide).style.visibility == "visible") HelpMeNew(tmpHide, 'vis');
    tmpHide = last;
}
function HighLight(tmpID) {
    if (tmpID == "x1") containerHeight = "900px";
    else if (tmpID == "x2") containerHeight = "700px";
    else if (tmpID == "x3") containerHeight = "1100px";
    if (document.getElementById) {
        if (document.getElementById(tmpID).style.visibility == "hidden") {
            HelpMeNew(tmpID, 'vis');
            HideLast(tmpID);
            document.getElementById("FloorContainer").style.height = containerHeight;
        }
    }
}
