Try this
<html>
<head>
<script type="text/javascript">
function CallPrint()
{
var WinPrint = window.open('', '',
'left=30,top=0,width=600,height=600,toolbar=1,scrollbars=1,status=0');
var ss='<table style="text-align:justify;"><tr><td><style type="text/css">your styles</style><h1>ITS A TEST......</h1><br /><h1>ITS A TEST</h1><br /><br /><h1>CONTENT FOR PRINTING.........</h1><br /></td><table><tbody><tr></tr></tbody></table></tr></table>';
WinPrint.document.write(ss);
WinPrint.document.close();
WinPrint.focus();
WinPrint.print();
}
</script>
</head>
<body>
<br />
<br />
<br />
<a önclick="CallPrint()">PRINT</a>
</body>
</html>