

// Toolbar buttons
function MPB_Button_Over(img_ctrl, command)
{
	img_ctrl.src = 'images/' + command + '_over.gif';
}

function MPB_Button_Out(img_ctrl, command)
{
	img_ctrl.src = 'images/' + command + '.gif';
}

function VIDE_Button_Click(command)
{
}

function WMP_Button_Click(command)
{
  var wmp = document.WMP_Video_IE;
  
	switch(command)
	{
		case "play":{wmp.controls.Play();}break;
		
		case "stop":{wmp.controls.Stop();}break;
		
		case "pause":{wmp.controls.Pause();}break;

		case "mute":
		{
		  wmp.settings.mute = !wmp.settings.mute;
		}
		break;

		case "sound_up":
		{
		  volume = wmp.settings.volume;
		  volume += 20;
  		if(volume > 100) volume = 100;
      wmp.settings.volume = volume;
		}
		break;
		
		case "sound_down":
		{
		  volume = wmp.settings.volume;
		  volume -= 20;
  		if(volume < 0) volume = 0;
      wmp.settings.volume = volume;	
		}
		break;

		case "full":
    {
      if(3 == wmp.playState)
        wmp.fullScreen = true;
    }
    break;

	}
}

