	<!-- Begin

	function DISPLAY() {

	var nPics = 6; // number of pictures
	var imgArray  = new Array();
	imgArray[1] = new Image();

	var PicName 

	count=Math.ceil(Math.random()*nPics )

	PicName = "images/display/display" + count + ".jpg";
	imgArray[1].src =PicName

	document.images[0].src = imgArray[1].src;
	//document.write(PicName)
    
	}
	// -->