<!--
		
		var imgID = "";
		var img1 = "";
		var img2= "";
		var imgPath = "";
		
		function fnSwapImage(pString,path,imageID,pWhat) {
			
			var arrImages = pString.split(',');
			
			imgID = imageID;
			img1 = arrImages[0]; 
			img2= arrImages[1]; 
			imgPath = path + "/imagprod/imagthum/"; 

			if(pWhat == "swap"){
				setTimeout('fnSwapImage2()',0);
			}else{
				document.getElementById(imageID).src = imgPath + img1;
			}
			
		}
		
		function fnSwapImage2() {
				document.getElementById(imgID).src = imgPath + "/" + img2;
				
		}
		
		function fnSwapImage3(imageID) {
				document.getElementById(imgID).src = imgPath + "/" + img1;
		}
	
		function get_cookie(Name) {
		  var search = Name + "="
		  var returnvalue = "";
		  if (document.cookie.length > 0) {
			offset = document.cookie.indexOf(search)
			// if cookie exists
			if (offset != -1) { 
			  offset += search.length
			  // set index of beginning of value
			  end = document.cookie.indexOf(";", offset);
			  // set index of end of cookie value
			  if (end == -1) end = document.cookie.length;
			  returnvalue=unescape(document.cookie.substring(offset, end))
			  }
		   }
		  return returnvalue;
		}
-->
