function switchBigImage(id,bImgWidth,src) {
	
	document.getElementById('B'+id).src = '_cms_/func/img.php?path='+src+'&x='+bImgWidth;
	
}
function popUpBigImage(bImgId) {
	
	var actImg = document.getElementById('B'+bImgId);
	
	window.open(actImg.src,'','location=0,status=0,toolbar=0,menubar=0,directories=0,history=0,scrollbars=0,width='+actImg.offsetWidth+',height='+actImg.offsetHeight);
	
}