Below is the code which i used but It doesn't print the pdf file.
<script type="text/javascript">
function CallPrint() {
var pages = 'pdf url';
var oWindow = window.open(pages, "print");
oWindow.focus();
self.print();
oWindow.close();
return false;
}
</script>