>> To get the review block in product details page. You need to follow the two steps:
1) Add this code to catalog.xml like:
<catalog_product_view translate="label">
<reference name="content">
<block type="catalog/product_view" name="product.info" template="catalog/product/view.phtml">
<!--You need to copy below section -->
<block type="page/html_pager" name="product_review_list.toolbar"/>
<block type="core/template" name="product_review_list.count" template="review/product/view/count.phtml" />
<block type="review/product_view_list" name="product.detail.info.product_additional_data" as="product_review_data" template="review/product/view/list.phtml">
<block type="review/form" name="product.review.form" as="review_form">
<block type="page/html_wrapper" name="product.review.form.fields.before" as="form_fields_before" translate="label">
<label>Review Form Fields Before</label>
<action method="setMayBeInvisible"><value>1</value></action>
</block>
</block>
</block>
<!-- END --> </block>
</reference>
</catalog_product_view>
2) Now go to the view.phtml page. here you need to add this code:
<?php echo $this->getChildHtml('product_review_data') ?>
you are done> :)
>> To change the default number of reviews shown per page, follow this:
By default it shows 10, 20, 50. Go to app/code/core/Mage/Page/Block/Html/Pager.php
there you can find the line
<?php protected $_availableLimit = array(10=>10,20=>20,50=>50); ?>
change it as you want
<?php protected $_availableLimit = array(5=>5,10=>10,50=>50); ?>
Note*: You should do this step either by overriding the block OR copy the same file in the local directory like: app/code/local/Mage/Page/Block/Html/Pager.php