<!--

menuactivated=0;
message=""

function activatelist(listid)
	{
		if(document.getElementById) // IE5+ and NS6+ only
		{
			document.getElementById(listid).style.visibility="visible";
			document.getElementById(listid).style.backgroundColor="black";
		}
	}

function activatelistheader(listid, headerid)
	{
		if(document.getElementById) // IE5+ and NS6+ only
		{
			document.getElementById(listid).style.visibility="visible";
			document.getElementById(listid).style.backgroundColor="black";
			document.getElementById(headerid).style.color="#ffffff";
		}
	}

function deactivatelist(listid, headerid)
	{
		if(document.getElementById) // IE5+ and NS6+ only
		{
			document.getElementById(listid).style.visibility="hidden";
			document.getElementById(headerid).style.color="#ffffff";
		}
	}

function display_file(filenumber,link)
{
	var filenames = [];
	var indexnumber;
	var remainder;
	var filename;

	filenames[0] = "ProposalForm.doc";
	filenames[1] = "SmallOrderForm.doc";
	filenames[2] = "BusinessPlan";
	filenames[3] = "BusinessPlan";
	link.href = "scripts/DGDdownload.pl?file=" + filenames[filenumber];
	return true;	
}
-->
