<!--
function playMP3InNewWindowEmbed(MP3FileID)
{
	MP3Window=window.open('/playMP3.aspx?ID='+MP3FileID+'&T=0', "PlayMP3", "width=320,height=150,left=30,top=30");	
	MP3Window.focus();
}

function playMP3(MP3FileID)
{
	MP3Window=window.open('/playMP3.aspx?ID='+MP3FileID+'&T=1', "PlayMP3", "width=320,height=120,left=30,top=30");	
	MP3Window.focus();
}

function playExternal(MP3FileID, Type)
{
    var request = false;
    try { request = new XMLHttpRequest(); } 
    catch (e) 
    {
        try { request = new ActiveXObject("Msxml2.XMLHTTP"); } 
        catch (e) 
        {
            try { request = new ActiveXObject("Microsoft.XMLHTTP"); } 
            catch (e) 
            {
                request = false;
            }  
        }
    }
   
    if (request) 
    {
        request.open('GET', '/tracking.aspx?MP3File='+MP3FileID+'&Type='+Type, true);
        request.send(null);
    }
}

-->

