function dispInfo(infotxt) // display information in information box
{
	var tempinfo=''; // variable holding info that goes in the info box

	// write info in the infobox

	// adjust for a smaller screen size
	tempinfo+="<table class='"+css_info+"'><tr><td>";
	tempinfo+=infotxt;
	tempinfo+="</td></tr></table>";
	writeInfo(dispMenuInfo,tempinfo);
}


function delInfo() // delete information from the information box
{
	writeInfo(dispMenuInfo,"&nbsp");
}

