diff --git amazon_store.css amazon_store.css
index 4c6922f..ac1ec40 100644
--- amazon_store.css
+++ amazon_store.css
@@ -83,3 +83,8 @@
   vertical-align: top;
   line-height: 120%;
 }
+
+.customer_review_iframe {
+  width: 100%;
+  height: 500px;
+}
\ No newline at end of file
diff --git amazon_store_item_reviews_panel.tpl.php amazon_store_item_reviews_panel.tpl.php
index a369262..d91bf80 100644
--- amazon_store_item_reviews_panel.tpl.php
+++ amazon_store_item_reviews_panel.tpl.php
@@ -5,28 +5,10 @@
  *   template for item_reviews panel
  */
 
-if ($item->CustomerReviews->Review) {
-  $rounded_avg = round($item->CustomerReviews->AverageRating);
-
+if (!empty($item->CustomerReviews->IFrameURL)) {
 ?>
-<p><strong>Average Amazon User Rating:</strong>
-  <?php print theme('image', array('path' => "$directory/images/{$rounded_avg}stars.gif", 'title' => "{$item->CustomerReviews->AverageRating} stars", 'alt' => "{$item->CustomerReviews->AverageRating} stars")); ?>
-
-<?php
-  foreach ($item->CustomerReviews->Review as $review) {
-
-    $rounded_stars = round($review->Rating);
-    ?>
 <div class="customer_review">
-<p>
-  <?php print theme('image', array('path' => "$directory/images/{$rounded_stars}stars.gif", 'title' => "{$review->Rating} stars", 'alt' => "{$review->Rating} stars")); ?>
-	<strong> <?php print $review->Summary ?></strong>
-	<?php print $review->Date ?></p>
-<p>Reviewer: <strong><?php print $review->Reviewer->Name ?></strong></p>
-
-<p><?php print $review->Content ?></p>
+<iframe class="customer_review_iframe" src="<?php print check_url($item->CustomerReviews->IFrameURL);?>"/>
 </div>
 <?php
-
-  }
 }
