﻿function newImg(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
function swapImages(item,image) {
var x = document.getElementById(item);
x.src=image;
}