function changeImage(imgName, imgPath)
{
  if(document.images)
  {   
    eval("document."+imgName+
    ".src=('"+imgPath+"')");
  }
}