eg_on = new Image ( );
eg_off = new Image ( );


eg_on.src = "images/listn2.gif";
eg_off.src = "images/listn1.gif";


function button_on ( imgId )
{
  if ( document.images )
  {
    butOn = eval ( imgId + "_on.src" );
    document.getElementById(imgId).src = butOn;
  }
}

function button_off ( imgId )
{
  if ( document.images )
  {
    butOff = eval ( imgId + "_off.src" );
    document.getElementById(imgId).src = butOff;
  }
}
