var RandImgs = new Array()
RandImgs[1] = "/content/upload/AssetMgmt/images/001.jpg"
RandImgs[2] = "/content/upload/AssetMgmt/images/002.jpg"
RandImgs[3] = "/content/upload/AssetMgmt/images/003.jpg"
var rnd = Math.floor(Math.random() * RandImgs.length)
if (rnd == 0) {
  rnd = 1
}
document.write("<img src='"+RandImgs[rnd]+"' border=0>")
