
function randomImage()
{
  //one more than the number
  var randomnumber=Math.floor(Math.random()*14);
  var sOutput = '<img src="images2/' + randomnumber + '.jpg" border="2" width="375" borderColor="#006600">';
  //when the time comes uncomment these lines and a credit image can be written below the artist's name and it can be linked to.
  //var cOutput = '<img src="../images/index_pics/title_space_' + randomnumber + '.gif" border="0" width="219">';
  //document.write(sOutput,'<br>',cOutput); 
  document.write(sOutput);  
}

