		function getPrint(print_area)
		{	
			//Creating new page
			var pp = window.open();
			//Adding HTML opening tag with <HEAD> … </HEAD> portion 
			pp.document.writeln('<HTML><HEAD><title>Print Preview - Interest on Security Deposit</title><LINK href=PrintStyle.css type="text/css" rel="stylesheet" media="print">');
			pp.document.writeln('<LINK href=PrintPreviewStyle.css  type="text/css" rel="stylesheet"><base target="_self"></HEAD>');
			//Adding Body Tag
			pp.document.writeln('<body MS_POSITIONING="GridLayout">');
			//Adding form Tag
			pp.document.writeln('<form  method="post">');
			//Creating two buttons Print and Close within a table
			pp.document.writeln('<TABLE width=100%><TR><TD></TD></TR><TR><TD align="center"><img border="0" src="../../images/drrp-g1.gif"></TD></TR><TR><TD align = "center">');
			//Writing print area of the calling page
			pp.document.writeln(document.getElementById(print_area).innerHTML);
			//Ending Tag of </form>, </body> and </HTML>
			pp.document.writeln('</TD></TR><tr><TD></td></tr><tr><td align="Center"><INPUT ID="PRINT" type="button" value="Print" onclick="javascript:location.reload(true);window.print();"><INPUT ID="CLOSE" type="button" value="Close" onclick="window.close();"></TD></TR></TABLE><br><div id="PrintPreview"></form></div></body></HTML>');			
		}		
		
