﻿// JScript File
var mp3PlayButton = "../Images/button_PLAY.gif";
var mp3StopButton = "../Images/button_STOP.gif";
var FlashPlayer = "../Script/playMp3.swf"
var mp3PlayingFont = "Verdana";
var mp3PlayingSize = "8pt";
playimg = null;
player = null;
function PlaySong(img, url)
{ 
    if (playimg == img) 
	{
	    destroy();
	}
	else 
	{ 
	    if (playimg) 
			destroy();
		
		var a = img.nextSibling;

		img.src = mp3StopButton; 
		img.alt = 'Stop';
		playimg = img; 
		player = document.createElement('span');
		player.innerHTML = '<object style="vertical-align:bottom;margin-right:0.2em" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"' +
                'codebase="swflash.cab#version=6,0,0,0"' +
			'width="1" height="1" id="player" align="middle">' +
			'<param name="wmode" value="transparent" />' +
			'<param name="allowScriptAccess" value="sameDomain" />' +
			'<param name="flashVars" value="theLink='+url+'" />' +
			'<param name="movie" value="../Script/playMp3.swf" /><param name="quality" value="high" />' +
			'<embed style="vertical-align:bottom;margin-right:0.2em" src="../Script/playMp3.swf" flashVars="theLink='+url+'"'+
			'quality="high" wmode="transparent" width="1" height="1" name="player"' +
			'align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"' +
			' pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	    img.parentNode.insertBefore(player, img.nextSibling);
    }
}
function destroy() 
	{ 
		playimg.src = mp3PlayButton; 
		playimg.alt = 'Play';
		playimg = null; 
		player.removeChild(player.firstChild); 
		//player.removeChild(player.firstChild); 
		//player.parentNode.removeChild(player); 
		player = null;
	}