// JavaScript Document

function swapPicture(sPicTarget,sUrl,sComent,sCapTarget,sCaption){
	document.getElementById(sPicTarget).src = sUrl;
	document.getElementById(sPicTarget).alt = sComent;
	document.getElementById(sCapTarget).innerText = sCaption;
}
