function abrir_popup_imprimir(secao){
	
	var head_title;
	var titulo;
	var conteudo;
	
	if (secao == 'release')
	{
		conteudo = $('#PrintContent').html();
	}

	var popup = window.open('','Titulo','height=500,width=628,scrollbars=auto');
	popup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	popup.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">');
	popup.document.write('<head>');
	popup.document.write('<title>Akakia Cosméticos</title>');
	popup.document.write('<base href="'+$('base').attr('href')+'" />');
	popup.document.write('<link rel="stylesheet" type="text/css" media="all" href="assets/css/site/master.css" />');
    popup.document.write('<link rel="stylesheet" type="text/css" media="all" href="assets/css/site/app/app.css" />');
	popup.document.write('</head><body>');
	popup.document.write(conteudo);
	popup.document.write('</body></html>');
	popup.document.close();
	popup.print();
}

function imprimir_clipping(){
	
	var head_title;
	var titulo;
	var conteudo;
	
	conteudo = $('#modal-clipping').html();

	var popup = window.open('','Titulo','height=500,width=628,scrollbars=auto');
	popup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	popup.document.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pt-br" lang="pt-br">');
	popup.document.write('<head>');
	popup.document.write('<title>Akakia Cosméticos</title>');
	popup.document.write('<base href="'+$('base').attr('href')+'" />');
	popup.document.write('<link rel="stylesheet" type="text/css" media="all" href="assets/css/site/master.css" />');
    popup.document.write('<link rel="stylesheet" type="text/css" media="all" href="assets/css/site/app/app.css" />');
	popup.document.write('</head><body>');
	popup.document.write(conteudo);
	popup.document.write('</body></html>');
	popup.document.close();
	popup.print();
}