// JavaScript Document
/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Will Bontrager :: http://www.bontragerconnection.com/ */

// Copyright 2005 Bontrager Connection, LLC
function talkright() {
if(navigator.appVersion.indexOf('Mac') != -1) {
   // It's a Macintosh
   document.write('<li class="ar13D">Ctrl+Click the image.</li>');
   return;
   }
if(navigator.appVersion.indexOf('Win') != -1) {
   // It's Windows
   document.write('<li class="ar13D">Put the mouse cursor over the image or link.</li> ');
   document.write('<li class="ar13D">Right click the image or link and select ');
   if(navigator.userAgent.indexOf('Firefox') != -1) {
      // It's Firefox
      document.write('"Save Image As..."</li>');
      return;
      }
   if(navigator.userAgent.indexOf('Opera') != -1) {
      // It's Opera
      document.write('"Save image..."</li>');
      return;
      }
   if(navigator.userAgent.indexOf('Gecko') != -1) {
      // It's Netscape 6+
      document.write('"Save Target As..."</li>');
      return;
      }
   if(navigator.userAgent.indexOf('IE') != -1) {
      // It's IE
      document.write('"Save Picture As..." or "Save Target As..."</li>');
      return;
      }
   }

  // Default
  document.write('<li class="ar13D">Put the mouse cursor over the image or link. </li>');
  document.write('<li class="ar13D">Right click the image or link and select ');
  document.write('"Save Picture As..."</li>');
}
