// JavaScript Document

var ArtCount=5;
var url=new Array(ArtCount);
var anc=new Array(ArtCount);

url[0]='http://www.nutritional-supplements-health-guide.com/saw-palmetto-and-hair-loss.html';
url[1]='http://www.nutritional-supplements-health-guide.com/saw-palmetto-for-women.html';
url[2]='http://www.nutritional-supplements-health-guide.com/saw-palmetto-side-effects.html';
url[3]='http://www.nutritional-supplements-health-guide.com/saw-palmetto-treatment.html';
url[4]='http://www.nutritional-supplements-health-guide.com/saw-palmetto-benefits.html';

anc[0]='The Relationship between Saw Palmetto and Hair Loss';
anc[1]='The Benefits of Saw Palmetto in Women';
anc[2]='The Potential Side Effects of Palmetto';
anc[3]='Various Benefits Saw Palmetto Treatment';
anc[4]='Why Aren\'t You Using Saw Palmetto Benefits For Your Health?';


var RL='<br /><br /><b>Related Articles</b><br /><br /><ul>';
var title = document.getElementsByTagName("h1")[0].innerHTML;
var i=0;

function RLArticles(){
	for (i=0;i<=ArtCount-1;i++){
         if (title!=anc[i]){
     		 RL+='<li><a href="' + url[i] + '">' + anc[i] + '</a></li>';
		 }
	}

//alert(RL);
RL+='</ul><br><br>'
 document.write(RL);
}

RLArticles();