// WWW_file whatsnew.js, Version 1.001, Updated 2009-04-16 14:23:36
function navlinks (dir) {
	var ind;
	var links = new Array ("preserve.html","access.html","share.html","secure.html","reduce_improve_streamline.html");
	for (ind in links) {if (location.pathname.match(links[ind]) ) {break} }
	if (dir == "prev") {
		if (ind > 0) {return "<a href = \""+links[ind-1]+"\">Previous Topic</a>&nbsp; &bull; &nbsp;"}
	}
	if (dir == "next") {
		if (ind < links.length-1) {return "&nbsp; &bull; &nbsp;<a href = \""+links[ind-0+1]+"\">Next Topic</a>"}
	}
	return "";
}
