arLinks = new Array();
var nLinks = 0;

function AddLink(text, link) { arLinks[nLinks++] = "<a class=hpb 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/list.html\">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; 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 Accounting Simplicity", "http://www.nchsoftware.com/accounting/accountsmac.zip");
      AddLink("Express Burn Burning Software", "http://www.nch.com.au/burn/burnmac.zip");
      AddLink("Express Dictate Dictation Recorder", "http://www.nch.com.au/express/expressmac.zip");
      AddLink("Express Invoice Invoicing Software", "http://www.nchsoftware.com/invoice/invoicemac.zip");
      AddLink("Express Scribe Transcription Software", "http://www.nch.com.au/scribe/scribemac.zip");
      AddLink("Express Talk VoIP Softphone", "http://www.nch.com.au/talk/talkmac.zip");
      AddLink("FastFox Typing Expander", "http://www.nch.com.au/fastfox/ffmac.zip");
      AddLink("Golden Records Vinyl to CD Converter", "http://www.nch.com.au/golden/goldenmac.zip");
      AddLink("HourGuard Timesheet Recorder", "http://www.nchsoftware.com/timesheet/hgmac.zip");
      AddLink("IMS Telephone On Hold Player", "http://www.nch.com.au/ims/imsmac.zip");
      AddLink("Prism Video Converter Software", "http://www.nchsoftware.com/prism/prismmac.zip");
      AddLink("RecordPad Sound Recording Software", "http://www.nch.com.au/recordpad/recordpadmac.zip");
      AddLink("SoundTap Streaming Audio Recorder", "http://www.nch.com.au/soundtap/stmac.zip");
      AddLink("Switch Audio File Converter", "http://www.nch.com.au/switch/switchmac.zip");
      AddLink("Tone Generator Audio Test Tone Generator", "http://www.nch.com.au/tonegen/tonegenmac.zip");
      AddLink("TRx Call Recording Software", "http://www.nch.com.au/trx/trxmac.zip");
      AddLink("WavePad Audio Editor", "http://www.nch.com.au/wavepad/wavepadmac.zip");
      AddLink("See all downloads >>>", "http://www.nch.com.au/software/mac.html");

   } else {
      AddLink("BroadCam Video Streaming", "http://www.nchsoftware.com/broadcam/bcsetup.exe");
      AddLink("Classic FTP Uploader", "http://www.nchsoftware.com/classic/cftpsetup.exe");
      AddLink("Debut Video Recording", "http://www.nchsoftware.com/capture/debutsetup.exe");
      AddLink("Express Invoice Invoicing Software", "http://www.nchsoftware.com/invoice/eisetup.exe");
      AddLink("EyeLine Video Surveillance", "http://www.nchsoftware.com/surveillance/insetup.exe");
      AddLink("FileFort Backup Software", "http://www.nchsoftware.com/backup/ffortsetup.exe");
      AddLink("FlexiServer Employee Manager", "http://www.nchsoftware.com/flexi/fsrvsetup.exe");
      AddLink("Fling Automatic FTP Uploader", "http://www.nchsoftware.com/ftp/flingsetup.exe");
      AddLink("MEO Encryption Software", "http://www.nchsoftware.com/encrypt/meosetup.exe");
      AddLink("Prism Video File Converter", "http://www.nchsoftware.com/prism/prismsetup.exe");
      AddLink("ScreenStream Desktop Streamer", "http://www.nchsoftware.com/screen/sssetup.exe");
      AddLink("Axon Virtual PBx", "http://www.nch.com.au/pbx/pbxsetup.exe");
      AddLink("Express Burn CD/DVD/Blu-ray Burner", "http://www.nch.com.au/burn/burnsetup.exe");
      AddLink("Express Dictate Dictation Recorder", "http://www.nch.com.au/express/edsetup.exe");
      AddLink("Express Scribe Transcription Software", "http://www.nch.com.au/scribe/essetup.exe");
      AddLink("IVM Voice Messages System", "http://www.nch.com.au/ivm/ivmsetup.exe");
      AddLink("SoundTap Streaming Audio Recorder", "http://www.nch.com.au/soundtap/stsetup.exe");
      AddLink("Switch Audio File Converter", "http://www.nch.com.au/switch/switchsetup.exe");
      AddLink("VRS Recording System", "http://www.nch.com.au/vrs/vrssetup.exe");
      AddLink("WavePad Sound Editor", "http://www.nch.com.au/wavepad/wpsetup.exe");
      AddLink("See all downloads >>>", "http://www.nchsoftware.com/download/index.html");
   }
   ApplyDownloadLinks();
}