var mycontent=new Array()
//specify random content below.

mycontent[0]='<a href="http://www.askmusa.org/site/lookup.asp?c=ehLKKZPJLuF&b=2794331">The Truth About the Jews</a>'

mycontent[1]='<a href="http://www.askmusa.org/site/lookup.asp?c=ehLKKZPJLuF&b=3125653">The Jews and the Qur\'an</a>'

//mycontent[2]='<a href="#">The Third Header Title</a>' 

var numArr = new Array("0","1"); // Add elements here
var pickArr = new Array(); // The array that will be formed
var count=0;
var doFlag=false;
var iterations=0;

function pickNums(nums)
{
 iterations+=1;
 var currNum = Math.round((numArr.length-1)*Math.random());
 if(count!=0)
 {
  for(var i=0; i<pickArr.length; i++)
  {
   if(numArr[currNum]==pickArr[i])
   {
    doFlag=true;
    break;
   }
  }
 }
 if(!doFlag)
 {
  pickArr[count]=numArr[currNum];
  document.write(mycontent[currNum]);
  count+=1;
 }
 if(iterations<1) // Compare for max iterations you want
 {
  if((count<nums))
  {
   pickNums(nums);
  }
 }
}

pickNums(1); // Call the function, the argument is the number of elements you want to pick.