z="Hauptframe"; //Zielframe für die Links des Menüs  (unten oder self)
function changeURL(w) {
if (parent.frames.length) 
parent[z].location.href=document.menuform.elements[w].options[document.menuform.elements[w].selectedIndex].value;
else
window.location.href=document.menuform.elements[w].options[document.menuform.elements[w].selectedIndex].value;
document.menuform.elements[w].selectedIndex=0;
}

function makeMenu() {
document.write("<form name='menuform'><table bgcolor='#D0D0D0' border='0' cellspacing='0' cellpadding='0'><tr>");
for (i=0; i < a.length; i++){
    document.write("<td><select size='0' onChange='changeURL("+i+")'>");
    for (j=0; j < a[i].length; j++){
        document.write("<option value='"+a[i][j]+"'>"+a[i][++j]);
        }
    document.write("</select></td>");
    }
document.write("</tr></table></form>");
}
