// JavaScript Document
function bookmarkpage(){
	if (document.all) window.external.AddFavorite(document.location, document.title);
	else if (window.sidebar) window.sidebar.addPanel(document.title, document.location, "")
	else alert("Please press Ctrl-D (PC) or Apple-D (Mac) to bookmark this page.");
}

if (document.all || window.sidebar) {
	document.write('<a class="footer" href="javascript:bookmarkpage();">Bookmark this page</a>');
} else {
	if (navigator.platform.indexOf('Win') != -1) document.write('Press Ctrl-D to Bookmark this page>');
	else document.write('Press Apple-D to bookmark this page');
}