function displayPromo() {

var images = new Array(9);
images[0] = "<a href='http://www.newsongsforpeace.org/cgi-bin/guestbook/guestbook.cgi'><img src='graphics/promo/promo-guestbook.gif' alt='Sign our Guest Book!'";
images[1] = "<a href='newsletters.html'><img src='graphics/promo/promo-newsletter.gif' alt='Subscribe to our Newsletters!'";
images[2] = "<a href='cds.html'><img src='graphics/promo/promo-cds.gif' alt='Support Peace! Buy Peace CDs'";
images[3] = "<a href='link2us.html'><img src='graphics/promo/promo-link2us.gif' alt='Link to This Web Site'";
images[4] = "<a href='songs-mp3s.html'><img src='graphics/promo/promo-newmp3s.gif' alt='Download New MP3s'";
images[5] = "<a href='submit.html'><img src='graphics/promo/promo-submitsong.gif' alt='Submit Your Song'";
images[6] = "<a href='faq.html'><img src='graphics/promo/promo-faq.gif' alt='Check out our FAQs'";
images[7] = "<a href='playlist.html'><img src='graphics/promo/promo-playlist.gif' alt='Listen to our Playlist'";
images[8] = "<a href='submissions.html'><img src='graphics/promo/promo-spotlight.gif' alt='Check out this month's Artist Spotlight'";
index = Math.floor(Math.random() * images.length);

document.write(""+images[index]+" border='0' height='50' width='180'></a><br><br>\n");
}


function display2Promo() {

var images = new Array(9);
images[0] = "<a href='http://www.newsongsforpeace.org/cgi-bin/guestbook/guestbook.cgi'><img src='graphics/promo/promo-guestbook.gif' alt='Sign our Guest Book!'";
images[1] = "<a href='newsletters.html'><img src='graphics/promo/promo-newsletter.gif' alt='Subscribe to our Newsletters!'";
images[2] = "<a href='cds.html'><img src='graphics/promo/promo-cds.gif' alt='Support Peace! Buy Peace CDs'";
images[3] = "<a href='link2us.html'><img src='graphics/promo/promo-link2us.gif' alt='Link to This Web Site'";
images[4] = "<a href='submissions.html'><img src='graphics/promo/promo-spotlight.gif' alt='Check out this month's Artist Spotlight'";
images[5] = "<a href='submit.html'><img src='graphics/promo/promo-submitsong.gif' alt='Submit Your Song'";
images[6] = "<a href='faq.html'><img src='graphics/promo/promo-faq.gif' alt='Check out our FAQs'";
images[7] = "<a href='playlist.html'><img src='graphics/promo/promo-playlist.gif' alt='Listen to our Playlist'";
images[8] = "<a href='songs-mp3s.html'><img src='graphics/promo/promo-newmp3s.gif' alt='Download New MP3s'";
index = Math.floor(Math.random() * images.length);

document.write(""+images[index]+" border='0' height='50' width='180'></a><br><br>\n");

index2 = Math.floor(Math.random() * images.length);

if (index == index2)
{
  if (index == (images.length-1))
    document.write(""+images[0]+" border='0' height='50' width='180'></a><br><br>\n");
  else
    document.write(""+images[index+1]+" border='0' height='50' width='180'></a><br><br>\n");
}
else
  document.write(""+images[index2]+" border='0' height='50' width='180'></a><br><br>\n");

}


