function RowClickBillListBoleto(arg1,arg2,arg3){
if( ! $('#boleto-message').length ) {
alert("Length is zero");
$('body').append('<div style="display:none"><div id="boleto-message" title="Boleto document is being created"><p>Boleto documents are being created for the selected invoices.<br/>The Boleto documents are ready when you see the boleto <img name="Image123" border="0" src="<webbase:themePath uri='images/boleto.png'/>"/> icon next to the pdf <img border="0" src="<webbase:themePath uri='img/view.gif'/>"/> icon.</p><hr/><p>Os boletos estão sendo criados para as faturas selecionadas.<br/>Os boletos estarão prontos quando você visualizar o ícone do boleto <img name="Image123" border="0" src="<webbase:themePath uri='images/boleto.png'/>"/> ao lado do ícone do PDF <img border="0" src="<webbase:themePath uri='img/view.gif'/>"/>.</p></div></div>');
}
$( "#boleto-message" ).dialog({
height:280,
width:470,
minWidth: 470,
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
RowClickBillList(arg1,arg2,arg3);
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
$('#boleto-message').css("height", 180);