// Adds Netscape 6 / Mozilla tab

function addNetscapePanel() {
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function"))
	{
		window.sidebar.addPanel ("Nomad Jedi",
		"http://www.nomad-jedi.com/sidebar.htm","");
	}
	else
	{
		var rv = window.confirm ("This page is enhanced for use with Netscape 6.  " + "Would you like to upgrade now?");
		if (rv)
			document.location.href = "http://home.netscape.com";
	}
}