// JavaScript Document
function create() 
  {
  this.width = this.height = this.src = this.border = '';
  }

function random(min, max)
  {
  return Math.round(((max - min) * Math.random()) + 1);
  }

var lower = 1, upper = 6;
pict = new Array()
for(var i = lower; i <= upper; i++) 
  { 
  pict[i] = new create() 
  }
  
 
pict[1].width = "580"
pict[1].height = "200"
pict[1].src = "images/cleaning_pict1.jpg"
pict[1].border = "0"

pict[2].width = "580"
pict[2].height = "200"
pict[2].src = "images/cleaning_pict2.jpg"
pict[2].border = "0"

pict[3].width = "580"
pict[3].height = "200"
pict[3].src = "images/cleaning_pict3.jpg"
pict[3].border = "0"

pict[4].width = "580"
pict[4].height = "200"
pict[4].src = "images/cleaning_pict4.jpg"
pict[4].border = "0"

pict[5].width = "580"
pict[5].height = "200"
pict[5].src = "images/cleaning_pict5.jpg"
pict[5].border = "0"

pict[6].width = "580"
pict[6].height = "200"
pict[6].src = "images/cleaning_pict6.jpg"
pict[6].border = "0"


var pict1 = ""

n = random(lower, upper)

pict1 += '<img src="' + pict[n].src + '" width=' + pict[n].width
pict1 += '\n height=' + pict[n].height + ' border=' + pict[n].border
