function fname(url) {
  a=url.lastIndexOf("/")
  b=url.lastIndexOf("\\")  
  if(b>a) {a=b}
  return url.substring(a+1)
}

var titles = new Array(
"Chasing&nbsp;the&nbsp;Clouds&nbsp;Away",
"Do&nbsp;What&nbsp;Thou&nbsp;Wilt",
"Facing&nbsp;Difficulty", 
"Fate&nbsp;vs&nbsp;Free&nbsp;Will",
"Find&nbsp;Your&nbsp;True&nbsp;Vocation",
"Finding&nbsp;Happiness",
"Good&nbsp;Karma,&nbsp;Bad&nbsp;Karma",
"How&nbsp;to&nbsp;Make&nbsp;Good&nbsp;Decisions",
"How&nbsp;to&nbsp;Manage&nbsp;Anger",
"The&nbsp;Introvert&nbsp;Personality", 
"Letting&nbsp;Go", 
"Living&nbsp;in&nbsp;the&nbsp;Moment",
"Only&nbsp;a&nbsp;Game", 
"Overcoming&nbsp;Guilt&nbsp;and&nbsp;Regret",
"Positive&nbsp;Thought", 
"The&nbsp;Power&nbsp;of&nbsp;Focus", 
"Self&nbsp;Realization",
"Setting&nbsp;and&nbsp;Achieving&nbsp;Goals",
"Thinking&nbsp;Out&nbsp;of&nbsp;the&nbsp;Box",
"Time&nbsp;Management",
"What's&nbsp;Really&nbsp;Important",
"You&nbsp;Are&nbsp;Beautiful", 
"Self&nbsp;Help&nbsp;Books", 
"Inspirational&nbsp;and&nbsp;Motivational&nbsp;Posters")

var urls = new Array(
"http://new-age-spirituality.com/clouds.html",
"http://new-age-spirituality.com/selfhelp/dowhat.html",
"http://new-age-spirituality.com/selfhelp/coping.html",
"http://new-age-spirituality.com/selfhelp/freewill.html",
"http://new-age-spirituality.com/selfhelp/vocation.html",
"http://new-age-spirituality.com/selfhelp/happiness.html",
"http://new-age-spirituality.com/selfhelp/karma.html",
"http://new-age-spirituality.com/selfhelp/decision.html",
"http://new-age-spirituality.com/selfhelp/anger.html",
"http://new-age-spirituality.com/selfhelp/introvert.html",
"http://new-age-spirituality.com/selfhelp/letgo.html",
"http://new-age-spirituality.com/selfhelp/moment.html",
"http://new-age-spirituality.com/selfhelp/onlygame.html",
"http://new-age-spirituality.com/selfhelp/guilrgrt.html",
"http://new-age-spirituality.com/selfhelp/positive.html",
"http://new-age-spirituality.com/selfhelp/focus.html",
"http://new-age-spirituality.com/selfhelp/selfknow.html",
"http://new-age-spirituality.com/selfhelp/planning.html",
"http://new-age-spirituality.com/selfhelp/outbox.htm",
"http://new-age-spirituality.com/selfhelp/timemgt1.html",
"http://new-age-spirituality.com/selfhelp/important.html",
"http://new-age-spirituality.com/selfhelp/beautiful.html",
"http://new-age-spirituality.com/selfhelp/shbooks.html",
"http://new-age-spirituality.com/selfhelp/inspirational.html")

document.write("<p>See also: ")
j=1
for(i=0;i<titles.length;i++) {
  if(fname(window.location.href)!=fname(urls[i])) {
    document.write('<a href="')
    document.write(urls[i])
	document.write('">')
	document.write(titles[i])
	document.write('</a> ')
	if(j<titles.length-1) {
      document.write(' ~ ')	    
	}
	j++
  }
}
document.write("</p>")

