﻿function UpdateTrackLabel(track){
	try
	{
		var lbl = document.getElementById("ctl00_lblTrack");

		if (lbl != null && (!document.all || document.readyState == "complete"))
		{
			lbl.innerHTML = track; //Allow for HTML entities such as <em> tags
		}
	}
	catch (e)
	{
		e = (typeof(e.message) != "undefined") ? e.message : e;
	}
}

function CloseAllWindows(){
	var playlistwindow = popupWin;
	if( playlistwindow != null){
		if (!playlistwindow.closed){
			playlistwindow.close();
		}
	}
}
