// JavaScript Document
<!--
function homepagelink (url,displayclass)
{
	if (document.all)
	{
		document.write('<a href="' + url + '" target="_top" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'' + url + '\')">');
		document.write('<span class="' + displayclass + '">Make this your homepage</span></a>');
	}

	// If it's Netscape 6, tell user to drag link onto Home button
	else if (document.getElementById)
	{
		document.write('<a href="' + url + '"><span class="' + displayclass + '">Drag this link onto your Home button</span></a>');
	}
}

function bookmarklink (url,title,displayclass)
{
	var app = navigator.appName;
	var ver = parseInt(navigator.appVersion);

	if ((app == "Microsoft Internet Explorer") && (ver >= 4)) {
		document.write("<a href=\"javascript:window.external.AddFavorite('" + url + "',\'" + title + "')\"><span class=\"" + displayclass + "\">Click Here to Bookmark this Page</span></a>");
	} else {
		document.write('<span class="' + displayclass + '">Press CTRL-D to Bookmark this Page</span>');
	}
}
// -->
