function SoundController()
{
this.Common = new Common();
this.Browser = this.Common.Browser();
this.MuteImage = "../images/sound.gif";
this.SoundImage = "../images/mute.gif";
this.SoundButton = function(){
this.Common.GetBrowserIndependentElement("sound_button");
}
this.State = true;
this.RefreshSoundButton = function(){
if (this.SoundButton != null)
{
if (this.State == true) { this.SoundButton.src = this.MuteImage; }
else { this.SoundButton.src = this.SoundImage; }
}
}
}

