// JavaScript Document
// Countdown Redirect

	document.writeln("<p>The page you are looking for has moved.  Please update your bookmarks to the new page located at:</p>");
	document.writeln("<p><a href=\"" + newURL + "\">" + newURL + "</a></p>");
	document.writeln("<p>You will be redirected in <strong>" + countTimer + "</strong> seconds.</p>");

	function redirect() {
		if (countTimer != 1) {
			countTimer -= 1;
		}
		else {
			window.location = newURL;
		}
		
		setTimeout("redirect()",1000);
	}
	
	redirect();