// JavaScript Document
<!--
var bookmarkurl="http://www.theinsectcollector.com/index.htm"
var bookmarktitle="The Insect Collector"

	function addbookmark()
	{
	if(navigator.appName == "Netscape") {
		addNN() 
		} 
		else {
		addIE()
	}
}
	
	function addNN ()
	{
	alert ("You are using Netscape Navigator, please use Ctrl-D to bookmark this page.")
	}
	
	function addIE()
	{
	if (document.all)
	window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//-->
