// JavaScript Document
// Single button windows media player
// copied from www.tek-tips.com/faqs.cfm?fid=375

var myImageOn = new Image();
myImageOn.src = 'images/play.gif';
      
function imageSwap(){
	if(document.mybutton.isOff){
		document.mybutton.isOff = false;
		document.mybutton.src = myImageOn.src;
		document.mybutton.name = "BtnStop";
		MediaPlayer1.Stop();
    	MediaPlayer1.CurrentPosition = 0;
	} else if(!document.mybutton.isOff){
            document.mybutton.isOff = true;
            document.mybutton.src="images/stop.gif";
            document.mybutton.name = "BtnPlay";
            MediaPlayer1.Play();
            }
    }