function makeMenu(menuTab, dir) {

  s =  '<table cellspacing="7" cellpadding="0" border="0">'
  for (var i = 0; i < menuTab.length; i++) {
    s += '<tr>';
    s += '<td><a href="'+ menuTab[i].href +'"><img src="'+ dir + menuTab[i].name + "/s/" + menuTab[i].img +'" width="' +menuImgW+ '" height="' +menuImgH+ '" border="1" alt=""></a></td>';
    s += '<td>';
    document.writeln(s); s = '';
    insertFlashObject("flash/" + menuTab[i].name + ".swf", flashMenuW, flashMenuH, true);
    s += '</td>';
    s += '</tr>';
  } 
  s += '</table>';
  document.writeln(s);
}

function select_button(name) {
  
  for (var i=0; i<menuTab.length; i++) {
    if (menuTab[i].name == name) {
      location.href = menuTab[i].href; 
      return true;
    }
  }
}

