function adilTextPrint(objid,urun,rw) {
	// open new window
	var doc=window.open('','name','height=900,width=753');
 
	doc.document.write('<html><head><title>ÜRÜN NO :'+urun+' </title>');
	doc.document.write('<style>');
	doc.document.write('td{');
	doc.document.write('font-family:Tahoma;');
	doc.document.write('font-size:12px;');
	doc.document.write('}');
	doc.document.write('</style>');
	doc.document.write('</head><body>');
 	doc.document.write('<table  width="100%" cellspacing="0" cellpadding="5" >');
 	doc.document.write('<tr>');
 	doc.document.write('<td colspan="3" align="left"><img src="'+rw+'images/logo.jpg" /></td></tr>');
 	doc.document.write('<tr><td height="50" colspan="3" align="center"></td></tr>');
 	doc.document.write('<tr><td width="10" align="center">&nbsp;</td >');
 	doc.document.write('<td align="center"  bgcolor="#b7b3b4"><strong>KAYALAR GRUP A.Ş</strong></td >');
 	doc.document.write('<td width="10" align="center">&nbsp;</td ></tr>');
 	doc.document.write('<tr><td  height="30" colspan="3" align="center"></td></tr></table>'); 
	 
	// copy the content of the page
	doc.document.write(document.getElementById(objid).innerHTML);
 
	// remove out toolbar if it's there
 
 
	doc.document.write('</body></html>');
 
	// flush the input
	doc.document.close();
 
	// print the page
	doc.print();	
}
