function swapImg( imgSrc, imgDest, imgText, txtDest )
{	document.getElementById(imgDest).src = imgSrc;
	document.getElementById(txtDest).innerHTML = imgText;
	return false;
}