function bookmark()
{
  window.external.AddFavorite('http://wheeling.faithweb.com/index.html','Wheeling Ave. Community Church of the Nazarene');
}

function writebookmark()
{
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ))
  {
    document.write('<a href="javascript:exit=false; bookmark()">Click Here to Bookmark</a>')
  }
  else
  {
    document.write('Press [CTRL-D] To Bookmark.');
  }
}

/*
Put these lines in the html file

- In the header section
<script language="Javascript" src="bookmark.txt">
</script>

- In the body
<script>
writebookmark();
</script>

*/

 
