// JavaScript Document
function CallPrint(strid)
{
var prtContent = document.getElementById(strid);
var WinPrint =
window.open('','','letf=0,top=0,width=800,height=480,toolbar=0,scrollbars=yes,status=0');
WinPrint.document.write('<head>');
WinPrint.document.write('<TITLE>ComRemix - Remixando a Comunica&ccedil;&atilde;o</TITLE>');
WinPrint.document.write('<link rel="stylesheet" href="http://comremix.com.br/wp-content/themes/comremix/print.css" type="text/css" />');
WinPrint.document.write('</head>');
WinPrint.document.write('<body>');
WinPrint.document.write('<input name="print" type="image" onclick="window.print()" src="http://comremix.com.br/wp-content/themes/comremix/images/print.png" style="float: left;" /> <p style="font-weight:bold; line-height:55px; text-indent: 5pt;">Imprimir Artigo (s)</p><p>ComRemix - Remixando a Comunica&ccedil;&atilde;o - comremix.com.br</p>');
WinPrint.document.write('<div class="header">');
WinPrint.document.write('<div style="float:left; width: 100%; height: 136px;">');
WinPrint.document.write('<div style="float: left; height: 154px; width: 292px; display: block; padding: 0px; margin-top: 5px; margin-right: 0px; margin-bottom: 0px; margin-left: 20px;"><img src="http://comremix.com.br/wp-content/themes/comremix/images/logo.png" alt="ComRemix - Remixando a Comunica&ccedil;&atilde;o" width="248" title="ComRemix - Remixando a Comunica&ccedil;&atilde;o" heigh="78" /></div>');
WinPrint.document.write('<div style="float: left; height: 35px; width: 255px; font-size: 19px; font-weight: bold; color: #39646B; z-index: 1000; padding: 0px; margin-top: 90px; margin-right: 0px; margin-bottom: 0px; margin-left: -30px; _margin-left: -40px;	display: block;">Remixando a Comunica&ccedil;&atilde;o</div>');
WinPrint.document.write('</div></div>');
WinPrint.document.write(prtContent.innerHTML);
WinPrint.document.write('</body>');
WinPrint.document.close();
WinPrint.focus();
}