/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function tx_hcdwthumbs_changeImage(img, newImage)
{
  if (typeof(img) == 'string')
    img = document.getElementById(img);
  if (img)
  {
    if (typeof(newImage) == 'string')
      img.src = newImage;
  }
}


