<html>
<head>
<title>Oops! Page Not Found.</title>
<script type="text/javascript" language="javascript">
<!--
function RedirectToASP()
{
	var url = document.location.href;
	var pathStart = url.indexOf('/', url.indexOf('/', url.indexOf('/')+1)+1);
	var path = url.substring(pathStart, url.length);
	var authority = url.substring(0, pathStart);
	var newUrl = authority + '/NotFound.aspx?rtype=iis&aspxerrorpath=' + path;
	document.location.href = newUrl;
}

var url = document.location.href;
if(url.lastIndexOf('/') + 1 == url.length)
	RedirectToASP();
else
{
	if(url.indexOf('#') >= 0)
		url = url.substring(0, url.indexOf('#'));
	if(url.indexOf('?') >= 0)
		url = url.substring(0, url.indexOf('?'));
	var endFragment = url.substring(url.lastIndexOf('/') + 1, url.length);
	if(endFragment.indexOf('.') < 0)
		RedirectToASP();
}
//-->
</script>
</head>

<body>
<h2>Error: Page Not Found</h2>
<p>We have redesigned our site and as a result, some links have moved.  If you arrived at this page from a bookmark,
please use the link below to return to the homepage and navigate to your desired section and update your bookmark.</p>
<p>We apologize for the inconvenience.</p>
<p>If the link you clicked was incorrect, click the back button on your browser to return to the last page you visited, <br>or click the link below to go to the home page.</p>

<p><a href="/">Return to the home page.</a></p>
</body>

</html>
