function adjustPic(cpId) {
	window.setTimeout( function() {
		var oImg = $('imgCp' + cpId);

		var oDv = $('dvPic' + cpId);
		var w = oImg.width;
			if (w > 120) {
				oImg.width = 120;
			}
			oDv.style.height = (oImg.height+2) + 'px';
		}, 300);
}