﻿
function changeIdStyle(idName)
{
  /*依輸入的ID名, 改寫其樣式 用於菜單條的MasterPage的指定*/
  
  var obj = document.getElementById(idName);
  if(obj)
  {
    obj.style.cssText = "background-color: #aac0cd; border-left: solid 6px Yellow;"
  }
  
}