<!-- Paste this code into an external JavaScript file named: downLoad.js  -->


function talkright() {
if(navigator.appVersion.indexOf('Mac') != -1) {
   // It's a Macintosh
   document.write('Option+Click the link.');
   return;
   }
if(navigator.appVersion.indexOf('Win') != -1) {
   // It's Windows
   document.write('place your mouse cursor over the Adobe PDF icon,  ');
   document.write('right click the link and select ');
   if(navigator.userAgent.indexOf('Firefox') != -1) {
      // It's Firefox
      document.write('"Save Link As..."');
      return;
      }
   if(navigator.userAgent.indexOf('Opera') != -1) {
      // It's Opera
      document.write('"Save target as..."');
      return;
      }
   if(navigator.userAgent.indexOf('Gecko') != -1) {
      // It's Netscape 6+
      document.write('"Save Target As..."');
      return;
      }
   if(navigator.userAgent.indexOf('IE') != -1) {
      // It's IE
      document.write('"Save Target As..."');
      return;
      }
   }

  // Default
  document.write('place your mouse cursor over the Adobe PDF icon, ');
  document.write('right click the link and select "Save Target As...');
}

