//CHANGE THESE VARIABLES TO ALTER THE APPEARANCE OF THE ARTISTS' POPUP INFO BOX.

var MD_popupwidth="198"
var MD_popupheight="173"
var MD_popupbackground="images/tv.gif"
var MD_popupbordercolor="#666666"
var MD_popupborder="0"
var MD_fontface="Arial, Helvetica, 'sans-serif'"
var MD_fontcolor="#666666"
var MD_fontsize="1"

//CHANGE THESE VARIABLES TO ALTER THE APPEARANCE OF THE ARTISTS HEADER SCROLLING INFO BOX.

var ME_popupwidth="130"
var ME_popupbackground=""
var ME_popupbordercolor="#666666"
var ME_popupborder="0"
var ME_fontface="Arial, Helvetica, 'sans-serif'"
var ME_fontcolor="black"
var ME_fontsize="10"

//CREATES THE POPUP TABLE FOR THE ARTIST BLURBS

function popupBox(artist)
	{	
		xhelp()

		var divHTML="<table cellpadding=10 border="+MD_popupborder+" width="+MD_popupwidth+" height="+MD_popupheight+" bordercolor="+MD_popupbordercolor+" cellspacing=0>"

		divHTML+="<tr><td background="+MD_popupbackground+"><font face="+MD_fontface+" size="+MD_fontsize+" color="+MD_fontcolor+"><B>"+artist+"</B></font></td></tr></table>"

		with(parent.frames[2].document.all("tv")) 
				{
				innerHTML=divHTML 		// sets the new text.
				style.visibility="visible"	// shows the new table.
				}
	}

function popupBoxArt(artist)
	{	
		xhelp()

		var divHTML="<table cellpadding=2 border="+ME_popupborder+" width="+ME_popupwidth+" bordercolor="+ME_popupbordercolor+" cellspacing=0 cellpadding=0>"

		divHTML+="<tr><td background="+ME_popupbackground+"><font face="+ME_fontface+" size="+ME_fontsize+" color="+ME_fontcolor+"><B>"+artist+"</B></font></td></tr></table>"

		with(document.all("helptable")) 
				{
				innerHTML=divHTML 		// sets the new text.
				style.visibility="visible"	// shows the new table.
				}
	}


//HIDES THE DIV. MAKES IT INVISIBLE.

function xhelp()
	{
		with(parent.frames[2].document.all("tv"))
		{
			style.visibility="hidden"
			innerHTML=""
		}
	}

//RESETS 'artist' VALUE

function mouseOut()
	{
		artist=""
		
		with(parent.frames[2].document.all("tv"))
		{
			style.visibility="hidden"
		}
	}

function mouseOutArt()
	{
		artist=""

		with(document.all("helptable"))
		{
			style.visibility="hidden"
			innerHTML=""
		}
	}