function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="e-banner/Frontiers in Medicinal Chemistry Volume 1 copy.gif"
  myimages[2]="e-banner/Frontiers in Medicinal Chemistry Volume 2 copy.gif"
  myimages[3]="e-banner/Frontiers in Medicinal Chemistry Volume 3 copy.gif"
  myimages[4]="e-banner/Frontiers in Medicinal Chemistry Volume 4 copy.gif"
  myimages[5]="e-banner/Frontiers in Medicinal Chemistry Volume 5 copy.gif"
  myimages[6]="e-banner/Advances in Biotechnology copy.gif"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.benthamscience.com/ebooks/9781608052042/index.htm"
  imagelinks[2]="http://www.benthamscience.com/ebooks/9781608052059/index.htm"
  imagelinks[3]="http://www.benthamscience.com/ebooks/9781608052066/index.htm"
  imagelinks[4]="http://www.benthamscience.com/ebooks/9781608052073/index.htm"
  imagelinks[5]="http://www.benthamscience.com/ebooks/9781608052080/index.htm"
  imagelinks[6]="http://benthamscience.com/ebooks/9781608050901/index.htm"



  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+' onclick="window.open(this.href); return false;"><img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()

