function SwapImage(strPicClassName,strImgName)
 {
   if (document.images)
    {
		// Prepend path to images
		strImgName = "images/" + strImgName;
		document[ strPicClassName ].src = strImgName;
    }
 }

