function ShowImages() {
	CurrentPic= (CurrentPic== DisplayPics.length -1) ? 0 : CurrentPic+1;
	document.images.show.src = DisplayPics[CurrentPic] ;
	showpicdescription();
	window.setTimeout("ShowImages()", Delay );
}
function ShowBigImage(ImageToShow, ImageWidth, ImageHeight, WindowPosLeft, WindowPosTop) {
	ImageHeight += 12;
	ImageWidth += 12;
	var TheImgWin = window.open("","LargeImage",'height=' + 625 + ',width=' + 750 + ',toolbar=no,directories=no,status=no,' + 'menubar=no,scrollbars=no,resizable=no');
	TheImgWin.document.write("<CENTER><table width="+ 700 +"px height=" + 525 +"px>");
	TheImgWin.document.write("<tr><center><img src="+ DisplayLargePics[CurrentPic].toString() +" width=\""+ 700 +"\"height=\""+ 525 + "\"align=\"left\"></center></tr>");
	TheImgWin.document.write("<tr><a href=\"javascript:window.close()\"><center>Close Window</a></center></tr>");TheImgWin.document.write("</table></CENTER>");TheImgWin.resizeTo(750,625);TheImgWin.moveTo(WindowPosLeft,WindowPosTop);TheImgWin.focus();
}
function showpicdescription() {
	document.getElementById("PicDescr").innerText = DisplayPicDes[CurrentPic].toString();
}
