function BuildDropDownMenu(Language)
{
  document.write("<select name=\"quickfind\" size=\"1\" style=\"font-size:9px; font-family:verdana,sans-serif; color:#ffffff; background-color:#006DB8; border:1; border-color:#006db8;\" onchange=\"eval(this.options[this.selectedIndex].value);\">");
  document.write("<option value=\"\" selected>QuickFinder</option>");
  document.write("<option value=\"\">--------------------</option>");
  if(Language == "dk")
  {
    document.write("<option value=\"window.location.href = '/index.php';\">Forside</option>");
  }
  if(Language == "en")
  {
    document.write("<option value=\"window.location.href = '/english/index.php';\">HOME</option>");
    document.write("<option value=\"\">--------------------</option>");
    document.write("<option value=\"window.location.href = '/english/about/contactform.php';\">CONTACT FORM</option>");
  }
  var OValue;
  for (var k=0; k < aMenu.length; k++)
  {
    if(aMenu[k]["IsSub"] == false)
      document.write("<option value=\"\">--------------------</option>");
    if(aMenu[k]["IsNewWin"])
      OValue = "openWin('"+aMenu[k]["URL"]+"',"+aMenu[k]["NewWinWidth"]+","+aMenu[k]["NewWinHeight"]+",'yes')";
    if(!aMenu[k]["IsNewWin"])
      OValue = "window.location.href = '"+aMenu[k]["URL"]+"'";
    document.write("<option value=\""+OValue+"\">");
    if(aMenu[k]["IsSub"] == true)
      document.write("&nbsp;&#183;&nbsp;");
    document.write(aMenu[k]["Text"]);
    document.write("</option>");
  }
  document.write("</select>");
}
