function printSearch(menuID,tru,divid)//This function is to display the popup window for printing the article
				{
					var width = 792;
					var height = 700;
					  if (document.all)
						{
							var w = screen.availWidth;
							var h = screen.availHeight;
							var popW = width, popH = height;
							var cx = (w-popW)/2
							var cy = ((h-popH)/2)-30;
						}
						else {
							var x = window.screenX;
							var y = window.screenY;
							var w = window.outerWidth;
							var h = window.outerHeight;
							var cx = x + Math.round((w - width) / 2);
							var cy = y + Math.round((h - height) / 2);
						}
					window.open ('printsearch.aspx?m='+ menuID +'&print='+tru+'&divid='+divid,'Print', 'status=yes,titlebar=yes,scrollbars=yes, toolbar=yes, resizable=yes, menubar=yes,location=yes,directories=yes,left=' + cx + ',top=' + cy + ',width=' + width + ',height=' + height);
					//window.open('printarticle.aspx?m='+ menuID +'&print='+tru,'','scrollbars=yes, toolbar=no, resizable=no, width=900, height=700','');
				}
				
function printArticle_template(menuID,tru,template)//This function is to display the popup window for printing the article
				{
					var width = 720;
					var height = 700;
					  if (document.all)
						{
							var w = screen.availWidth;
							var h = screen.availHeight;
							var popW = width, popH = height;
							var cx = (w-popW)/2
							var cy = ((h-popH)/2)-30;
						}
						else {
							var x = window.screenX;
							var y = window.screenY;
							var w = window.outerWidth;
							var h = window.outerHeight;
							var cx = x + Math.round((w - width) / 2);
							var cy = y + Math.round((h - height) / 2);
						}
					window.open (template + '?m='+ menuID +'&print='+tru,'Print', 'scrollbars=yes, toolbar=no, resizable=no,left=' + cx + ',top=' + cy + ',width=' + width + ',height=' + height);
					//window.open('printarticle.aspx?m='+ menuID +'&print='+tru,'','scrollbars=yes, toolbar=no, resizable=no, width=900, height=700','');
				}

