
<!-- Paste this code into an external JavaScript file  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

function linkDisplay() {
  /* Enter the link name below. Each entry must have
     a unique number in the "[]" brackets. */
  var links = new Array();
    links[0]="Mens Lounge";
    links[1]="FREE Body Analysis";
    links[2]="Strictly for Seniors"; 
    links[3]="Visitor Specials";
    links[4]="Free Trial Offers"; 
    links[5]="Weightloss Hypnosis";

  /* Enter the link URL below. Each entry must have
     a unique number in the "[]" brackets which matches
     the entry above. */
  var linkURL = new Array();
    linkURL[0]="http://www.fitnessandfreebies.com/health/sexual/";
    linkURL[1]="http://www.fitnessandfreebies.com/dir/monthlydeal.html";
    linkURL[2]="http://www.fitnessandfreebies.com/seniors/"; 
    linkURL[3]="http://www.fitnessandfreebies.com/free2.html";
    linkURL[4]="http://www.fitnessandfreebies.com/freebies.html"; 
    linkURL[5]="http://www.bellybytes.com/hypnosis.html";
  for (i=0; i<links.length; i++) {
    document.write("<li>"+links[i].link(linkURL[i])+"</li>");
  }
}
