//*******************************************************************************************************************

//Menu[nr] = "1->Menüzeile; 2->Untermenüzeile|Zeilentext|url"

var Menu  = new Array();

Menu[0]    = "1|Home|index.html";
Menu[1]    = "1|Organisation|organizer.html";
Menu[2]    = "1|Tagungsort|venue.html";
Menu[3]    = "1|Downloads|download.html";
Menu[4]   = "1|Deadlines|deadline.html";
Menu[5]   = "1|Werbemöglichkeiten|werbung.html";
Menu[6]   = "1|Archiv|archiv.html";
Menu[7]   = "1|Kontakt|contact.html";

//*******************************************************************************************************************



































































function CreateMenu(site) {
  var hauptmenu="";
  for(i=0;i<Menu.length;i++) {
    mArray = Menu[i].split("|");
    if(mArray[0]==1) hauptmenu=mArray[1];
    if(i<(Menu.length-1)) nArray = Menu[i+1].split("|");
    if(mArray[0]=="1") {
      if(nArray[0]=="2") 
        document.write("<div class=" + String.fromCharCode(34) + "unav" + String.fromCharCode(34) + "><a href=" + String.fromCharCode(34) + mArray[2] + String.fromCharCode(34) + " target=" + String.fromCharCode(34) + "_self" + String.fromCharCode(34) + ">" + mArray[1] + "</a></div>");
      else
    	document.write("<div class=" + String.fromCharCode(34) + "nav" + String.fromCharCode(34) + "><a href=" + String.fromCharCode(34) + mArray[2] + String.fromCharCode(34) + " target=" + String.fromCharCode(34) + "_self" + String.fromCharCode(34) + ">" + mArray[1] + "</a></div>");
    }
    else	
      if(mArray[0]=="2" && hauptmenu==site) document.write("<div class=" + String.fromCharCode(34) + "nav" + String.fromCharCode(34) + "><a href=" + String.fromCharCode(34) + mArray[2] + String.fromCharCode(34) + " target=" + String.fromCharCode(34) + "_self" + String.fromCharCode(34) + ">" + mArray[1] + "</a></div>");
  }
  document.write("<div id=" + String.fromCharCode(34) + "impress" + String.fromCharCode(34) + "><p align=" + String.fromCharCode(34) + "center" + String.fromCharCode(34) + "><br><font size=" + String.fromCharCode(34) + "1" + String.fromCharCode(34) + "><a href=" + String.fromCharCode(34) + "impressum.html" + String.fromCharCode(34) + ">IMPRESSUM </a> </font> </div>")
}
