// JavaScript Document

function TooltipTxt (menuImg, Content) {
	if (menuImg == "none") {
		return Content;
		}
	else {
		return "<img src=img/menu/" + menuImg + " class=popup align=left />" + Content;
		}
	}