// External JavaScript Functions
// for main features on the www.afterspirit.com website
// Copyright (c) 2007-2008 by Rob L. Dey
// Updated 01/22/2008 RLD

// Add homepage to favorites.
function add_fav()
{
  window.external.AddFavorite("http://www.afterspirit.com/", "AfterSpirit - paranormal paraphernalia - Home");
}

// Show random quotation as introductory statement.
function show_intro()
{
  var txt_str = new Array(
    "Innovative products for inquiring people!",
    "Going above and beyond!",
    "Your source for unique solutions!",
    "Perform your very own paranormal investigations!",
    "Exciting new products designed with you in mind!",
    "Finding new ways from old days!",
    "Look to our stars - we're within reach!",
    "Reach for our stars, we can help!",
    "We had a feeling you'd find us!",
    "Staying connected to learn more!",
    "Linking the unknown with technology!",
    "Tell your friends... we're here!");
  var len_int = txt_str.length;
  var rnd_val = Math.round((len_int-1)*Math.random());
  if (document.all)
  {
    document.write(txt_str[rnd_val]);
  }
}

