function SubmitForm( action, form )
{
  form.action = action; 
  form.submit();
}


//random image footer follows
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.
theImages[0] = '/graphics/footers/0.jpg'
theImages[1] = '/graphics/footers/1.jpg'
theImages[2] = '/graphics/footers/2.jpg'
theImages[3] = '/graphics/footers/3.jpg'
theImages[4] = '/graphics/footers/4.jpg'
theImages[5] = '/graphics/footers/5.jpg'
theImages[6] = '/graphics/footers/6.jpg'
theImages[7] = '/graphics/footers/7.jpg'
theImages[8] = '/graphics/footers/8.jpg'
theImages[9] = '/graphics/footers/9.jpg'
theImages[10] = '/graphics/footers/10.jpg'
theImages[11] = '/graphics/footers/11.jpg'
theImages[12] = '/graphics/footers/12.jpg'
theImages[13] = '/graphics/footers/13.jpg'
theImages[14] = '/graphics/footers/14.jpg'
theImages[15] = '/graphics/footers/15.jpg'
theImages[16] = '/graphics/footers/16.jpg'
theImages[17] = '/graphics/footers/17.jpg'
theImages[18] = '/graphics/footers/18.jpg'
theImages[19] = '/graphics/footers/19.jpg'
theImages[20] = '/graphics/footers/20.jpg'
theImages[21] = '/graphics/footers/21.jpg'
theImages[22] = '/graphics/footers/22.jpg'

// do not edit anything below this line
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
  preBuffer[i] = new Image()
  preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
  document.write('<img src="'+theImages[whichImage]+'" alt="One Planet Living in Sutton decorative footer image" width="800" height="135" />');
}

