﻿function printContent(id){
   str=document.getElementById(id).innerHTML
   newwin=window.open('','printwin','left=100,top=100,scrollbars=yes,width=600,height=600')
   newwin.document.open();
   newwin.document.write('<html><head><title>Impresión de Registración</title><link rel="stylesheet" type="text/css" href="/css/global.css" /><link rel="stylesheet" type="text/css" href="/css/style.css" /><link rel="stylesheet" type="text/css" href="http://www.palermovalley.com/wp-content/themes/palermo2/style.css" /> </head>');
   newwin.document.write('<body class="ticket" onload="window.print();"><div>\n')
   newwin.document.write(str)
//   newwin.document.write('<strong class="highlight">a</strong> href="#" onClick="window.print();"><strong class="highlight">Imprimir</strong></a>')
//   newwin.document.write('<strong class="highlight">a</strong> href="javascript<b></b>:window.close();">Cerrar Ventana</a></div></body></html>');
   newwin.document.close();
   newwin.print();
}
