jQuery.jPrintArea=function(el)
{
	
var a = window. open('','','scrollbars=yes,width=500,height=300');

a.document.open("text/html");
a.document.write('<html><head><link rel="stylesheet" href="css/styles_print.css" />');
a.document.write('<div style="font-size:14px;font-family:Arial"><strong>Perkons</strong></div><hr>');
a.document.write(document.getElementById('area_imprimivel').innerHTML);
a.document.write('<div align="center"><button onclick=\'window.close()\'>Fechar</button></div>');
a.document.write('</body></html>');
a.document.close();
a.print();	
	
	
/*	
var iframe=document.createElement('IFRAME');
var doc=null;
$(iframe).attr('style','position:absolute;width:0px;height:0px;left:-500px;top:-500px;');
document.body.appendChild(iframe);
doc=iframe.contentWindow.document;
var links=window.document.getElementsByTagName('link');
for(var i=0;i<links.length;i++)

	if(links[i].rel.toLowerCase()=='stylesheet')
	doc.write('<link type="text/css" rel="stylesheet" href="css/styles_print.css" />');
	doc.write('<div class="'+$(el).attr("class")+'" style="font-size:12pt"><div>Perkons</div><hr/>'+$(el).html()+'</div>');

doc.close();
iframe.contentWindow.focus();
iframe.contentWindow.print();
alert('O documento foi enviado para impressão...');
//wait(1);
document.body.removeChild(iframe);*/
}