//<script>

function ChangeImage(ImageToChange, ImageToShow) {
	if (document.images) {
		document[ImageToChange].src = ImageToShow;
	}
}
