// JavaScript Document
function changeImage(id, imageName, imageTitle, strLink){
	if (document.getElementById("img_" + id)) {
    	document.getElementById("img_" + id).src = imageName;
        document.getElementById("img_" + id).title = imageTitle;
        document.getElementById("img_" + id).alt = imageTitle;
<!--        document.getElementById("lnk_" + id).href = strLink; -->
     }
}
