/* Copyright (C) 2003 by Home of the Brave
   Web http://home.of.the.brave.de
   eMail info@brave.de */
/* $Revision: 2.1 $ $Date: 2003/10/07 15:30:22 $ */


/* owner: Stefan.Scholl@brave.de */

function buttonOn (name)
{
  if (document.images && buttons)
    document['button_'+name].src=buttons[name].on.src;
}

function buttonOff (name)
{
  if (document.images && buttons)
    document['button_'+name].src=buttons[name].off.src;
}

function Button (name, file, suffix)
{
  if (document.images)
  {
    this.on=new Image ();
    this.on.src=file+'_On.'+suffix;
    this.off=new Image ();
    this.off.src=file+'_Off.'+suffix;
  }
}
