function displayEndorsement() {

var images = new Array(3);
images[0] = "<a href='endorsements-quotes.html'><img src='graphics/promo/endorse-seeger.gif' alt='Congrats on New Songs for Peace. Keep on! Best... - Pete Seeger'";
images[1] = "<a href='endorsements-quotes.html'><img src='graphics/promo/endorse-chumba.gif' alt='Contributing to songs for peace makes us feel less isolated... - Chumbawamba'";
images[2] = "<a href='endorsements-quotes.html'><img src='graphics/promo/endorse-copps.gif' alt='The power of music to influence change is well known... - Sheila Copps, Minister of Canadian Heritage, Canada'";
index = Math.floor(Math.random() * images.length);

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


function display2Songs() {

var images = new Array(10);
images[0] = "<a href='songs-bt1.html'><img src='graphics/promo/song-bt1.jpg' alt='BT'";
images[1] = "<a href='songs-crowe1.html'><img src='graphics/promo/song-crowe1.gif' alt='Alison Crowe'";
images[2] = "<a href='songs-edoff1.html'><img src='graphics/promo/song-edoff1.gif' alt='Larry Edoff'";
images[3] = "<a href='songs-jarrett1.html'><img src='graphics/promo/song-jarrett1.gif' alt='Brandon Jarrett'";
images[4] = "<a href='songs-kaye1.html'><img src='graphics/promo/song-kaye1.gif' alt='Nathan Kaye'";
images[5] = "<a href='songs-mcgovern1.html'><img src='graphics/promo/song-mcgovern1.gif' alt='Lili McGovern'";
images[6] = "<a href='songs-smith1.html'><img src='graphics/promo/song-smith1.jpg' alt='Stephan Smith'";
images[7] = "<a href='songs-snider1.html'><img src='graphics/promo/song-snider1.jpg' alt='Bob Snider'";
images[8] = "<a href='songs-waters1.html'><img src='graphics/promo/song-waters1.gif' alt='Beth Waters'";
images[9] = "<a href='songs-williams1.html'><img src='graphics/promo/song-williams1.gif' alt='Kathryn Williams'";
index = Math.floor(Math.random() * images.length);

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

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

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

}


