function imgcrop(cname,height,i)
{
for (var j=1;j<=i;j++)
		{
   var _Img = document.getElementById(cname+j);
   var _height = _Img.offsetHeight;
   _Img.parentNode.style.height = height+"px";
   _Img.parentNode.style.overflow = "hidden";
		}
}
