// JavaScript Document
// コンピュータ情報の表示
function viewPort() {

    // 変数の宣言
    var obj;

    // 非表示
    hiddenFadeUnit(document.body);

    // 比較
    obj = document.getElementById("Port");

    // 表示切替
    if (obj.style.display == "none") {
        obj.style.display = "";
    } else {
        obj.style.display = "none";
    }
}
// コンピュータの表示
function viewComp() {

    // 変数の宣言
    var obj;

    // 非表示
    hiddenFadeUnit(document.body);

    // 比較
    obj = document.getElementById("comp");

    // 表示切替
    if (obj.style.display == "none") {
        obj.style.display = "";
    } else {
        obj.style.display = "none";
    }
}
// アプリケーションの表示
function viewApp() {

    // 変数の宣言
    var obj;

    // 非表示
    hiddenFadeUnit(document.body);

    // 比較
    obj = document.getElementById("appl");

    // 表示切替
    if (obj.style.display == "none") {
        obj.style.display = "";
    } else {
        obj.style.display = "none";
    }
}
// アプリケーションの表示
function viewDown() {

    // 変数の宣言
    var obj;

    // 非表示
    hiddenFadeUnit(document.body);

    // 比較
    obj = document.getElementById("down");

    // 表示切替
    if (obj.style.display == "none") {
        obj.style.display = "";
    } else {
        obj.style.display = "none";
    }
}

