<!--
function random_textlink(){

var urls = new Array(
"about.html",
"board.html",
"bylaws.html",
"calendar.html",
"contact.html",
"corporatememberships.html",
"diversityevents.html",
"diversitynews.html",
"links.html",
"memberchange.html",
"membership.html",
"newsletteradvertising.html",
"newslettereditorform.html",
"philanthropy.html",
"presenters.html",
"recommend.html",
"sponsorships.html",
"studentform.html",
"studentfundingassistance.html",
"studentmemberships.html",
"updatearchives.html",
"volunteering.html")

var alt = new Array(
"Learn About Us",
"Our Board Members",
"Our Bylaws",
"Calendar of events",
"Contact information",
"Corporate Membership Information",
"Diversity Events Calendar",
"Diversity News",
"Useful Links",
"Member Information Change Form",
"Membership Information",
"Advertising in our newsletter",
"Contribute to our newsletter",
"Philanthropy information",
"Past Presentor Information",
"Recommend us to a friend",
"Sponsorship Opportunities",
"Student information form",
"Student Funding Assistance",
"Student Membership Information",
"Past issues of our newsletter",
"Volunteering opportunities"
)

  var ry=Math.floor(Math.random()*urls.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+urls[ry]+'"'+'>'+alt[ry]+'</a>')
}

  random_textlink()
//-->
