﻿// JScript File


function showSubMenu(id)
{

	var cItem	= document.getElementById(id);
	
	cItem.style.visibility='visible';
  //document.all[id].visibility = "visible";
}


function btnHilite(cID,high)
{
    //var cItem	= document.getElementById(cID);
        //alert(cID);
    if (high)
    {
       //document.all[cID].style.background='#ffffff';
       document.all[cID].className= "mnuTDHigh";
    }
    else
    {
    document.all[cID].className= "mnuTDLow";
       //document.all[cID].style.background='';
    }
}

function setTblHeight(id,height)
{
   document.all[id].style.height=height;
}

function showDiv(cItem)
{
  var cItem	= document.getElementById(cItem);
	
	cItem.style.visibility='visible';
}
function hideDiv(cItem)
{
  var cItem	= document.getElementById(cItem);
	
	cItem.style.visibility='hidden';
}