﻿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\" class=fn>Download</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;\">&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 Dictate Diktat Rekorder", "http://www.nch.com.au/express/expressmac.zip");
      AddLink("Express Scribe Transkriptions-Software", "http://www.nch.com.au/scribe/scribemac.zip");
      AddLink("Express Talk VoIP Softphone", "http://www.nch.com.au/talk/talkmac.zip");
      AddLink("Golden Records Vinyl auf CD Konverter", "http://www.nch.com.au/golden/goldenmac.zip");
      AddLink("RecordPad Soundaufnahme Software", "http://www.nch.com.au/recordpad/recordpadmac.zip");
      AddLink("Switch Audio Dateikonverter", "http://www.nch.com.au/switch/switchmac.zip");
      AddLink("Tone Generator Audio Test-Ton Generator", "http://www.nch.com.au/tonegen/tonegenmac.zip");
      AddLink("TRx Anrufaufnahme Software", "http://www.nch.com.au/trx/trxmac.zip");
      AddLink("WavePad Audio Editor", "http://www.nch.com.au/wavepad/wavepadmac.zip");

   } else {
      AddLink("Switch Audio Dateikonverter", "http://www.nch.com.au/switch/de/switchsetup.exe");
      AddLink("WavePad Sound Editor", "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 Audio Rekorder", "http://www.nch.com.au/soundtap/de/stsetup.exe");
      AddLink("Golden Records Vinyl 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 Test Tone Generator", "http://www.nch.com.au/tonegen/tonegence.exe");
      AddLink("Express Scribe Transkriptions-Software", "http://www.nch.com.au/scribe/de/essetup.exe");
      AddLink("Express Dictate Diktat Rekorder", "http://www.nch.com.au/express/de/edsetup.exe");
      AddLink("Express Talk VoIP Softphone", "http://www.nch.com.au/talk/talksetup.exe");
      AddLink("Verbose Text-to-Speech Konverter", "http://www.nch.com.au/verbose/vbsetup.exe");
      AddLink("Axon Virtuelle Büro-Telefonanlage", "http://www.nch.com.au/pbx/pbxsetup.exe");
      AddLink("DialDictate Phone Dictation System", "http://www.nch.com.au/dialdictate/ddsetup.exe");
      AddLink("VRS Aufnahmesystem", "http://www.nch.com.au/vrs/de/vrssetup.exe");
      AddLink("FastFox AutoText-Erweiterung", "http://www.nch.com.au/fastfox/ffsetup.exe");
      AddLink("IMS Interaktives Nachrichtensystem", "http://www.nch.com.au/ims/imssetup.exe");
      AddLink("MixPad Audio Datei-Mixer", "http://www.nch.com.au/mixpad/mpsetup.exe");
      AddLink("Alle Downloads >>>", "http://www.nchsoftware.com/download/de/index.html");
   }
   ApplyDownloadLinks();
}