function setAsHomePage(theForm) {
	if(navigator.appName == 'Microsoft Internet Explorer') {
		theForm.style.behavior = 'url(#default#homepage)';
		theForm.setHomePage(document.location.href);
	} else {
		alert('Consult the help file of your browser for instructions to set this page as your home page.');
	}
}

function addToFavorites() {
	if(navigator.appName == 'Microsoft Internet Explorer') {
		window.external.AddFavorite(document.location.href, document.title);
	} else {
		alert('Consult the help file of your browser for instructions to bookmark this page.');
	}
}