function switchImage(imgSrc, targetImageName)
{
document.getElementById(targetImageName).src = imgSrc;
}

