function banner()
{
var thePics = new Array()

thePics[1] = "images/banner.jpg"
thePics[2] = "images/banner1a.png"
thePics[3] = "images/banner1b.png"
thePics[4] = "images/banner1c.png"
thePics[5] = "images/banner1d.png"
thePics[6] = "images/banner1e.png"
thePics[7] = "images/banner1f.png"


var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) {
  rn = 1
}
document.write("<img src='"+thePics[rn]+"'"+" WIDTH=753 HEIGHT=137 >")
}


function bannermodules()
{
var thePics = new Array()

thePics[1] = "../images/banner.jpg"
thePics[2] = "../images/banner1a.png"
thePics[3] = "../images/banner1b.png"
thePics[4] = "../images/banner1c.png"
thePics[5] = "../images/banner1d.png"
thePics[6] = "../images/banner1e.png"
thePics[7] = "../images/banner1f.png"


var rn = Math.floor(Math.random() * thePics.length)
if (rn == 0) {
  rn = 1
}
document.write("<img src='"+thePics[rn]+"'"+" WIDTH=753 HEIGHT=137 >")
}