function makePop()
{
	alert("Please read the install notes before installing this update!");
	window.location.href="#notes";
}

function replaceAnchor()
{
	replaceAnchorGen();
}

function replaceAnchorGen(classN)
{
	var clsName;
	var sAV = navigator.appVersion.toLowerCase();
	var iMSIE = sAV.indexOf("msie");
	if (iMSIE >= 1 && parseInt(sAV.charAt(iMSIE + 5)))
	{
		clsName=(classN!=null) ? classN  : "downloadButton";
		DlButton.style.display = "none";
		var buttonHtml = "<button class='"+ clsName + "' onclick='javascript:makePop();window.location.href=DlButton.href'>" + DlButton.innerHTML + "</button>";
		document.write(buttonHtml+"<br>");
	}
}