function onEndCrop(coords, dimensions) {
	$('crop_x1').value = coords.x1;
	$('crop_y1').value = coords.y1;
	$('crop_x2').value = coords.x2;
 	$('crop_y2').value = coords.y2;
	$('crop_width').value = dimensions.width;
	$('crop_height').value = dimensions.height;
}
