String productImageId = request.getParameter("productImageId");
ProductImage image = null;
if(productImageId!=null) {
try {
image = gatewayService.findProductImage(new Long(productImageId));
} catch (Exception e) {
image = null;
}
}
if(image!=null) {