
	function setZoomedImage(){
		var newImgPath;	
			
		objZoomedImg = document.getElementById("zoomedImage");
		newImgPath = objZoomedImg.src.substring(32,objZoomedImg.src.length);
		newImgPath = newImgPath.replace("/p","/istarimages/mp")
		newImgPath = newImgPath.replace("/t","")
		newImgPath = newImgPath.replace("pt-","")
		newImgPath = newImgPath.replace(".jpg","_d.jpg")		
		objZoomedImg.src = newImgPath;
	}
