function getPrint(print_area)
		{	
		
			//Creating new page
			
			var pp=window.open("","_blank","toolbar=no, location=no, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=yes,copyhistory=yes;width=700px;");
			//Adding HTML opening tag with <HEAD> … </HEAD> portion 
			
			pp.document.writeln('<HTML><HEAD><title>Print Preview</title><LINK href=StyleSheet/StyleSheet1.css  type="text/css" rel="stylesheet">');
			pp.document.writeln('<LINK href=StyleSheet/PrintStyle.css  type="text/css" rel="stylesheet" media="print"><base target="_self"></HEAD>');
			//pp.document.writeln('<script language="javascript" type="text/javascript" src="css/msgbox_js.js"></script>)
			//Adding Body Tag
			var BodyTag="<body >"//onload=disp_alert();>"// onload="+"GetTime('divClk')>"
			//alert(BodyTag);
			//pp.document.writeln('<body onload="GetTime('+ "divClk" + ')" bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0">');
			pp.document.writeln(BodyTag);
			//Adding form Tag
			pp.document.writeln('<form>');
			//Creating two buttons Print and Close within a table
			pp.document.writeln('<div id="divClk" style="color:black;font-family:Verdana;font-size:8 pt"></div>');
			
			
			pp.document.writeln('<TABLE width=900px class="tabb"><TR><TD>');
			pp.document.writeln('<div id="divClk" style="font-family:Verdana;font-size:8 pt"></div>');
			pp.document.writeln('</TD></TR>');
			pp.document.writeln('<TR><TD>');
		
			pp.document.writeln('<TABLE id="Table1"  cellSpacing="0" cellPadding="0" width="900px" align="center" border="0">');
			//pp.document.writeln('<TR><TD noWrap width="700px"><img src="images/print.gif" width="700"/></TD></TR>');
			pp.document.writeln('</TABLE></TD></TR>');
				
			//pp.document.writeln('<TR><TD align=left>');
			
			//pp.document.writeln('<img id="IMGPRINT" src="images/print.gif" class=cur onclick="javascript:location.reload(true);window.print();"/>');
			//pp.document.writeln('<a href id="PRINT" class=cur onclick="javascript:location.reload(true);window.print();">Print</a>&nbsp;&nbsp;&nbsp;&nbsp;');
					
			//pp.document.writeln('<img id="IMGCLOSE" src="images/delete.gif" class=cur onclick="window.close();"/>');
			//pp.document.writeln('<a href id="PRINT" class=cur onclick="window.close();">Close</a>');
			
			//pp.document.writeln('</TD></TR>');
			
			pp.document.writeln('<TR><TD>');
			//Writing print area of the calling page
			
			pp.document.writeln('<TABLE ><tr><td style="font-family:Verdana;font-size:9pt;font-weight:bold;color:black"></td></tr>');
			pp.document.writeln('<TR><TD><div >');
			pp.document.writeln(document.getElementById(print_area).innerHTML);
			pp.document.writeln('</div></TD></TR>');
			pp.document.writeln('</TABLE>');
			pp.document.writeln('</TABLE>');
			//Ending Tag of </form>, </body> and </HTML>
			pp.document.writeln('</form></body></HTML>');			
			
		}		
	
