function getBannerPic(x)
{

//PARAMETERS TO BE ALTERED
//images must be in /image directory and have
//prefixes l, f, t, w.  (Landscapes/muted colors, flowers/colorful,
//trees/green, and wildlife/humans)
//Enter the number of each type of picture here.
var numberf = 35;
var numberl = 42;
var numbert = 36;
var numberw = 39;

switch(x) {
case "f":
document.write('<img src="images/f' + Math.ceil(Math.random()*numberf) + '.jpg" width="200" height="130">');
break
case "l":
document.write('<img src="images/l' + Math.ceil(Math.random()*numberl) + '.jpg" width="200" height="130">');
break
case "t":
document.write('<img src="images/t' + Math.ceil(Math.random()*numbert) + '.jpg" width="200" height="130">');
break
case "w":
document.write('<img src="images/w' + Math.ceil(Math.random()*numberw) + '.jpg" width="200" height="130">');
break

}

}