function openURL(url, newWindow)
{
	// check to see if new window needs to be opened
	if (newWindow)
	{
		window.open(url);
	}
	else
	{
		location.href = url;
		
	}
	return false;
}

		var jukebox = '';
		function openJukebox()
		{
			// check to see if jukebox is already open
			if (jukebox != '')
			{
				// try to bring the window into focus
				// if this fails then the window was likely closed by the user
				// so create a new window
				try
				{
					jukebox.focus();
				}
				catch (exception)
				{
					jukebox = window.open("jukebox.aspx","jukebox","WIDTH=378,HEIGHT=188,SCROLLBARS=NO");
					jukebox.focus();		
				}
			}
			else
			{
				jukebox = window.open("jukebox.aspx","jukebox","WIDTH=378,HEIGHT=188,SCROLLBARS=NO");
				jukebox.focus();
			}
			return false;
		}
		