function Footnote()
{
	document.write();

}

function PopUp(Name, Link, Width, Height)
{
	var strProperties =  "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width="+Width+",height="+Height;
	window.open(Link,Name,strProperties);
	//Name.window.focus();

}

function PopUpWithScroll(Name, Link, Width, Height)
{
	var strProperties =  "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width="+Width+",height="+Height;
	window.open(Link,Name,strProperties);
	//Name.window.focus();

}

function TR_Tag_Setlist(Name, Caption, Width, Height, Mode)
{
	var x = "";
	var fnPopIp = "";

	if(Mode==0)
	
		fnPopUp="PopUp";
	else
		fnPopUp="PopUpWithScroll";

		
	x = "<TR bgcolor=550000 Title=\"" + Caption + "\" onClick=\"Javascript:" + fnPopUp + "('" + Name + "', 'Setlists/" + Name+".htm', " + Width + ", " + Height +");\" onMouseOver=\"this.style.backgroundColor='#005500'; this.style.cursor='hand';\" onMouseOut=\"this.style.backgroundColor='#550000';\" >";

	document.write(x);

}
