﻿// JScript File

function menu(id){
var obj = document.getElementById(id);
var HL = document.getElementById('ctl00_mesc').value;
if(HL!=null){
document.getElementById(HL).style.color="#d60021";
}
for(var i=1; i<=6; i++){
document.getElementById(i).style.display = "none";
document.getElementById("ar"+i).className="ac";
}

obj.style.display = "block";
document.getElementById("ar"+id).className="ao";
}
