

function swapImg(path, element,capelement, caption){
temp = document.getElementById(element);
temp.src = path;
if(capelement!=''){
capt = document.getElementById(capelement);
capt.firstChild.nodeValue=caption;
}
}