//
// alert('NUN OK1');
function allTips() {
  // alert('allT in NUN');
mTip('footmon','Net Business FootBall Monster','Just showing this because...<br><img src="FootGol1.gif"><br>We can and do...');
}
function mTip(name, title, text)
{
  var infobox = '<div id="' + name + '" name="' + name + '" class="infodiv">\n'
              + '  <table class="infotable" cellspacing="0" width="' + IWIDTH + '">\n';

  // title is present
  if (title != '')
  {
    infobox += '    <tr>\n'
             + '      <td class="infohead">\n'
             + title + '\n'
             + '      </td>\n'
             + '    </tr>\n';
  }
  // text is present
  if (text != '')
  {
    infobox += '    <tr>\n'
             + '      <td class="infocell">\n'
             + text + '\n'
             + '      </td>\n'
             + '    </tr>\n';
  }

  infobox += '  </table>\n'
           + '</div>\n';
  floateDiv2w += infobox;
  // document.write(infobox);

}

