I am working on a project where I want to print a bill.It is running successfully but now I want to print particular content on a new page.
following is print screen image where I want to display terms and condition always on new page,at present it is displayed on same page depend upon bill content.I am new to new this any help will be appreciated.Thanks in advance

EDIT :-
<script type="text/javascript">
$(document).ready(function (){
$('.printpreview').click(function()
{
$('.printpreview').hide()
window.print();
});
});
</script>