function getHomePageLink () {

// If it's Internet Explorer, use automatic link
	// Be sure to change the "http://www.YourWebSiteHere.com\"
	// to the URL you want them to bookmark.
	if (document.all){
		document.write('<A HREF="javascript:history.go(0);" onClick="this.style.behavior=\'url(#default#homepage)\';this.setHomePage(\'' + strHomePage + '\');">');
		document.write(strHPMsg1 + '</a>');
	}

	// If it's Netscape 6, tell user to drag link onto Home button
	// Be sure to change the "http://www.YourWebSiteHere.com\"
	// to the URL you want them to bookmark.
	else if (document.getElementById){
		document.write('<a href="' + strHomePage + '">' + strHPMsg2 + '.</a>');
	}

	// If it's Netscape 4 or lower, give instructions to set Home Page
	else if (document.layers){
		document.write('<b>' + strHPMsg3 + ':</b><br>- ' + strHPMsg4 + '.<br>- ' + strHPMsg5 + '.<br>- ' + strHPMsg6 + '.');
	}

	// If it's any other browser, for which I don't know the specifications of home paging, display instructions
	else {
		document.write('<b>' + strHPMsg3 + ':</b><br>- ' + strHPMsg4 + '.<br>- ' + strHPMsg5 + '.<br>- ' + strHPMsg6 + '.');
	}

}
