<?php
JLoader::register('VmConfig', JPATH_ADMINISTRATOR . '/components/com_virtuemart/helpers/config.php');
VmConfig::loadConfig();
$productId = JFactory::getApplication()->input->getInt('virtuemart_product_id', 0);
$productModel = VmModel::getModel('product');
$ratingModel = VmModel::getModel('ratings');
$productModel->withRating = $ratingModel->showRating($productId);
$product = $productModel->getProduct($productId, true, true, true, 1); // Get the product object.
$productModel->addImages($product);
?>