function print_prod(arr,sys) {
		var newwin =  window.open('','printwin', 'toolbar=no,menubar=no,location=no,status=no,scrollbars=yes,resizable=no,width=650,height=600,top=100, left=100');
		var numb=0;	
		var str = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">					<title></title>					<style>body, td, table{font-family:Verdana, Arial, Helvetica, sans-serif; font-size:11px}</style>					</head>					<body>						<table width="600px" border="0px" cellspacing="0" cellpadding="0">						<tr>							<td>								<table  border="0px" cellspacing="0" cellpadding="0" vspace="0" hspace="0">									<tr>										<td width="103"><img src="img/print_pdf_logo.jpg" hspace="0px" vspace="0px"></td>										<td><b>'+sys[0]+'</b><br>'+sys[1]+'-'+sys[2]+'-'+sys[3]+'</td>									</tr>								</table>								</td></tr><tr height="1px" bgcolor="#000000"><td height="1px" bgcolor="#000000"></td></tr><tr height="10px"><td height="1px"></td></tr></table><table width="600" border="0px"><tr border="0px"><td width="72px" valign="top" align="left"></td><td width="" valign="bottom" align="left">'+sys[4]+':</b></td><th="40px" valign="bottom"  align="center">'+sys[5]+':</td><td width="120px" valign="bottom"  align="center">'+sys[6]+':</td></tr></table>';
		
		for(i in arr){
			var img_str='';
			if (arr[i][2] == 'null') {
				arr[i][2] = '';
			}
			if (arr[i][0] == 'null') {
				img_str = '';
			}else{
				img_str = '<img src="'+arr[i][0]+'" width="72px" height="72px" border="1px"/>';
			}
// img: arr[i][0];
// name: arr[i][1];
// txt: arr[i][2];
// mtype: arr[i][3];
// count: arr[i][4];
			str+='<table width="600" style="border:#EBEBEB; border-style:solid; border-width:1px; border-left:none; border-right:none; border-bottom:none" cellspacing="4" cellpadding="4"><tr border="0px"><td width="72px" valign="top" align="left" border="0px">'+img_str+'</td><td width="" valign="top" align="left"><table width="100%" border="0px"><tr><td><b>'+arr[i][1]+'</b></td></tr><tr><td align="justify">'+arr[i][2]+'</td></tr></table></td><td width="40px" valign="top" align="center">'+arr[i][3]+'</td><td width="120px" valign="top" align="center"><b>'+arr[i][4]+'</b></td></tr></table>';
		}
		str+='</body></html>';
		newwin.document.write(str);
		newwin.document.close(); 
   		newwin.focus(); 
		newwin.print();
		//newwin.close();
};
