function nextPage( title ){

	var url = window.location.pathname;
	var nextUrl=url.split( '/' );
	var lastChar = url.substr(url.length-1,1);
	
	if( lastChar == "/" ){ // url is like x.com/ or x.com/2/
		lastPart = nextUrl[ nextUrl.length - 2 ];
		if( isNaN(lastPart) == true){
			nextUrl = url + "2/"; // default to second page
		}else{
			nextPart = parseInt(lastPart) + 1;
			nextUrl = url.replace("/"+lastPart+"/", "/"+nextPart+"/");
		}
	}else{ // url is like x.com, x.com/2
		lastPart = nextUrl[ nextUrl.length - 1 ];	
		if( isNaN(lastPart) == true){
			nextUrl = url + "/2/";
		}else{
			nextPart = parseInt(lastPart) + 1;
			nextUrl = url.replace("/"+lastPart, "/"+nextPart);
		}
	}
	document.write("<a href=\""+nextUrl+"\" title=\"Next Page\">"+title+"</a>" );
}
