function play(station){
    document.MediaPlayer.AnimationAtStart=false;
    document.MediaPlayer.SendMouseClickEvents=true; 
    document.MediaPlayer.FileName = station; 
	var embed1 = '<Embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/\"src=\"';
	var source = station; //mms://stream.msn.co.il/gglz
	var embed2 = '" Name=\"MediaPlayer2\" width=\"220\" height=\"250\" style=\"background-color:000000\" transparentAtStart=\"1\" autostart=\"1\" animationAtStart=\"0\" ShowControls=\"1\" ShowAudioControls=\"true\" ShowPositionControls=\"1\" autoSize=\"0\" ShowStatusBar=\"true\" displaySize=\"false\">'; 
	 var embed3 = '</embed></object>';
     var embed4 = embed1 + source + embed2 + embed3;
	   
}

function Player(){

document.MediaPlayer.play();
}

function Stop(){

document.MediaPlayer.stop();
}

function Mute(){
   if(document.MediaPlayer.Mute == true){
   document.MediaPlayer.Mute = false
   document.getElementById('mutesrc').src = "/templates/radio/images/vol.jpg"

   } else { 
  document.MediaPlayer.Mute = true
  document.getElementById('mutesrc').src = "/templates/radio/images/mute.jpg"
  }
}
