// performance menu
function perftd( link, pic, desc )
{
	var td;
	td = '<TD vAlign=top><P align=center><A href="' + link + '">';
	td = td + '<IMG style="LEFT: 1px; WIDTH: 85px; TOP: 1px; HEIGHT: 100px" height=100 width=85 alt ="" src="' + pic + '"></A><BR>';
	td = td + '<A href="' + link + '">';
	td = td + '<FONT size=4><STRONG>' + desc + '</STRONG></FONT></A></P></TD>';
	return td;
}

txt = "<TABLE border=0 cellPadding=3 cellSpacing=1 align=center><TR>";
txt = txt + perftd( "index.htm", "iconpics/logo2-2.2cm.jpg", "Index");
txt = txt + perftd( "improvPerforming.htm", "pics/ImproSM.jpg", "Impro");
txt = txt + perftd( "standup.htm", "pics/KevinMastersLive1.jpg", "Standup");
txt = txt + perftd( "acting.htm", "pics/PScrying3.jpg", "Acting");
txt = txt + perftd( "PerfWord.htm", "pics/peter-open%20stanza-2.jpg", "Word");
txt = txt + perftd( "wheresee.htm", "iconpics/iconTime.jpg", "Agenda");
txt = txt + "</TABLE>"
document.write( txt );

