﻿// JScript File

function navigate_page(targetfile)
{
    window.open(targetfile,"_self");
}

function change_color_Mo(mnuitem)
{
    document.getElementById(mnuitem).style.backgroundColor='white';
    document.getElementById(mnuitem).style.color='black';
}

function change_color_Ml(mnuitem)
{
    document.getElementById(mnuitem).style.backgroundColor='#e54829';
    document.getElementById(mnuitem).style.color='white';
}
