
function setImage(imageURL, caption, imageLarge) {
	document.getElementById('Imageproduct').src = imageURL;
	

	if (caption != '')
	  document.getElementById('Caption').firstChild.data = caption;

        if (imageLarge != '')
        {
	  if(document.getElementById('imageLupe')) {
	    document.getElementById('imageLupe').style.display = 'inline';
            document.getElementById('imageLupe').firstChild.href = imageLarge;
	  }
	  if(document.getElementById('imageLupeVisible')) {
            document.getElementById('imageLupeVisible').firstChild.href = imageLarge;
	  }
        }
//	else
//   	document.getElementById('imageLupe').style.display = 'none';


}

