function MenuItem(description, URL)
	{
	this.URL = URL;
	this.description = description;
	//method associations
	this.toHTML = MenuItemToHTML;
	}
function MenuItemToHTML()
	{
	if (this.description == "-")
		{
		return "<TR><TD COLSPAN=\"2\"><HR COLOR=\"#FFFFFF\" NOSHADE></TD></TR>\n";
		}
	else if (this.URL == "")
		{
		return "<TR><TD COLSPAN=\"2\"><FONT ID=\"toolbar\"><B>"+this.description+"</B></FONT></TD></TR>\n";
		}
	else
		{
		//return "<TR><TD onClick='location=\""+this.URL+"\"' onMouseOver='this.bgColor=\""+hovercolor+"\"' onMouseOut='this.bgColor=\"\"' COLSPAN=\"2\"><A HREF=\""+this.URL+"\" ID=\"toolbar\">"+this.description+"</A></TD></TR>\n";
		var temp = "";
		temp += "<TR onClick='location=\""+this.URL+"\"' onMouseOver=\"this.bgColor='"+hovercolor+"';\" onMouseOut='this.bgColor=\"\";'>\n";
		temp += "\t<TD COLSPAN=\"2\"><A HREF=\""+this.URL+"\" ID=\"toolbar\">"+this.description+"</A></TD>\n";
		temp += "</TR>\n";
		return temp;
		}
	}