function printlogs(id){ var XMLhttpObj = createXMLHttpRequest(); XMLhttpObj.open("POST","//www.akauni.com/js/print/printlogs.cgi?"+id,false); XMLhttpObj.send("print="+id); try { _gaq.push(['_trackEvent', 'Printlogs', 'Print '+id]); } catch(e) { } self.print(); } function createXMLHttpRequest(){ var XMLhttpObject = null; try{ XMLhttpObject = new XMLHttpRequest(); } catch(e){ try{ XMLhttpObject = new ActiveXObject("Msxml2.XMLHTTP"); } catch(e){ try{ XMLhttpObject = new ActiveXObject("Microsoft.XMLHTTP"); } catch(e){ return null; } } } return XMLhttpObject; } if(window.print) document.write('');