﻿// JScript ファイル
function m_onclick( obj ) {

    switch ( obj.id ){
        case "m1": next_url = "./index.asp";       break;
        case "m2": next_url = "./oubo.asp";        break;
        case "m3": next_url = "./ent.asp";         break;
        case "m4": next_url = "./how_c.asp";       break;
        case "m5": next_url = "./c_system.asp";    break;
        case "m6": next_url = "./kensyu.asp";      break;
        default  : next_url = "./index.asp";
    }
    self.location = next_url;
}

function m_onclick_2( obj ) {

    switch ( obj.id ){
        case "m1": next_url = "../index.asp";       break;
        case "m2": next_url = "../oubo.asp";        break;
        case "m3": next_url = "../ent.asp";         break;
        case "m4": next_url = "../how_c.asp";       break;
        case "m5": next_url = "../c_system.asp";    break;
        case "m6": next_url = "../kensyu.asp";      break;
        default  : next_url = "../index.asp";
    }
    self.location = next_url;
}


function m_onmouseover( obj ){
    obj.style.backgroundColor = "#acc7e2" ;
}

function m_onmouseout( obj ) {
    obj.style.backgroundColor = "#86afd4" ;
}
