function write_make_homepage_link() {
	// Writes out a "Make This Your Homepage" link if the browser is IE on the PC
	if ((window.navigator.appName.toLowerCase().indexOf("microsoft") != -1) && (window.navigator.platform.toLowerCase().indexOf("mac") == -1)) {
    	document.write("<a href=\"#\" onclick=\"this.style.behavior='url(#default#homepage)'; this.setHomePage(window.location); false;\">Make this your home page.</a>");
    }
}
