// JavaScript Document


// Copyright for Footer

COPYRIGHT = "&copy; Paradise Taxi and Tours, LLC. ";

   function writeCopyright()
   {
      document.write(COPYRIGHT, new Date().getFullYear(), ". All rights reserved.");
   }


/* version to span initial year to current year

COPYRIGHT = "&copy; My Company Inc., 1990-";

   function writeCopyright()
   {
      document.write(COPYRIGHT, new Date().getFullYear(), ". All rights reserved.");
   }
*/

// End Copyright Script