myPix = new Array("imgs/bgHIG01.gif")imgCt = myPix.lengthfunction choosePic() {	if (document.images) {		randomNum = Math.floor((Math.random() * imgCt))		document.myPicture.src = myPix[randomNum]	}}	