function SwapImg(img1,ref1) {
	if (document.images) {
		document.images[img1].src = ref1;
	}
}

function SwapBtn(fnForm,fnBtn,fnImg) {
	if (document.images) {
		document.images[fnBtn].src = fnImg;
	}
}
