arLinks = new Array();
var nLinks = 0;

function AddLink(text, link) { arLinks[nLinks++] = "<a class=dd href=\"" + link + "\">" + text + "</a>"; }

function ApplyDownloadLinks()
{
   var string = 
   "<ul style=\"padding: 0; margin: 0; list-style: none; display: inline;\">" +
   "<li onmouseover=\"document.getElementById(\'dldmenu\').style.display=\'block\'\" onmouseout=\"document.getElementById(\'dldmenu\').style.display=\'none\'\" style=\"padding: 0; position: relative; display: inline;\">" +
   "<a href=\"http://www.nch.com.au/software/de/list.html\">Herunterladen</a>" +
   "<ul id=dldmenu style=\"text-align: left; display: none; padding: 0; margin: 0; position: absolute; top: 0px; left: 0px; color: #000000; list-style: none;\">" +
   "<li style=\"padding-top: 4px; background: transparent; width: 200px;\">&nbsp</li>";

   for (var index=0; index < nLinks; index++) {
      string += "<li style=\"padding-left: 4px; padding-right: 10px; padding-top: 2px; padding-bottom: 2px; cellspacing: 0; border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; border-bottom: 1px solid #cccccc; background: #f8f8f8; font-size: 8pt;\">" + arLinks[index] + "</li>";
   }

   string += "</ul></li></ul>";

   document.getElementById('dld').innerHTML = string;
}

function DownLoadMenu()
{
   if (navigator.appVersion.indexOf("Mac") != -1) {
      AddLink("Classic FTP-Software", "http://www.nchsoftware.com/classic/classicmac.zip");
	  AddLink("Express Accounts Buchhaltungsvereinfachung", "http://www.nchsoftware.com/accounting/accountsmac.zip");
      AddLink("Express Burn Brennsoftware", "http://www.nch.com.au/burn/burnmac.zip");
      AddLink("Express Dictate Diktatrekorder", "http://www.nch.com.au/express/expressmac.zip");
	  AddLink("Express Invoice Rechnungssoftware", "http://www.nchsoftware.com/invoice/de/invoicemac.zip");
      AddLink("Express Scribe Transkriptionssoftware", "http://www.nch.com.au/scribe/scribemac.zip");
      AddLink("Express Talk VoIP-Softphone", "http://www.nch.com.au/talk/talkmac.zip");
	  AddLink("FastFox Tipperweiterung", "http://www.nch.com.au/fastfox/ffmac.zip");
      AddLink("Golden Records Platte zu CD Konverter", "http://www.nch.com.au/golden/goldenmac.zip");
	  AddLink("HourGuard Zeittabellen-Rekorder", "http://www.nchsoftware.com/timesheet/hgmac.zip");
      AddLink("IMS Telefon-Warteschleifenspieler", "http://www.nch.com.au/ims/imsmac.zip");
      AddLink("Prism Videokonverter-Software", "http://www.nchsoftware.com/prism/de/prismmac.zip");
      AddLink("RecordPad Soundaufnahme-Software", "http://www.nch.com.au/recordpad/recordpadmac.zip");
	  AddLink("SoundTap Streaming-Audiorekorder", "http://www.nch.com.au/soundtap/stmac.zip");
      AddLink("Switch Audiodatei-Konverter", "http://www.nch.com.au/switch/switchmac.zip");
      AddLink("Tone Generator Audio-Testton-Erzeuger", "http://www.nch.com.au/tonegen/tonegenmac.zip");
      AddLink("TRx Anrufaufnahme-Software", "http://www.nch.com.au/trx/trxmac.zip");
      AddLink("WavePad Audioeditor", "http://www.nch.com.au/wavepad/wavepadmac.zip");
	  AddLink("Alle Downloads ansehen >>>", "http://www.nch.com.au/software/de/mac.html");

   } else {
      AddLink("Switch Audiodatei-Konverter", "http://www.nch.com.au/switch/de/switchsetup.exe");
      AddLink("WavePad Soundeditor", "http://www.nch.com.au/wavepad/de/wpsetup.exe");
      AddLink("Express Rip CD-Ripper", "http://www.nch.com.au/rip/de/ripsetup.exe");
      AddLink("SoundTap Streaming-Audiorekorder", "http://www.nch.com.au/soundtap/de/stsetup.exe");
      AddLink("Golden Records Schallplatte auf CD Konverter", "http://www.nch.com.au/golden/de/grsetup.exe");
      AddLink("IVM Sprachnachrichten-System", "http://www.nch.com.au/ivm/de/ivmsetup.exe");
      AddLink("Express Burn CD-/DVD-/Blu-Ray-Brenner", "http://www.nch.com.au/burn/de/burnsetup.exe");
      AddLink("Tone Generator Testton-Generator", "http://www.nch.com.au/tonegen/tonegence.exe");
      AddLink("Express Scribe Transkriptionssoftware", "http://www.nch.com.au/scribe/de/essetup.exe");
      AddLink("Express Dictate Diktatrekorder", "http://www.nch.com.au/express/de/edsetup.exe");
      AddLink("Express Talk VoIP-Softphone", "http://www.nch.com.au/talk/de/talksetup.exe");
      AddLink("Verbose Text-zu-Sprache-Konverter", "http://www.nch.com.au/verbose/vbsetup.exe");
      AddLink("Axon Virtuelle Bürotelefonanlage", "http://www.nch.com.au/pbx/pbxsetup.exe");
      AddLink("DialDictate Telefon-Diktiersystem", "http://www.nch.com.au/dialdictate/ddsetup.exe");
      AddLink("VRS Aufnahmesystem", "http://www.nch.com.au/vrs/de/vrssetup.exe");
      AddLink("FastFox Tipperweiterung", "http://www.nch.com.au/fastfox/ffsetup.exe");
      AddLink("IMS Interaktives Nachrichtensystem", "http://www.nch.com.au/ims/imssetup.exe");
      AddLink("MixPad Audiodatei-Mixer", "http://www.nch.com.au/mixpad/de/mpsetup.exe");
      AddLink("Alle Downloads ansehen >>>", "http://www.nchsoftware.com/download/de/index.html");
   }
   ApplyDownloadLinks();
}
