function getPrint(dvCompany)
		{	
			//Creating new page
			var pp = window.open("&nbsp;", "tinyWindow",'width=600,height=500,scrollbars=yes');
			//Adding HTML opening tag with <HEAD> … </HEAD> portion 
			pp.document.writeln('<HTML><HEAD><title>NETE - Print Preview</title><LINK href=../css/Style.css  type="text/css" rel="stylesheet">')
			pp.document.writeln('<LINK href=../css/Style.css  type="text/css" rel="stylesheet" media="print"><base target="_self"></HEAD>')
			//Adding Body Tag
			pp.document.writeln('<body MS_POSITIONING="GridLayout" bottomMargin="0" leftMargin="0" topMargin="0" rightMargin="0">');
			//Adding form Tag
			pp.document.writeln('<form id=frm1  method="post">');
			//Creating two buttons Print and Close within a table
			pp.document.writeln('<TABLE width="100%" border="0"><TR><TD></TD></TR><TR><td width="109" height="75"><img src="../images/logo.gif" width="186" height="58" hspace="35"></td><TD align=right><img src="../images/print_b.gif" ID="PRINT" onclick="javascript:location.reload(true);window.print();" hspace="5"><img src="../images/close_b.gif" ID="CLOSE" onclick="window.close();">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD></TR><TR><TD></TD></TR>');
			//Writing print area of the calling page
			pp.document.writeln('<TR align=center><TD  colspan="2">');
			pp.document.writeln(document.getElementById(dvCompany).innerHTML);
			pp.document.writeln('</TR></TD></TABLE');
			//Ending Tag of </form>, </body> and </HTML>
			pp.document.writeln('</form></body></HTML>');			
		}		
