function getMenu(item)
{
	if (item == null){item = "";}
	var html = '';

	html += '<table cellspacing="2" width="95%">';
	html += '<tr><td class="menuItem"><a href="copyright.htm">Copyright Home</a></td></tr>';
	html += '<tr><td class="menuItem"><a href="shouldiworry.htm">Hot Topic: Worried?</a></td></tr>';

	html += '<tr><td class="menuItem"><a href="section2.htm">Copyright Law</a></td></tr>';
	if (item == "law")
	{
		html += '<tr><td class="subMenuItem">';
		html += '<a href="section2a.htm">Purpose</a><br>';
		html += '<a href="section2b.htm">Parameters</a>';
		html += '</td></tr>';
	}

	html += '<tr><td class="menuItem"><a href="section2cd.htm">Fair Use</a></td></tr>';
	html += '<tr><td class="menuItem"><a href="section2e.htm">TEACH Act</a></td></tr>';
	
	html += '<tr><td class="menuItem"><a href="section2f.htm">Guidelines</a></td></tr>';
	if (item == "guidelines")
	{
		html += '<tr><td class="subMenuItem">';
		html += '<a href="section2f1.htm">Instructional Activities</a><br>';
		html += '<a href="music.htm">Music & Media</a><br>';
		html += '<a href="section2f2.htm">Research & Publishing</a><br>';
		html += '<a href="section2f3.htm">Learning Activities</a><br>';
		html += '<a href="section2f4.htm">Other Activities</a>';
		html += '</td></tr>';
	}

	html += '<tr><td class="menuItem"><a href="section2g.htm">Copyright Clearance</a></td></tr>';
	
	html += '<tr><td class="menuItem"><a href="section3.htm">Special Tips</a></td></tr>';
	if (item == "tips")
	{
		html += '<tr><td class="subMenuItem">';
		html += '<a href="section3a.htm">Definitions</a><br>';
		html += '<a href="section3b.htm">Blackboard Information</a><br>';
		html += '<a href="section3c.htm">Protecting Documents</a><br>';
		html += '<a href="section3d.htm">Permission Granted</a><br>';
		html += '<a href="section3e.htm">Citing Documents</a>';
		html += '</td></tr>';
	}

	html += '<tr><td class="menuItem"><a href="section4.htm">Recommended Links</a></td></tr>';
	html += '</table>';

	document.write(html);
}
