function getPrint(dvCompany)
		{	
		
//Creating new page
			 if (pp != null) 
			 {
			 	pp.focus();
			 }
			 else
			 {
				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_print.gif" style="cursor: pointer" width="146" height="51" hspace="35"></td><TD align=right><img src="../images/print_b.gif" ID="PRINT" onclick="javascript:location.reload(true);window.print();" style="cursor: pointer" hspace="5"><img src="../images/close_b.gif" ID="CLOSE" style="cursor: pointer" 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">');
			var mycontent=document.getElementById(dvCompany).innerHTML;
			pp.document.writeln(mycontent);
			
			pp.document.writeln('</TR></TD></TABLE');
//			alert(document.Form1.txt1.value); 
			//Ending Tag of </form>, </body> and </HTML>
			pp.document.writeln('</form></body></HTML>');		
			//
		}	