Welcome Guest Search | Active Topics | Sign In | Register

ClientSideOnBlur in DatePicker control error Options
Camarate
Posted: Tuesday, January 20, 2015 10:52:07 AM
Rank: Advanced Member
Groups: Member

Joined: 9/2/2010
Posts: 120
Hi,

After I upgraded the EO.Web Controls version from 2012 to 2014 an error is occurring in a page of my application, as you can see below.



Although the literals in screen are in Portuguese, what matters is that the "DtInicChanged" javacript function is not find by HTML interpreter. You can see in the HTML code below that the function exists.

Quote:
<%@ Assembly Name="GLM" %>
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="document.aspx.vb" Inherits="GLM.document" %>

<%@ Register Assembly="EO.Web" Namespace="EO.Web" TagPrefix="eo" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Sistema Integrado de SMS</title>
<base target="_self" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<script language="JavaScript1.2">
<!--
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
//-->
</script>
<script src="jquery-latest.min.js" type="text/javascript" ></script>
<SCRIPT src="js/mask.js" type=text/javascript></SCRIPT>
<script language="JavaScript">
<!--
javascript:window.history.forward(1);
//-->
</script>
<script type ="text/javascript">

function onlyNumbers(evt)
{
var e = event || evt; // for trans-browser compatibility
var charCode = e.which || e.keyCode;

if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;

return true;

}

function focusNumbers()
{
var text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
var oldtext = text.value;
var newtext = "";
for (i = 0; i < oldtext.length; i++)
{
if (oldtext.charCodeAt(i) >= 48 && oldtext.charCodeAt(i) <= 57)
{
newtext += oldtext.subst(i,1);
}
}
text.value = newtext;
}

function burNumbers()
{
var text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
text.value = PutNumericSeparator(text.value);
}

function PutNumericSeparator(number)
{
if (number == "") { return ""; }

var newtext = "";
var count = number.length % 3;

for (i = 0; i < number.length; i++)
{
if (number.charCodeAt(i) >= 48 && number.charCodeAt(i) <= 57)
{
if (count == 0)
{
newtext += '<%=Session("ThousandSeparator")%>';
count = 3;
}
newtext += number.substr(i,1);
count -= 1;
}
}
return newtext;
}

var whichFocus=null;

function BodyLoad()
{
var dialog = eo_GetObject('dlgPostBack');
dialog.setCaption(document.title);

if ('<%=Session("IdFirstDeliveryView")%>' == '1')
{
var tbl = null;

tbl = $("#tabEntrega1");
if (tbl)
{
var newTbl = tbl.clone();
tbl.remove();
newTbl.id = "tabEntrega1";
newTbl.appendTo("#divDocumento");
}

tbl = $("#tabEntrega2");
if (tbl)
{
var newTbl = tbl.clone();
tbl.remove();
newTbl.id = "tabEntrega2";
newTbl.appendTo("#divDocumento");
}

tbl = $("#tabEntrega3");
if (tbl)
{
var newTbl = tbl.clone();
tbl.remove();
newTbl.id = "tabEntrega3";
newTbl.appendTo("#divDocumento");
}

tbl = $("#TabDocumentoPosterior");
if (tbl)
{
var newTbl = tbl.clone();
tbl.remove();
newTbl.id = "TabDocumentoPosterior";
newTbl.appendTo("#divDocumento");
}
}

MudaInformativa();

TrataGridARO();

SharedUnitChanged(true);

SetaCamposExigencia(false);
}

function TrataGridARO()
{
if (document.getElementById("<%=lblCabARO.ClientID%>"))
{
if (document.getElementById("<%=grdARO.ClientID%>"))
{
document.getElementById("<%=grdARO.ClientID%>").style.visibility="visible";
document.getElementById("<%=grdARO.ClientID%>").style.height="115px";
}
// document.getElementById("<%=tabARO.ClientID%>").style.visibility="visible";
} else {
if (document.getElementById("<%=grdARO.ClientID%>"))
{
document.getElementById("<%=grdARO.ClientID%>").style.height="0px";
document.getElementById("<%=grdARO.ClientID%>").style.visibility="hidden";
}
// document.getElementById("<%=tabARO.ClientID%>").style.visibility="hidden";
}
}

function cursor_wait()
{
document.body.style.cursor = 'wait';
return true;
}

function cursor_default()
{
document.body.style.cursor = 'default';
return true;
}

function cmpFocus(obj, evt)
{
if(evt.type=="focus")
{
document.body.style.cursor='hand';
}
else if(evt.type=="blur")
{
document.body.style.cursor = 'default';
}
}

function btFocus(obj, evt)
{
if(evt.type=="focus")
{
whichFocus=obj;
if (obj.src.search('_c.') != -1)
{
obj.src = obj.src.substring(0,obj.src.length - 6) + '.PNG';
}
}
else if(evt.type=="blur")
{
whichFocus=null;
if (obj.src.search('_c.') == -1)
{
obj.src = obj.src.substring(0,obj.src.length - 4) + '_c.PNG';
}
}
}

function btOver(obj, evt)
{
if(evt.type=="mouseover")
{
if (obj.src.search('_c.') != -1)
{
obj.src = obj.src.substring(0,obj.src.length - 6) + '.PNG';
}
}
else if(evt.type=="mouseout")
{
if (obj.src.search('_c.') == -1 && whichFocus != obj)
{
obj.src = obj.src.substring(0,obj.src.length - 4) + '_c.PNG';
}
}
}

function UpperCase(cmp)
{
cmp.value = cmp.value.toUpperCase().replace(/([^0-9A-Z])/g,"");
}

function CloseWindow(code)
{
if (code != null) { window.returnValue = code; }
window.open('','_self','');
window.close();
return false;
}

function MenuClick(proc, seqdoc, onlyview)
{
if (proc == 1)
{
var param = "documentpdf.aspx?seqdoc=" + seqdoc + "&onlyview=" + onlyview;
var hei = 400;
var wid = 680;
}

var top = (screen.availWidth,screen.availHeight - hei) / 2;
var lef = (screen.availWidth,screen.availWidth - wid) / 2;

if (window.showModalDialog)
{
window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" + hei + "px,dialogTop=" + top + ",dialogLeft=" + lef + "px");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes');
}

return false;
}

function Help(url)
{

var hei = 660;
var wid = 976;
var lef = (screen.availHeight - hei) / 2;
var top = (((screen.availWidth - wid) / 2) / 2) - 35;

window.open('showhelp.aspx?pdffile=' + url, '', 'toolbar=0,location=0,directories=0,status=0,menubar=0,top=' + top + ',left=' + lef + ',height=' + hei + ',width=' + wid + ',resizable=1');

return false;
}

function OnItemCommand(grid, itemIndex, colIndex, commandName)
{
grid.raiseItemCommandEvent(itemIndex, commandName);
}

function CallcbpDatasFrequencias(param)
{
eo_Callback('cbpDatasFrequencias', param);
}

function aaa()
{
if (document.getElementById("<%=lblCabDtVencInicio.ClientID%>").style.backgroundColor == "blue")
{
document.getElementById("<%=lblCabDtVencInicio.ClientID%>").style.backgroundColor = "green";
} else {
document.getElementById("<%=lblCabDtVencInicio.ClientID%>").style.backgroundColor = "red";
}
}

function bbb()
{
document.getElementById("<%=lblCabDtVencInicio.ClientID%>").style.backgroundColor = "";
}

function ccc()
{
document.getElementById("<%=lblCabDtVencInicio.ClientID%>").style.backgroundColor = "blue";
}

function DtInicChanged()
{
if (document.getElementById("<%=dtpDtVencInicio.ClientID%>"))
{
if (eo_GetObject("dtpDtVencInicio").getSelectedDate() != null)
{
setTimeout(function() { CallcbpDatasFrequencias('DI'); }, 200);
}
}
}

function DtVencChanged()
{
var ChTrocaDtEntr = false;
if (document.getElementById("<%=dtpDtDocEntrega.ClientID%>"))
{
var DtEntr = eo_GetObject("dtpDtDocEntrega");
if (DtEntr.getSelectedDate() != null)
{
return false;
}
ChTrocaDtEntr = true;
}
if (document.getElementById("<%=dtpDtVencFim.ClientID%>"))
{
var DtFim = eo_GetObject("dtpDtVencFim");
if (DtFim.getSelectedDate() == null)
{
return false;
}
if (ChTrocaDtEntr == true) { DtEntr.setSelectedDate(DtFim.getSelectedDate()); }
} else {
return false;
}
// eo_Callback('cbpDatasFrequencias', 'DV');
setTimeout(function() { CallcbpDatasFrequencias('DV'); }, 200);
}

function DtEntregaChanged()
{
if (document.getElementById("<%=dtpDtDocEntrega.ClientID%>"))
{
var DtEntr = eo_GetObject("dtpDtDocEntrega");
if (DtEntr.getSelectedDate() == null)
{
return false;
}
} else {
return false;
}

if (document.getElementById("<%=dtpDtVencFim.ClientID%>"))
{
var DtFim = eo_GetObject("dtpDtVencFim");
if (DtFim.getSelectedDate() == null)
{
DtFim.setSelectedDate(DtEntr.getSelectedDate());
}
}


// eo_Callback('cbpDatasFrequencias', 'DE');
setTimeout(function() { CallcbpDatasFrequencias('DE'); }, 200);
}

function UploadError(control, error, message)
{
switch (error)
{
case 'extension_not_allowed':
var erro = '<%=Session("ErrorFileExtension")%>'
erro = erro.replace('@VARCMP1@', control.getAllowedExtension());
alert(erro);
break;
case 'max_size_exceeded':
alert('<%=Session("ErrorFileSize")%>');
break;
case 'time_out':
alert('<%=Session("ErrorFileTimeout")%>');
break;
default:
var ErrIn = '<%=Session("ErrorFileOther")%>';
ErrIn = ErrIn.replace('@ERROR@', message);
alert(ErrIn);
}
}

function CellEmailSelected()
{
//Get the selected cell
var grid = eo_GetObject("grdData");
var cell = grid.getSelectedCell();

//Put the selected cell into edit mode
if (cell) { grid.editCell(cell.getItemIndex(), cell.getColIndex()); }
}

function NewEmail()
{
var grid = eo_GetObject('grdData');
grid.editCell(-1,0,true)

if (grid.getItemCount() > 0)
{
var i = 0;
var item = grid.getItem(0);

for (i = 0; i < grid.getItemCount(); i++)
{
item = grid.getItem(i);
if (item != null)
{
if (item.isDeleted() != true)
{
if (item.getCell(1).getValue() == null || item.getCell(1).getValue() == '')
{
grid.SelectedItemIndex = i;
grid.selectCell(i, 1);
grid.focus();
return false;
}
if (item.getCell(2).getValue() == null || item.getCell(2).getValue() == '')
{
grid.SelectedItemIndex = i;
grid.selectCell(i, 2);
grid.focus();
return false;
}
}
}
}
}
var item = grid.addItem();
item.ensureVisible();
var cell = item.getCell(1);
if (cell)
{
//grid.selectItem(grid.getItemCount() - 1);
grid.selectCell(grid.getItemCount() - 1, 1);
grid.focus();
}
return false;
}

function EmailDelete()
{
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();

var grid = eo_GetObject('grdData');

var Exit = false;

if (grid == null)
{
Exit = true;
} else {
if (grid.getItemCount() == 0)
{
Exit = true;
}
}

if (Exit == false)
{
var item = grid.getSelectedItem();
if (item == null)
{
var cell = grid.getSelectedCell();
if (cell == null)
{
Exit = true;
}
} else {
if (item.isDeleted() == true)
{
Exit = true;
}
}
}

if (Exit == true)
{
lblErr.innerHTML = '<%=Session("ErrorPosition")%>';
ResizeTab();
return false;
}

if (window.confirm('<%=Session("MsgPersonDelete")%>'))
{
var cell = grid.getSelectedCell();
if (cell != null)
{
grid.deleteItem(cell.getItemIndex());
} else {
var item = grid.getSelectedItem();
if (item != null)
{
grid.deleteItem(item.getIndex());
}
}
}
return false;
}

function PrazoLiberaCell(obj, evt)
{
alert('Entrei');
var grid = eo_GetObject("grdPrazoStatus");
grid.selectCell(-1);
}

function PrazoStatusSelected()
{
if ('<%=Session("Process")%>' != 1 && '<%=Session("Process")%>' != 2 && '<%=Session("Process")%>' != 5) { return; }

var grid = eo_GetObject("grdPrazoStatus");
var cell = grid.getSelectedCell();

if (cell)
{
var coluna = cell.getColIndex();
if (coluna == 4)
{
var item = cell.getItem();
if (item.getIndex() == 0)
{
grid.editCell(-1);
return;
}
var cellvalor = item.getCell(5);
cellvalor.setValue(null);
} else {
if (coluna == 5)
{
var item = cell.getItem();
var cellaplic = item.getCell(4);
// if (cellaplic.getValue() == true) { grid.editCell(-1); }
}
}
}
}

var PrazoStatusTimeout = null;
var PrazoStatusTimes = 0;

function PrazoStatusCallBack()
{
if (PrazoStatusTimes == 0)
{
PrazoStatusTimes += 1
// eo_Callback('cbpDatasFrequencias', 'SE');
setTimeout(function() { CallcbpDatasFrequencias('SE'); }, 200);
}
}

function PrazoStatusDisabled()
{
clearTimeout(PrazoStatusTimeout);
}

function PrazoStatusChanged(cell, newValue)
{
if (document.getElementById("<%=dtpDtDocEntrega.ClientID%>"))
{
if (eo_GetObject("dtpDtDocEntrega").getSelectedDate() != null)
{
return newValue;
}
}
if (document.getElementById("<%=dtpDtVencFim.ClientID%>"))
{
if (eo_GetObject("dtpDtVencFim").getSelectedDate() == null)
{
return newValue;
}
} else {
return newValue;
}

// if (CallBack || cell.getColIndex() == 3) { setTimeout(function() { PrazoStatusCallBack(); }, 500); }
PrazoStatusTimes = 0;
PrazoStatusTimeout = setTimeout(function() { PrazoStatusCallBack(); }, 500);

return newValue;
}

function OnFilhoAnteriorCellSelected(grid)
{
var cell = grid.getSelectedCell();
var item = cell.getItem();
var cellctr = null;

if (cell)
{
var coluna = cell.getColIndex();
if (coluna < 8)
{
grid.editCell(-1);
} else {
if (coluna == 8)
{
cellctr = item.getCell
if (item.getCell(0).getValue() == 0)
{
grid.editCell(-1);
}
} else {
cellctr = item.getCell
if (item.getCell(1).getValue() == 0)
{
grid.editCell(-1);
}
}
}
}
}

var ColunaFilhoPosterior = null;

function OnFilhoPosteriorCellSelected(grid)
{
var cell = grid.getSelectedCell();
var item = cell.getItem();
var cellctr = null;
var idinibe = true;
var mostradialog = false;

if (cell)
{
ColunaFilhoPosterior = cell.getColIndex();

switch(ColunaFilhoPosterior)
{
case 3: case 4: case 9:
cellctr = item.getCell(0).getValue();
if (cellctr != null)
{
if (cellctr == true)
{
idinibe = false;
}
}
break;
case 6:
cellctr = item.getCell(0).getValue();
if (cellctr != null)
{
if (cellctr == true)
{
cellctr = item.getCell(5).getValue();
if (cellctr == null)
{
idinibe = false;
}
}
}
break;
case 8:
cellctr = item.getCell(0).getValue();
if (cellctr != null)
{
if (cellctr == true)
{
cellctr = item.getCell(5).getValue();
if (cellctr == null)
{
cellctr = item.getCell(7).getValue();
if (cellctr != null)
{
if (cellctr == true)
{
idinibe = false;
}
}
}
}
}
break;
case 10:
cellctr = item.getCell(0).getValue();
if (cellctr != null)
{
if (cellctr == true)
{
mostradialog = true;
if (cell.getValue() != null)
{
document.getElementById("<%=txtFilhoPosterior.ClientID%>").value = cell.getValue();
} else {
document.getElementById("<%=txtFilhoPosterior.ClientID%>").value = '';
}
}
}
break;
case 12:
cellctr = item.getCell(0).getValue();
if (cellctr != null)
{
if (cellctr == true && item.getCell(ColunaFilhoPosterior - 1).getValue() == 1)
{
mostradialog = true;
if (cell.getValue() != null)
{
document.getElementById("<%=txtFilhoPosterior.ClientID%>").value = cell.getValue();
} else {
document.getElementById("<%=txtFilhoPosterior.ClientID%>").value = '';
}
}
}
break;
}
if (idinibe) { grid.editCell(-1); }

if (mostradialog)
{
var dial = eo_GetObject('dlgFilhoPosterior');
dial.setCaption(cell.getColumn().getHeaderText());
dial.show(true);
}
}
}

function OnEndFilhoPosterior()
{
var grid = eo_GetObject("grdFilhoPosterior");

if (document.getElementById("<%=txtFilhoPosterior.ClientID%>").value != '')
{
grid.getSelectedCell().setValue(document.getElementById("<%=txtFilhoPosterior.ClientID%>").value);
} else {
grid.getSelectedCell().setValue(null);
}
}

var itemIndex = -1;

function ItemLimitSelected(grid)
{
if (grid.getItemCount() == 0) { return false; }

var cell = null;
var item = grid.getSelectedItem();
var combo = null;
var i = null;
var text = null;
var seq = null;

seq = document.getElementById("<%=txtLimiteSequencia.ClientID%>");
cell = item.getCell(0);
seq.value = cell.getValue();

combo = document.getElementById("<%=cboLimiteElemento.ClientID%>");
cell = item.getCell(1);
for(i = 0 ; i < combo.options.length ; i++)
{
if (combo.options[i].value == cell.getValue())
{
break;
}
}
if (i <= combo.options.length) { combo.selectedIndex = i; }

text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
cell = item.getCell(4);
//text.value = PutNumericSeparator(cell.getValue());
text.value = cell.getValue();

combo = document.getElementById("<%=cboLimiteUnidadeMetrica.ClientID%>");
cell = item.getCell(5);
for(i = 0 ; i < combo.options.length ; i++)
{
if (combo.options[i].value == cell.getValue())
{
break;
}
}
if (i <= combo.options.length) { combo.selectedIndex = i; }

combo = document.getElementById("<%=cboPeriodoLimite.ClientID%>");
cell = item.getCell(6);
for(i = 0 ; i < combo.options.length ; i++)
{
if (combo.options[i].value == cell.getValue())
{
break;
}
}
if (i <= combo.options.length) { combo.selectedIndex = i; }

itemIndex = item.getIndex();

eo_GetObject('dlgLimite').show(true);
document.getElementById("<%=cboLimiteElemento.ClientID%>").focus;

return false;
}

function NewLimit()
{
var seq = document.getElementById("<%=txtLimiteSequencia.ClientID%>");
seq.value = '';
var combo = document.getElementById("<%=cboLimiteElemento.ClientID%>");
combo.selectedIndex = 0;
var text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
text.value = '';
var combo = document.getElementById("<%=cboLimiteUnidadeMetrica.ClientID%>");
combo.selectedIndex = 0;
var combo = document.getElementById("<%=cboPeriodoLimite.ClientID%>");
combo.selectedIndex = 0;

itemIndex = -1;

eo_GetObject('dlgLimite').show(true);
document.getElementById("<%=cboLimiteElemento.ClientID%>").focus;

return false;
}

function LimiteQuit()
{
eo_GetObject('dlgLimite').close();
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();
return false;
}

function LimitCheckSave()
{
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();

var grid = eo_GetObject('grdLimiteProducao');
var item = null;
var cell = null;
var i = null;
var combo = null;
var text = null;
var label = null;
var msgerro = null;
var comboocelem = null;
var comboocunid = null;
var comboocperiod = null;

label = document.getElementById("<%=txtLimiteSequencia.ClientID%>");
if (label.value != '')
{
seq = label.value;
} else {
seq = -1;
}

var Erro = '';

combo = document.getElementById("<%=cboLimiteElemento.ClientID%>");
if (combo.selectedIndex < 0)
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitElement")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
} else {
comboocelem = parseInt(combo.options[combo.selectedIndex].value);
}

text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
if (text.value == '')
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitValue")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
} else {
if (text.value != parseInt(text.value))
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitValueNumeric")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
} else {
if (parseInt(text.value) <= 0)
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitValueZero")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
}
}
}

combo = document.getElementById("<%=cboLimiteUnidadeMetrica.ClientID%>");
if (combo.selectedIndex < 0)
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitMetricUnit")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
} else {
comboocunid = parseInt(combo.options[combo.selectedIndex].value);
}

combo = document.getElementById("<%=cboPeriodoLimite.ClientID%>");
if (combo.selectedIndex < 0)
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitPeriodicity")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
Erro += msgerro;
} else {
comboocperiod = parseInt(combo.options[combo.selectedIndex].value);
}

if (comboocelem != null && comboocunid != null && comboocperiod != null)
{
var gridocelem = null;
var gridocunid = null;
var gridocperiod = null;
for(i = 0 ; i < grid.getItemCount() ; i++)
{
if (i != itemIndex)
{
item = grid.getItem(i);
if (item)
{
if (item.isDeleted() == false)
{
gridocelem = item.getCell(1).getValue();
gridocunid = item.getCell(5).getValue();
gridocperiod = item.getCell(6).getValue();
if (comboocelem == gridocelem && comboocunid == gridocunid && comboocperiod == gridocperiod)
{
break;
}
}
}
}
}
if (i < grid.getItemCount())
{
if (Erro != '') { Erro += '; '; }
msgerro = '<%=Session("ErrorLimitElementClone")%>';
msgerro = msgerro.replace('@VARCMP1@', '<%=Session("LiteralSelecao")%>');
msgerro = msgerro.replace('@VARCMP2@', i + 1);
Erro += msgerro;
}
}

if (Erro != '')
{
lblErr.innerHTML = Erro;
ResizeTab();
} else {
combo = document.getElementById("<%=cboLimiteElemento.ClientID%>");

if (itemIndex < 0)
{
var guaitemindex = grid.getItemCount() - 1;
grid.addItem();
var newitemindex = grid.getItemCount() - 1;
var itemde = null;
var itempara = null;
var cellde = null;
var cellpara = null;
for(i = guaitemindex ; i >= 0 ; i--)
{
itemde = grid.getItem(i);
if(itemde)
{
if (itemde.isDeleted() == false)
{
if (itemde.getCell(2).getValue() <= combo.options[combo.selectedIndex].text)
{
break;
}
itempara = grid.getItem(newitemindex);
if (itempara)
{
if (itempara.isDeleted() == false)
{
for(c = 0 ; c < grid.getColumnCount() ; c++)
{
cellde = itemde.getCell(c)
cellpara = itempara.getCell(c)
cellpara.setValue(cellde.getValue());
}
newitemindex -= 1;
}
}
}
}
}
item = grid.getItem(newitemindex);
} else {
item = grid.getItem(itemIndex);
}

cell = item.getCell(1);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
cell = item.getCell(2);
cell.setValue(combo.options[combo.selectedIndex].text);

text = document.getElementById("<%=txtLimiteQuantidade.ClientID%>");
cell = item.getCell(4);
cell.setValue(parseInt(text.value));

combo = document.getElementById("<%=cboLimiteUnidadeMetrica.ClientID%>");
cell = item.getCell(5);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
var unidade = UnidadeAbreviatura[combo.selectedIndex];

combo = document.getElementById("<%=cboPeriodoLimite.ClientID%>");
cell = item.getCell(6);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
var txtperiod = combo.options[combo.selectedIndex].text;
txtperiod = txtperiod.toLowerCase();
if (txtperiod == '<%=Session("NotAplicableText")%>') { txtperiod = ''; }

cell = item.getCell(3);
cell.setValue(PutNumericSeparator(text.value) + ' ' + unidade + ' ' + txtperiod);

eo_GetObject('dlgLimite').close();
}

return false;
}

function LimitDelete()
{
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();

var grid = eo_GetObject('grdLimiteProducao');

var Exit = false;

if (grid == null)
{
Exit = true;
} else {
if (grid.getItemCount() == 0)
{
Exit = true;
}
}

if (Exit == false)
{
var item = grid.getSelectedItem();
if (item == null)
{
Exit = true;
} else {
if (item.isDeleted() == true)
{
Exit = true;
}
}
}

if (Exit == true)
{
lblErr.innerHTML = '<%=Session("ErrorLimitPosition")%>';
ResizeTab();
return false;
}

if (window.confirm('<%=Session("MsgLimitDelete")%>'))
{
var cell = grid.getSelectedCell();
if (cell != null)
{
grid.deleteItem(cell.getItemIndex());
} else {
var item = grid.getSelectedItem();
if (item != null)
{
grid.deleteItem(item.getIndex());
}
}
}

return false;
}

function ShowProcedure(chmodal)
{
var hei = (screen.availHeight * 0.85);
var wid = (screen.availWidth * 0.9);
var lef = (screen.availHeight - hei) / 2;
var top = (((screen.availWidth - wid) / 2) / 2) - 15;

var param = 'showpdf.aspx?indproc=P';

var chmod = false;
if (chmodal != null)
{
if (chmodal) { chmod = true; }
}

if (window.showModalDialog)
{
param += '&height=' + (hei - 5);
if (chmod)
{
window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" + hei + "px" + ";center:yes;resizable=yes");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',resizable=yes');
}
} else {
param += '&height=' + (hei - (screen.height - screen.availHeight));
if (chmod)
{
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes,resizable=yes');
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',resizable=yes');
}
}
document.getElementById("<%=cboTipo.ClientID%>").focus;

return false;
}

function ShowPDF(ocor, chmodal)
{
var hei = (screen.availHeight * 0.85);
var wid = (screen.availWidth * 0.9);
var lef = (screen.availHeight - hei) / 2;
var top = (((screen.availWidth - wid) / 2) / 2) - 15;

var proc = '<%=Session("ProcRecursive")%>';

var param = 'showpdf.aspx?indproc=' + proc + '&ocor=' + ocor;

var chmod = false;
if (chmodal != null)
{
if (chmodal) { chmod = true; }
}

if (window.showModalDialog)
{
param += '&height=' + (hei - 5);
if (chmod)
{
window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" + hei + "px" + ";center:yes;resizable=yes");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',resizable=yes');
}
} else {
param += '&height=' + (hei - (screen.height - screen.availHeight));
if (chmod)
{
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes,resizable=yes');
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',resizable=yes');
}
}
}

function ViewRecursive(seqdoc)
{
var param = 'document.aspx?process=8&indonlyexit=s&seqdoc=' + seqdoc;
var hei = 630;
var wid = 980;

var top = ((screen.availWidth,screen.availHeight - hei) / 2);
var lef = ((screen.availWidth,screen.availWidth - wid) / 2) + 60;

var RetCode;

if (window.showModalDialog)
{
RetCode = window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" +
hei + "px;dialogTop:" + top + "px;dialogLeft:" + lef + "px");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes');
}

return false;
}

function ShowEmail(botao, tit, ocor)
{
var win = eo_GetObject("dlgEmail");
var obj = document.getElementById("<%=fotStatusList.ClientID%>");

var param = 'showemail.aspx?ocor=' + ocor;
var hei = 300;
var wid = 600;

var top = document.documentElement.clientTop + obj.clientTop + obj.clientHeight;
var lef = document.documentElement.clientLeft + obj.clientLeft + obj.clientWidth - win.clientWidth;

win.setContentUrl(param);
win.setCaption('<%=Session("TituloEmail")%>' + ' ' + tit);
win.show(true);
win.resize(wid, hei);
//win.move(lef, top);
return false;

var RetCode;

if (window.showModalDialog)
{
RetCode = window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" +
hei + "px;dialogTop:" + top + "px;dialogLeft:" + lef + "px");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes');
}

return false;
}

function VerDocAnterior()
{
var param = 'document.aspx?process=8&indrecur=s&seqdoc=' + '<%=Session("SeqDoc")%>';
var hei = 630;
var wid = 935;

var top = ((screen.availWidth,screen.availHeight - hei) / 2);
var lef = ((screen.availWidth,screen.availWidth - wid) / 2) + 60;

if (window.showModalDialog)
{
window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" +
hei + "px;dialogTop:" + top + "px;dialogLeft:" + lef + "px");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes');
}

return false;
}

function ViewRecursive(seqdoc)
{
var param = 'document.aspx?process=8&indonlyexit=s&seqdoc=' + seqdoc;
var hei = 630;
var wid = 935;

var top = ((screen.availWidth,screen.availHeight - hei) / 2);
var lef = ((screen.availWidth,screen.availWidth - wid) / 2) + 60;

var RetCode;

if (window.showModalDialog)
{
RetCode = window.showModalDialog(param,"window","dialogWidth:" + wid + "px;dialogHeight:" +
hei + "px;dialogTop:" + top + "px;dialogLeft:" + lef + "px");
} else {
window.open(param,'window','height=' + hei + ',width=' + wid + ',top=' + top + ',left=' + lef + ',modal=yes');
}
}

function MudaFrequenciaRigida(socalc)
{
if (socalc == null)
{
if (document.getElementById("<%=cboFrequencia.ClientID%>")) { document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true; }
//document.getElementById("<%=dtpDtVencFim.ClientID%>").disabled = true;
} else {
//var DataIni = eo_GetObject("dtpDtVencInicio").getSelectedDate();
//var DataFim = DataIni;
//DataFim.setMonth(DataFim.getMonth() + parseInt(document.getElementById("<%=lblFrequenciaRigida.ClientID%>").innerHTML));
//DataFim.setDate(DataFim.getDate() - 1);
//eo_Callback('cbpDatasFrequencias', 'FR');
setTimeout(function() { CallcbpDatasFrequencias('FR'); }, 200);
}
}

function MudaInformativa()
{
if (document.getElementById("<%=ckbInformativa.ClientID%>"))
{
if (document.getElementById("<%=ckbInformativa.ClientID%>").checked)
{
if (document.getElementById("<%=lblCabFrequencia.ClientID%>"))
{
if (document.getElementById("<%=lblCategoriaRelacao.ClientID%>").innerHTML == 'F')
{
document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>").style.visibility="hidden";
} else {
document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>").style.visibility="visible";
document.getElementById("<%=lblCabFrequencia.ClientID%>").innerHTML='<%=Session("LiteralEvidencia")%>';
document.getElementById("<%=cboFrequencia.ClientID%>").title='<%=Session("ToolTipEvidencia")%>';
if ('<%=Session("ChConfirmacaoDisponivel")%>' == '0' || '<%=Session("Process")%>' == 8 ||
document.getElementById("<%=lblCategoriaRelacao.ClientID%>").innerHTML == 'F')
{
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N") { document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true; }
} else {
if (document.getElementById("<%=dtpDtVencInicio.ClientID%>").disabled == false)
{
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N")
{
document.getElementById("<%=cboFrequencia.ClientID%>").disabled = false;
}
} else {
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N" && '<%=Session("CAPEXOPEXEnabled")%>' = "N")
{
alert("Aqui");
document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true;
}
}
}
}
}
if (document.getElementById("<%=lblCabDtVencFim.ClientID%>")) { document.getElementById("<%=lblCabDtVencFim.ClientID%>").style.visibility="hidden"; }
if (document.getElementById("<%=dtpDtVencFim.ClientID%>")) { document.getElementById("<%=dtpDtVencFim.ClientID%>").style.visibility="hidden"; }
if (document.getElementById("<%=lblCabDtDocEntrega.ClientID%>")) { document.getElementById("<%=lblCabDtDocEntrega.ClientID%>").style.visibility="hidden"; }
if (document.getElementById("<%=dtpDtDocEntrega.ClientID%>")) { document.getElementById("<%=dtpDtDocEntrega.ClientID%>").style.visibility="hidden"; }
if (document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>"))
{
document.getElementById("<%=cellFrequenciaDtEntrega2.ClientID%>").style.height="1px";
document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>").style.height="1px";
}
if (document.getElementById("<%=tabPrazosNovos.ClientID%>"))
{
document.getElementById("<%=grdPrazoStatus.ClientID%>").style.height="1px";
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.visibility="hidden";
document.getElementById("<%=cellPrazosNovos1.ClientID%>").style.height="1px";
document.getElementById("<%=cellPrazosNovos2.ClientID%>").style.height="1px";
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.height="1px";
}
} else {
document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>").style.visibility="visible";
if (document.getElementById("<%=lblCabFrequencia.ClientID%>"))
{
document.getElementById("<%=lblCabFrequencia.ClientID%>").innerHTML='<%=Session("LiteralFrequencia")%>';
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N") { document.getElementById("<%=cboFrequencia.ClientID%>").title='<%=Session("ToolTipFrequencia")%>'; }
if (document.getElementById("<%=dtpDtVencInicio.ClientID%>").disabled == false)
{
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N") { document.getElementById("<%=cboFrequencia.ClientID%>").disabled = false; }
} else {
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N") { document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true; }
}
}
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N")
{
if ('<%=Session("Process")%>' == 8) { document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true; }
}
if (document.getElementById("<%=lblCabDtVencFim.ClientID%>")) { document.getElementById("<%=lblCabDtVencFim.ClientID%>").style.visibility="visible"; }
if (document.getElementById("<%=dtpDtVencFim.ClientID%>")) { document.getElementById("<%=dtpDtVencFim.ClientID%>").style.visibility="visible"; }
if (document.getElementById("<%=lblCabDtDocEntrega.ClientID%>")) { document.getElementById("<%=lblCabDtDocEntrega.ClientID%>").style.visibility="visible"; }
if (document.getElementById("<%=dtpDtDocEntrega.ClientID%>")) { document.getElementById("<%=dtpDtDocEntrega.ClientID%>").style.visibility="visible"; }
if (document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>"))
{
document.getElementById("<%=cellFrequenciaDtEntrega2.ClientID%>").style.height="7px";
document.getElementById("<%=tabFrequenciaDtEntrega.ClientID%>").style.height="";
}
if (document.getElementById("<%=tabPrazosNovos.ClientID%>"))
{
var cbofreq = document.getElementById("<%=cboFrequencia.ClientID%>");

if (cbofreq.selectedIndex == 0 && cbofreq.options[cbofreq.selectedIndex].value == "0")
{
document.getElementById("<%=grdPrazoStatus.ClientID%>").style.height="1px";
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.visibility="hidden";
document.getElementById("<%=cellPrazosNovos1.ClientID%>").style.height="1px";
document.getElementById("<%=cellPrazosNovos2.ClientID%>").style.height="1px";
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.height="1px";
} else {
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.visibility="visible";
document.getElementById("<%=tabPrazosNovos.ClientID%>").style.height="";
document.getElementById("<%=grdPrazoStatus.ClientID%>").style.height="96px";
document.getElementById("<%=cellPrazosNovos1.ClientID%>").style.height="7px";
document.getElementById("<%=cellPrazosNovos2.ClientID%>").style.height="7px";
}
}
}
} else {
if (document.getElementById("<%=lblCabFrequencia.ClientID%>"))
{
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "")
{
document.getElementById("<%=cboFrequencia.ClientID%>").disabled = false;
document.getElementById("<%=lblCabFrequencia.ClientID%>").innerHTML='<%=Session("LiteralEvidencia")%>';
document.getElementById("<%=cboFrequencia.ClientID%>").title='<%=Session("ToolTipEvidencia")%>';
} else {
if (document.getElementById("<%=txtChFrequenciaRigida.ClientID%>").value == "N")
{
document.getElementById("<%=cboFrequencia.ClientID%>").disabled = false;
document.getElementById("<%=lblCabFrequencia.ClientID%>").innerHTML='<%=Session("LiteralEvidencia")%>';
document.getElementById("<%=cboFrequencia.ClientID%>").title='<%=Session("ToolTipEvidencia")%>';
} else {
document.getElementById("<%=cboFrequencia.ClientID%>").disabled = true;
}
}
}
}
return false;
}

var FocusedCmp = null;

function GetFocusedCmp()
{
FocusedCmp = document.activeElement.id;
}

function SetFocusedCmp()
{
MudaInformativa();
if (FocusedCmp != null)
{
if (FocusedCmp != "")
{
//alert("(" + FocusedCmp + ")");
if (document.getElementById(FocusedCmp)) { document.getElementById(FocusedCmp).focus(); }
}
FocusedCmp = null;
}
}

function cbpDocumentoExecute()
{
GetFocusedCmp();
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();
}

function cbpDocumentoChanged()
{
if (document.getElementById("<%=lblFrequenciaRigida.ClientID%>") == null)
{
MudaInformativa();
} else {
if (document.getElementById("<%=lblFrequenciaRigida.ClientID%>").innerHTML == "0")
{
MudaInformativa();
} else {
MudaFrequenciaRigida();
}
}

TrataGridARO();

SharedUnitChanged(true);

SetFocusedCmp();
}

</script>
<script language="JavaScript">

var objChkd = null;

function ckbPDFIniOnCheck()
{
var chkLst = document.getElementById('ckbPDFIni');

if(objChkd && objChkd.checked) { objChkd.checked=false; }

objChkd = event.srcElement;
}

function PDFIniOK()
{
if (objChkd == null)
{
alert('<%=Session("ErrorPDFIni")%>');
return false;
}

eo_GetObject('dlgPDFQuestion').close();
PostBack();
return true;
}

function PDFIniQuit()
{
eo_GetObject('dlgPDFQuestion').close();
return false;
}

var SharedUnits = 0;

function SharedUnitChanged(force)
{
if (document.getElementById('<%=cmdUnidadeCompartilhada.ClientID %>'))
{
var qtdchecked = 0;
var ctr = 0;
var lista = document.getElementById('<%=lbxUnidadeCompartilhada.ClientID %>');
for (ctr = 0; ctr < lista.options.length; ctr++)
{
if (lista.options[ctr].selected)
{
qtdchecked += 1;
if ('<%=Session("Process")%>' != '1' && '<%=Session("Process")%>' != '2' && '<%=Session("Process")%>' != '5')
{
lista.options[ctr].style.backgroundColor= "#9CF0FF";
}
}
}
var obj = document.getElementById('<%=cmdUnidadeCompartilhada.ClientID %>');
if (qtdchecked == 0)
{
if (('<%=Session("Process")%>' != '1' && '<%=Session("Process")%>' != '2' && '<%=Session("Process")%>' != '5') ||
lista.options.length == 0)
{
obj.style.visibility = "hidden";
} else {
obj.style.visibility = "visible";
if (obj.src.search('shareno_c.png') == -1)
{
obj.src = obj.src.substring(0,obj.src.length - 11) + 'shareno_c.png';
}
obj.title='<%=Session("ToolTipSemUnidadeCompartilhada")%>';
}
} else {
obj.style.visibility = "visible";
if (obj.src.search('share_c.png') == -1)
{
obj.src = obj.src.substring(0,obj.src.length - 13) + 'share_c.png';
}
var msg = '<%=Session("ToolTipComUnidadeCompartilhada")%>';
obj.title=msg.replace('@VARCMP1@', qtdchecked.toString());
}
}
}

function AROVerificaOcorrecia(cell)
{
if (cell.getItemIndex() == 4)
{
return false;
} else {
return true;
}
}

function AROCellSelected()
{
//Get the selected cell
var grid = eo_GetObject("grdARO");
var cell = grid.getSelectedCell();

//Put the selected cell into edit mode
if (cell) { grid.editCell(cell.getItemIndex(), cell.getColIndex()); }
}

function CompartilhadaClick()
{
var dia = eo_GetObject('dlgUnidadeCompartilhada');
dia.show(true);
return false;
}

</script>
<script language="JavaScript">

function SSODtIncidentChanged()
{
var DtIncident = eo_GetObject("dtpRATDtHrOcorrencia").getSelectedDate();
var DOW = DtIncident.getDay();
document.getElementById("<%=lblRATDiaSemana.ClientID%>").innerHTML = WeekDay[DOW];
}

var grdEnvCtr = 0;

function SSONewInjured()
{
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

var dia = eo_GetObject('dlgEnvolvido');

grdEnvCtr = -1;

var url = "SSOinjured.aspx?parentpage=" + sPage + "&SSOProcess=NOVO&grdEnvCtr=" + grdEnvCtr;
var DtIncident = eo_GetObject("dtpRATDtHrOcorrencia").getSelectedDate();
if (DtIncident == null)
{
url += "&dtpRATDtHrOcorrencia=null";
dia.setCaption('<%=Session("InjuredTitle")%>');
} else {
var dd = DtIncident.getDate();
var mm = DtIncident.getMonth()+1;
var yyyy = DtIncident.getFullYear();
if(dd<10){dd='0'+dd}
if(mm<10){mm='0'+mm}
url += '&dtpRATDtHrOcorrencia=' + yyyy + mm + dd;
dia.setCaption('<%=Session("InjuredTitle")%>' + ' - ' + dd + '/' + mm + '/' + yyyy);
}

dia.setContentUrl(url);
dia.show(true);
return false;
}

function SSOInjuredSelected(grid)
{
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

var item = grid.getSelectedItem();
if (item == null) { return false; }

var dia = eo_GetObject('dlgEnvolvido');

grdEnvCtr = item.getIndex();

var url = "SSOinjured.aspx?parentpage=" + sPage + "&SSOProcess=ALTERACAO&grdEnvCtr=" + grdEnvCtr;
var DtIncident = eo_GetObject("dtpRATDtHrOcorrencia").getSelectedDate();
if (DtIncident == null)
{
url += "&dtpRATDtHrOcorrencia=null";
dia.setCaption('<%=Session("InjuredTitle")%>');
} else {
var dd = DtIncident.getDate();
var mm = DtIncident.getMonth()+1;
var yyyy = DtIncident.getFullYear();
if(dd<10){dd='0'+dd}
if(mm<10){mm='0'+mm}
url += '&dtpRATDtHrOcorrencia=' + yyyy + mm + dd;
dia.setCaption('<%=Session("InjuredTitle")%>' + ' - ' + dd + '/' + mm + '/' + yyyy);
}

dia.setContentUrl(url);
dia.show(true);
return false;
}

function SSOInjuredDelete()
{

if (window.confirm('<%=Session("MsgInjuredDelete")%>'))
{
var callbp = eo_GetObject('cbpDocumento');
callbp.execute('RATDELECAO');
}
return false;
}

function SSOInjuredQuit()
{
eo_GetObject('dlgEnvolvido').close();
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();
return false;
}

function SSOInjuredSave()
{
// var grid = eo_GetObject('grdEnvolvidos');
// var item = null;
// var cell = null;
//
// if (grdEnvCtr == -1)
// {
// grid.addItem();
// item = grid.getItem(grid.getItemCount() - 1);
// } else {
// item = grid.getItem(grdEnvCtr);
// }
//
// cell = item.getCell(0);
// cell.setValue(

eo_GetObject('dlgEnvolvido').close();
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();

var callbp = eo_GetObject('cbpDocumento');
callbp.execute('RATGRID');
return false;
}

var SSOCategoryOcor = -1;

function SSONewCategory()
{
var dia = eo_GetObject('dlgSSOCategoria');
dia.setCaption('<%=Session("SSOCategoryTitle")%>');

var combo = document.getElementById("<%=cboRATCategoriaNome.ClientID%>");
combo.selectedIndex = 0;
var combo = document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>");
combo.selectedIndex = 0;
var combo = document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>");
combo.selectedIndex = 0;

SSORATCategoryChanged(0, true);

SSOCategoryOcor = -1;

dia.show(true);
return false;
}

function SSOCategorySelected(grid)
{
if ('<%=Session("Process")%>' != '1' && '<%=Session("Process")%>' != '2' &&
'<%=Session("Process")%>' != '5') { return false; }

var dia = eo_GetObject('dlgSSOCategoria');
dia.setCaption('<%=Session("SSOCategoryTitle")%>');

var combo = null;
var item = grid.getSelectedItem();
var cell = null;
var ctr = null;
var index = null;

SSOCategoryOcor = item.getIndex();

cell = item.getCell(0);
combo = document.getElementById("<%=cboRATCategoriaNome.ClientID%>");
for(ctr = 0 ; ctr < combo.options.length ; ctr++)
{
if(parseInt(combo.options[ctr].value) == cell.getValue()) { break; }
}
combo.selectedIndex = ctr;
index = ctr;

if (TabIncidentCategoryHaveLevel[ctr] == '1')
{
cell = item.getCell(2);
combo = document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>");
for(ctr = 0 ; ctr < combo.options.length ; ctr++)
{
if(parseInt(combo.options[ctr].value) == cell.getValue()) { break; }
}
combo.selectedIndex = ctr;
cell = item.getCell(4);
combo = document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>");
for(ctr = 0 ; ctr < combo.options.length ; ctr++)
{
if(parseInt(combo.options[ctr].value) == cell.getValue()) { break; }
}
combo.selectedIndex = ctr;
cell = item.getCell(7);
document.getElementById("<%=lblRATCategoriaNivel.ClientID%>").innerHTML = cell.getValue().replace(String.fromCharCode(13,10),"<BR>");
} else {
cell = item.getCell(7);
document.getElementById("<%=lblRATCategoriaNivel.ClientID%>").innerHTML = '';
}

SSORATCategoryChanged(index, false);

dia.show(true);
return false;
}

function SSOCategoryDelete()
{

if (window.confirm('<%=Session("MsgSSOCategoryDelete")%>'))
{
var grid = eo_GetObject('grdSSOCategoria');
var item = grid.getSelectedItem();
grid.deleteItem(item.getIndex());
}
return false;
}

function cboRATCategoriaNomeChanged()
{
var combo = document.getElementById("<%=cboRATCategoriaNome.ClientID%>");
SSORATCategoryChanged(combo.selectedIndex, true);
return false;
}

function SSORATCategoryChanged(index, change)
{

if (TabIncidentCategoryHaveLevel[index] == '1')
{
document.getElementById("<%=lblCabRATCategoriaNivelGravidade.ClientID%>").style.visibility="visible";
document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>").style.visibility="visible";
document.getElementById("<%=lblRATCategoriaNivel.ClientID%>").style.visibility="visible";
document.getElementById("<%=lblCabRATCategoriaPotencialGravidade.ClientID%>").style.visibility="visible";
document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>").style.visibility="visible";
if (change == true)
{
eo_Callback('cbpSSOCategoria', 'C');
}
} else {
document.getElementById("<%=lblCabRATCategoriaNivelGravidade.ClientID%>").style.visibility="hidden";
document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>").style.visibility="hidden";
document.getElementById("<%=lblRATCategoriaNivel.ClientID%>").style.visibility="hidden";
document.getElementById("<%=lblCabRATCategoriaPotencialGravidade.ClientID%>").style.visibility="hidden";
document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>").style.visibility="hidden";
}
}

function cboRATCategoriaNivelGravidadeChanged()
{
var combon = document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>");
var combop = document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>");
var ctr = null;

if (TabGravityLevelScore[combon.selectedIndex] > TabPotentialLevelScore[combop.selectedIndex])
{
for(ctr = 0 ; ctr < combop.options.length ; ctr++)
{
if (TabGravityLevelScore[combon.selectedIndex] <= TabPotentialLevelScore[ctr]) { break; }
}
if (ctr < combop.options.length) { combop.selectedIndex = ctr }
}
return false;
}

function SSORATCategoryCheckSave()
{
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();

var Erro = '';
var combo = null;
var comboint = null;
var grid = eo_GetObject("grdSSOCategoria");
var item = null;
var cell = null;
var value = null;
var ctrrow = null;
var chtest = null;
var score = null;
var txt = null;

combo = document.getElementById("<%=cboRATCategoriaNome.ClientID%>");

if (TabIncidentCategoryHaveLevel[combo.selectedIndex] == '1')
{
comboint = document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>");
value = parseInt(TabGravityLevelScore[comboint.selectedIndex]);
comboint = document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>");
if (parseInt(TabPotentialLevelScore[comboint.selectedIndex]) < value)
{
if (Erro != '') { Erro += '; ' }
Erro += '<%=Session("ErrorSSORATCategorySequence")%>';
}
}

if (grid.getItemCount() != 0)
{
value = parseInt(combo.options[combo.selectedIndex].value)
for(ctrrow = 0 ; ctrrow < grid.getItemCount() ; ctrrow++)
{
if (SSOCategoryOcor == -1)
{
chtest = true;
} else {
if (ctrrow != SSOCategoryOcor)
{
chtest = true;
} else {
chtest = false;
}
}
if (chtest)
{
item = grid.getItem(ctrrow);
if (item.getCell(0).getValue() == value) { break; }
}
}
if (ctrrow < grid.getItemCount())
{
if (Erro != '') { Erro += '; ' }
Erro += '<%=Session("ErrorSSORATCategoryHave")%>';
}
}

if (Erro != '')
{
lblErr.innerHTML = Erro;
ResizeTab();
return false;
}

if (SSOCategoryOcor == -1)
{
item = grid.addItem();
} else {
item = grid.getItem(SSOCategoryOcor);
}
combo = document.getElementById("<%=cboRATCategoriaNome.ClientID%>");
cell = item.getCell(0);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
cell = item.getCell(1);
cell.setValue(combo.options[combo.selectedIndex].text);
if (TabIncidentCategoryHaveLevel[combo.selectedIndex] == '1')
{
combo = document.getElementById("<%=cboRATCategoriaNivelGravidade.ClientID%>");
cell = item.getCell(2);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
cell = item.getCell(3);
txt = combo.options[combo.selectedIndex].text;
cell.setValue(txt.substr(3));
score = TabGravityLevelScore[combo.selectedIndex];
combo = document.getElementById("<%=cboRATCategoriaPotencialGravidade.ClientID%>");
cell = item.getCell(4);
cell.setValue(parseInt(combo.options[combo.selectedIndex].value));
cell = item.getCell(5);
txt = combo.options[combo.selectedIndex].text;
cell.setValue(txt.substr(3));
cell = item.getCell(6);
cell.setValue(score);
cell = item.getCell(7);
txt = document.getElementById("<%=lblRATCategoriaNivel.ClientID%>").innerHTML;
txt = txt.replace("<BR>",String.fromCharCode(13,10));
cell.setValue(txt);
} else {
cell = item.getCell(2);
cell.setValue(null);
cell = item.getCell(3);
cell.setValue(null);
cell = item.getCell(4);
cell.setValue(null);
cell = item.getCell(5);
cell.setValue(null);
cell = item.getCell(6);
cell.setValue(null);
cell = item.getCell(7);
cell.setValue(null);
}

eo_GetObject('dlgSSOCategoria').close();
return false;
}

function SSORATCategoryQuit()
{
eo_GetObject('dlgSSOCategoria').close();
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();
return false;
}

</script>
<script language="JavaScript">

function replaceAll(string, token, newtoken)
{
while (string.indexOf(token) != -1) {
string = string.replace(token, newtoken);
}
return string;

}
var CmpRetorno = null;

function AfterCAPEXOPEX()
{
$('#divmiddle').stop().animate({scrollTop: $("#divmiddle")[0].scrollHeight}, 800);
var lblErr = document.getElementById("<%=txtCAPEXOPEXMsg.ClientID%>");
if (lblErr.value != '')
{
alert(lblErr.value);
lblErr.value = '';
}
}

Number.prototype.formatMoney = function(decPlaces, thouSeparator, decSeparator)
{
var n = this,
decPlaces = isNaN(decPlaces = Math.abs(decPlaces)) ? 2 : decPlaces,
decSeparator = decSeparator == undefined ? "." : decSeparator,
thouSeparator = thouSeparator == undefined ? "," : thouSeparator,
sign = n < 0 ? "-" : "",
i = parseInt(n = Math.abs(+n || 0).toFixed(decPlaces)) + "",
j = (j = i.length) > 3 ? j % 3 : 0;
return sign + (j ? i.substr(0, j) + thouSeparator : "") + i.substr(j).replace(/(\d{3})(?=\d)/g, "$1" + thouSeparator) + (decPlaces ? decSeparator + Math.abs(n - i).toFixed(decPlaces).slice(2) : "");
};

function CAPEXOPEXClick(control)
{
var callbp = eo_GetObject('cbpCAPEXOPEX');
callbp.execute(control.id);
CmpRetorno = control;
}

var CAPEXOPEXVolta = null;

function OnEndCAPEXOPEXTexto()
{
setTimeout(function() { OnEndCAPEXOPEXTextoFinaliza(); }, 100);
}

function OnEndCAPEXOPEXTextoFinaliza()
{
var callbp = eo_GetObject('cbpCAPEXOPEX');
callbp.execute('TEXTOVOLTA');
}

function CAPEXOPEXSelecionouCopia(control)
{
if (control.selectedIndex != 0)
{
var callbp = eo_GetObject('cbpCAPEXOPEX');
callbp.execute('COMBO_' + control.id);
}
}

function CAPEXOPEXCalculaValor(control)
{
var vlralfa = null;
var vlrtot = 0;
var vlrant = 0;
var vlrs = 0;
var vlrpos = 0;

vlralfa = control.id.toUpperCase();
if (vlralfa.indexOf("CAPEX") >= 0)
{
controlid = "CAPEX";

if (vlralfa.indexOf("PREVISTO") >= 0)
{
if (document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrtot = parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAnosAnteriores.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAnosAnteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAnosAnteriores.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrant = parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAno0.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAno0.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAno0.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAno1.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAno1.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAno1.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAno2.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAno2.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAno2.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAno3.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAno3.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAno3.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAno4.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAno4.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAno4.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoAnosPosteriores.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXPrevistoAnosPosteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXPrevistoAnosPosteriores.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrpos = parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>"))
{
if (vlrtot == (vlrant + vlrs + vlrpos))
{
document.getElementById("<%=cellCAPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "";
document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "";
document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").style.color =
document.getElementById("<%=txtCAPEXPrevistoAnosPosteriores.ClientID%>").style.color;
} else {
document.getElementById("<%=cellCAPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "red";
document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "red";
document.getElementById("<%=txtCAPEXPrevistoTotalGeral.ClientID%>").style.color = "white";
}
}

if (document.getElementById("<%=tabCAPEXJustificativa.ClientID%>"))
{
if ((vlrant + vlrs + vlrpos) > 0)
{
if (document.getElementById("<%=txtCAPEXJustificativa.ClientID%>"))
{
document.getElementById("<%=txtCAPEXJustificativa.ClientID%>").disabled = true;
}
document.getElementById("<%=tabCAPEXJustificativa.ClientID%>").style.visibility="hidden";
}
}
} else {
if (document.getElementById("<%=txtCAPEXRealAnosAnteriores.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAnosAnteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAnosAnteriores.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrant = parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno0.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAno0.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAno0.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno1.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAno1.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAno1.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno2.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAno2.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAno2.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno3.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAno3.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAno3.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno4.ClientID%>"))
{
if (document.getElementById("<%=txtCAPEXRealAno4.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtCAPEXRealAno4.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrs += parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtCAPEXRealAno4.ClientID%>"))
{
vlrtot = vlrant + vlrs;
if (vlrtot == 0)
{
document.getElementById("<%=txtCAPEXRealTotalGeral.ClientID%>").value = "";
} else {
document.getElementById("<%=txtCAPEXRealTotalGeral.ClientID%>").value =
vlrtot.formatMoney(0,'<%=Session("ThousandSeparator")%>','<%=Session("DecimalSeparator")%>');
}
}
}
} else {
controlid = "OPEX";

if (vlralfa.indexOf("PREVISTO") >= 0)
{
if (document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").value;
vlralfa = replaceAll(vlralfa,",","");
vlralfa = replaceAll(vlralfa,".","");
vlrtot = parseInt(vlralfa);
}
}
if (document.getElementById("<%=txtOPEXPrevistoAnosAnteriores.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAnosAnteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAnosAnteriores.ClientID%>").value;
vlrant = parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAno0.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAno0.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAno0.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAno1.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAno1.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAno1.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAno2.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAno2.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAno2.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAno3.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAno3.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAno3.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAno4.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAno4.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAno4.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoAnosPosteriores.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXPrevistoAnosPosteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXPrevistoAnosPosteriores.ClientID%>").value;
vlrpos = parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>"))
{
if (vlrtot == (vlrant + vlrs + vlrpos))
{
document.getElementById("<%=cellOPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "";
document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "";
document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").style.color =
document.getElementById("<%=txtOPEXPrevistoAnosPosteriores.ClientID%>").style.color;
} else {
document.getElementById("<%=cellOPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "red";
document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").style.backgroundColor = "red";
document.getElementById("<%=txtOPEXPrevistoTotalGeral.ClientID%>").style.color = "white";
}
}

if (document.getElementById("<%=tabOPEXJustificativa.ClientID%>"))
{
if ((vlrant + vlrs + vlrpos) > 0)
{
if (document.getElementById("<%=txtOPEXJustificativa.ClientID%>"))
{
document.getElementById("<%=txtOPEXJustificativa.ClientID%>").disabled = true;
}
document.getElementById("<%=tabOPEXJustificativa.ClientID%>").style.visibility="hidden";
}
}
} else {
if (document.getElementById("<%=txtOPEXRealAnosAnteriores.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAnosAnteriores.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAnosAnteriores.ClientID%>").value;
vlrant = parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno0.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAno0.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAno0.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno1.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAno1.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAno1.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno2.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAno2.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAno2.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno3.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAno3.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAno3.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno4.ClientID%>"))
{
if (document.getElementById("<%=txtOPEXRealAno4.ClientID%>").value != '')
{
vlralfa = document.getElementById("<%=txtOPEXRealAno4.ClientID%>").value;
vlrs += parseInt(vlralfa.replace(",","").replace(".",""));
}
}
if (document.getElementById("<%=txtOPEXRealAno4.ClientID%>"))
{
vlrtot = vlrant + vlrs;
if (vlrtot == 0)
{
document.getElementById("<%=txtOPEXRealTotalGeral.ClientID%>").value = "";
} else {
document.getElementById("<%=txtOPEXRealTotalGeral.ClientID%>").value =
vlrtot.formatMoney(0,'<%=Session("ThousandSeparator")%>','<%=Session("DecimalSeparator")%>');
}
}
}
}
}

</script>
<script language="JavaScript">

function PostBack()
{
var lblErr = document.getElementById("<%=lblError.ClientID%>");
lblErr.innerHTML = '';
ResizeTab();
var grid = null;

grid = eo_GetObject("grdFilhoAnterior");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdPrazoStatus");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdSSOCategoria");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdEnvolvidos");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdLimiteProducao");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdData");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdARO");
if (grid) { grid.editCell(-1, -1, true); }
grid = eo_GetObject("grdFilhoPosterior");
if (grid) { grid.editCell(-1, -1, true); }

var uploader = eo_GetObject("AXUArquivo");
var uploaderdelivery = eo_GetObject("AXUEntregaArquivo");

var keyuploader = true;
var keyuploaderdelivery = true;

if (uploader == null)
{
keyuploader = false;
} else {
if (uploader.isEmpty())
{
keyuploader = false;
}
}
if (uploaderdelivery == null)
{
keyuploaderdelivery = false;
} else {
if (uploaderdelivery.isEmpty())
{
keyuploaderdelivery = false;
}
}

if (keyuploader == false && keyuploaderdelivery == false)
{
var dialog = eo_GetObject('dlgPostBack');
dialog.show(true);
return true;
} else {
var dialogupload = eo_GetObject('dlgPostBackFile');
dialogupload.setCaption(document.title);
if (keyuploader) { uploader.upload(); }
if (keyuploaderdelivery) { uploaderdelivery.upload(); }
return false;
}
}

function PostReturn()
{
var dialog = eo_GetObject('dlgPostBack');
if (dialog != null) { dialog.show(false); }
dialog = eo_GetObject('dlgPostBackFile');
if (dialog != null) { dialog.show(false); }
return true;
}

function MostraDialog()
{
alert('Passei');
return true;
}

var rblAtendimentoAnteriorStatusAnt = -1;

function SetaCamposExigencia(TemCallBack)
{
if (document.getElementById("<%=tabAtendimentoAnterior.ClientID%>"))
{
var ButtonList = document.getElementById("<%=rblAtendimentoAnteriorStatus.ClientID%>");

if (ButtonList != null)
{
var x = 0;
var oco = -1;
var Buttons = ButtonList.getElementsByTagName("input");
for (x = 0; x < Buttons.length; x++)
{
if (Buttons[x].checked)
{
oco = x;
break;
}
}

var chamacallback = false;
if (rblAtendimentoAnteriorStatusAnt <= 0 && oco >= 1)
{
chamacallback = true;
} else {
if (oco <= 0 && rblAtendimentoAnteriorStatusAnt >= 1) { chamacallback = true; }
}
rblAtendimentoAnteriorStatusAnt = oco;

if (TemCallBack && chamacallback)
{
eo_Callback('cbpAtendimentoAnterior', '');
}
}
}
}

</script>
</head>
<body id="body" style="margin:3px;" onload="javascript:ResizeTab(); BodyLoad();" >
<form id="form1" runat="server" >
<div style="height: 100%">
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 39px;" id="TopTab">
<tr>
<td style="background-image: url(images/gray_top_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_top_center.jpg); height: 12px">
</td>
<td style="background-image: url(images/gray_top_right.jpg); width: 12px; height: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_middle_left.jpg); width: 12px">
</td>
<td style="background-color: #f2f2f2; vertical-align: middle; text-align: left; height: 40px;">
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 100%">
<tr>
<td style="width: 10px; height: 29px;">
</td>
<td style="width: 120px; height: 29px;">
<img id="imgLogo" runat="server" height="25" src="images/systemlogo.jpg" width="112" /></td>
<td style="width: 15px; height: 29px;">
</td>
<td style="vertical-align: top; text-align: left; height: 29px;">
<asp:Label ID="FormTitle" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="10pt"
ForeColor="#003399" Text="Título"
Width="100%"></asp:Label><br />
<asp:Label ID="FormSubTitle" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="9pt" ForeColor="#003399" Text="Sub-título" Width="100%"></asp:Label></td>
<td style="vertical-align: top; width: 10px; height: 29px; text-align: left">
&nbsp;
</td>
</tr>
</table>
</td>
<td style="background-image: url(images/gray_middle_right.jpg); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_bottom_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_bottom_center.jpg); height: 12px">
</td>
<td style="background-image: url(images/gray_bottom_right.jpg); width: 12px; height: 12px">
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 29px;" id="ButtonTab">
<tr>
<td style="background-image: url(images/gray_top_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_top_center.jpg); height: 12px;">
</td>
<td style="background-image: url(images/gray_top_right.jpg); width: 12px; height: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_middle_left.jpg); width: 12px">
</td>
<td style="background-color: #f2f2f2; height: 15px; ">
<table style="width: 100%">
<tr>
<td style="width: 7px">
</td>
<td style="vertical-align: middle; text-align: left; width: 270px;">
<asp:ImageButton ID="cmdSave" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/save_c.png"
Width="32px" TabIndex="-1" OnClientClick="return PostBack();" /><asp:ImageButton ID="cmdApproval" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/audit_c.png"
Width="32px" TabIndex="-1" OnClientClick="return PostBack();" />
<asp:Label ID="lblMenuAudit" runat="server" Font-Size="7pt" ForeColor="#F2F2F2" Text="A"></asp:Label><asp:ImageButton ID="cmdRepproval" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/auditrepproval_c.png"
Width="32px" TabIndex="-1" OnClientClick="return PostBack();" />&nbsp;
<asp:ImageButton ID="cmdPDF" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/document_c.png"
Width="32px" TabIndex="-1" /><asp:ImageButton ID="cmdPDFHave" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/documentexist_c.png"
Width="32px" />
&nbsp;&nbsp;<asp:ImageButton ID="cmdHelp" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/help_c.png"
Width="32px" TabIndex="-1" />&nbsp;
<asp:ImageButton ID="cmdExit" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/exit_c.png"
Width="32px" TabIndex="-1" /></td>
<td style="padding-right: 10px; vertical-align: middle; text-align: left">
<asp:Label ID="lblDeleteMessage" runat="server" Font-Size="X-Large" ForeColor="Red"
Text="Confirma deleção do documento?" Visible="False"></asp:Label></td>
<td style="padding-right: 20px; vertical-align: middle; width: 180px; text-align: right"><asp:ImageButton ID="cmdAtendimento" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/target_c.png"
Width="32px" TabIndex="-1" OnClientClick="javascript: return false;" />&nbsp; &nbsp;<asp:ImageButton ID="cmdViewRecursive" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/viewrecursive_c.png"
Width="32px" TabIndex="-1" OnClientClick="javascript: return false;" />
&nbsp;
<asp:ImageButton ID="cmdViewPDF" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/viewdocument_c.png"
Width="32px" TabIndex="-1" OnClientClick="javascript: return false;" /><asp:ImageButton ID="cmdAnteriorView" runat="server" Height="32px" ImageUrl="~/GLM/images/button/beige/view_c.png"
Width="32px" TabIndex="-1" OnClientClick="javascript: return VerDocAnterior();" /></td>
<td style="vertical-align: middle; width: 180px; text-align: center">
<asp:Label ID="lblTitleStatus" runat="server" BackColor="Green" BorderColor="Green"
BorderStyle="Solid" BorderWidth="5px" Font-Bold="True" Font-Names="Verdana" Font-Size="9pt"
ForeColor="White" Text="Alerta para Renovação" Width="180px"></asp:Label></td>
<td style="width: 7px">
</td>
</tr>
</table>
<eo:Flyout ID="fotStatusList" runat="server" ExpandDirection="BottomLeft" For="lblTitleStatus">
<ContentTemplate>
<div id="div1" onclick="return divMenuPrint_onclick()" style="border-top-width: thin;
border-left-width: thin; border-left-color: #003399; border-bottom-width: thin;
border-bottom-color: #003399; color: #003399; border-top-color: #003399; border-right-width: thin;
border-right-color: #003399">
</div>
</ContentTemplate>
</eo:Flyout>
<eo:Flyout ID="fotAtendimento" runat="server" ExpandDirection="BottomLeft" For="cmdAtendimento" Width="300px">
<ContentTemplate>
<div id="div2" onclick="return divMenuPrint_onclick()" style="border-top-width: thin;
border-left-width: thin; border-left-color: #003399; border-bottom-width: thin;
border-bottom-color: #003399; color: #003399; border-top-color: #003399; border-right-width: thin;
border-right-color: #003399">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="background-image: url(images/beige_top_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/beige_top_center.jpg); width: 600px;">
</td>
<td style="background-image: url(images/beige_top_right.jpg); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_middle_left.jpg)">
</td>
<td style="padding-right: 10px; padding-left: 10px; padding-bottom: 10px; padding-top: 10px;
background-color: #ffffd4">
<eo:Grid ID="grdAtendimento" runat="server" BorderWidth="0px" ColumnHeaderAscImage="00050303"
ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="~/GLM/images/headerseparator34.gif" FixedColumnCount="1"
Font-Bold="False" Font-Italic="False" Font-Names="Verdana" Font-Overline="False"
Font-Size="7.5pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223"
GridLines="Both" Width="100%" ColumnHeaderHeight="24" Height="158px">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnHeaderTextStyle CssText="" />
<FixedBottomItemStyle CssText="" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
</eo:TextBoxColumn>
<eo:DateTimeColumn DataFormat="">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-color:steelblue;color:white;font-family:Verdana;font-size:7pt;font-weight:bold;padding-left:4px;padding-top:2px;vertical-align:middle;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:StaticColumn DataField="DOCU_SQ_DOCUMENT" HeaderText="DOCU_SQ_DOCUMENT" Name="DOCU_SQ_DOCUMENT"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="DOCR_DT_CONTROL" DataFormat="{0:dd/MM/yyyy}" DataType="DateTime"
HeaderText="Data" Name="DOCR_DT_CONTROL" ReadOnly="True" Width="80">
</eo:StaticColumn>
<eo:TextBoxColumn DataField="DOCR_NM_STATUS" HeaderText="Status" Name="DOCR_NM_STATUS"
Width="140">
</eo:TextBoxColumn>
<eo:TextBoxColumn DataField="DOCR_DS_NONCONFORMITY" HeaderText="Justificativa" Name="DOCR_DS_NONCONFORMITY"
Width="350">
</eo:TextBoxColumn>
</Columns>
</eo:Grid>
</td>
<td style="background-image: url(images/beige_middle_right.jpg)">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_bottom_left.jpg); height: 12px">
</td>
<td style="background-image: url(images/beige_bottom_center.jpg)">
</td>
<td style="background-image: url(images/beige_bottom_right.jpg)">
</td>
</tr>
</table>
&nbsp;
</div>
</ContentTemplate>
</eo:Flyout>
<eo:Flyout ID="fotViewPDF" runat="server" ExpandDirection="BottomLeft" For="cmdViewPDF" OffsetX="30">
<ContentTemplate>
<div id="div1" onclick="return divMenuPrint_onclick()" style="border-top-width: thin;
border-left-width: thin; border-left-color: #003399; border-bottom-width: thin;
border-bottom-color: #003399; color: #003399; border-top-color: #003399; border-right-width: thin;
border-right-color: #003399">
</div>
</ContentTemplate>
</eo:Flyout><eo:Flyout ID="fotViewRecursive" runat="server" ExpandDirection="BottomLeft" For="cmdViewRecursive" OffsetX="77">
<ContentTemplate>
<div id="div1" onclick="return divMenuPrint_onclick()" style="border-top-width: thin;
border-left-width: thin; border-left-color: #003399; border-bottom-width: thin;
border-bottom-color: #003399; color: #003399; border-top-color: #003399; border-right-width: thin;
border-right-color: #003399">
</div>
</ContentTemplate>
</eo:Flyout>
</td>
<td style="background-image: url(images/gray_middle_right.jpg); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_bottom_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_bottom_center.jpg); height: 12px;">
</td>
<td style="background-image: url(images/gray_bottom_right.jpg); width: 12px; height: 12px">
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="MiddleTab">
<tr>
<td style="background-image: url(images/blue_top_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/blue_top_center.jpg); height: 12px; ">
</td>
<td style="background-image: url(images/blue_top_right.jpg); width: 12px; height: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_middle_left.jpg); width: 12px; height: 100%">
</td>
<td style="background-color: #f2ffff; height: 100%; vertical-align: top; ">
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 100%; vertical-align: top;">
<tr>
<td style="border-bottom-color: #003399; height: 30px; vertical-align: top;">
<div id="divmiddle" style="width: 100%; height: 4500px; overflow:auto;">
<eo:CallbackPanel ID="cbpDocumento" runat="server" Height="10px" Width="100%" LoadingDialogID="dlgPostBack" Triggers="{ControlID:cboCategoria;Parameter:},{ControlID:cboTipo;Parameter:},{ControlID:cboDocumentoPai;Parameter:},{ControlID:ckbEntregaRenova;Parameter:}" ClientSideAfterUpdate="cbpDocumentoChanged" ClientSideBeforeExecute="cbpDocumentoExecute" >
<div id="divDocumento" style="width: 100%;">
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabDocumentoAnterior" runat="server">
<tr >
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
<asp:Label ID="lblCabDocumentoAnterior" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Doc. Anterior:" Visible="False"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px; height: 13px;" colspan="3">
<asp:LinkButton ID="lkbDocumentoAnterior" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Visible="False"></asp:LinkButton><asp:Label ID="lblDocumentoAnterior" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label></td>
</tr>
<tr runat="server">
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td colspan="3" style="padding-left: 5px; vertical-align: top; height: 13px; text-align: left">
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%; border-left-color: red; border-bottom-color: red; border-top-color: red; border-right-color: red;" id="tabFilhoAnterior" runat="server">
<tr>
<td style="vertical-align: top; height: 10px; text-align: left; padding-right: 8px; padding-left: 8px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; border-right: red 8px outset; border-top: red 8px outset; border-left: red 8px outset; border-bottom: red 8px outset; background-color: #fff5f5;">
<tr>
<td style="vertical-align: top; height: 10px; text-align: center; padding-top: 5px;">
<asp:Label ID="lblTitFilhoAnterior" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="Red" Text="Documentos Subordinados ao Anterior Ainda Ativos"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 10px; height: 10px; text-align: left; padding-right: 2px;">
<eo:Grid ID="grdFilhoAnterior" runat="server" BorderWidth="0px" ColumnHeaderAscImage="00050303"
ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="~/GLM/images/headerseparator34.gif" FixedColumnCount="1"
Font-Bold="False" Font-Italic="False" Font-Names="Verdana" Font-Overline="False"
Font-Size="7.5pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223"
GridLines="Both" Width="100%" ColumnHeaderHeight="34" Height="158px" ClientSideOnCellSelected="OnFilhoAnteriorCellSelected" FullRowMode="False">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<FixedBottomItemStyle CssText="" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
</eo:TextBoxColumn>
<eo:DateTimeColumn DataFormat="">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUE">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:#003399;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:#003399;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBOLD">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:#003399;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBOLDBACK">
<ItemStyle CssText="background-color: #f0f0f0;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:#003399;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREEN">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:green;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:green;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBOLD">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:green;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBOLDBACK">
<ItemStyle CssText="background-color: #f0f0f0;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:green;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="PURPLE">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:#9900cc;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="PURPLEBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:#9900cc;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="RED">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:red;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:red;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBOLD">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:red;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:red;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="WINEBOLD">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:darkred;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="WINEBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:darkred;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOW">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:orange;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:orange;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBOLD">
<ItemStyle CssText="background-color: #fff5f5;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:orange;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:orange;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:StaticColumn Name="KEYHAVEDTCLOSE" Visible="False" Width="0">
<CellStyle CssText="" />
</eo:StaticColumn>
<eo:StaticColumn Name="KEYHAVEJUSTIFICATION" Visible="False" Width="0">
<CellStyle CssText="" />
</eo:StaticColumn>
<eo:StaticColumn DataType="String" HeaderText="Tipo / Categoria" Name="DCTP_NM_DOCUMENT_TYPE"
ReadOnly="True" Width="250">
</eo:StaticColumn>
<eo:StaticColumn DataType="String" HeaderText="Nome" Name="DOCU_NM_DOCUMENT" ReadOnly="True"
Width="200">
</eo:StaticColumn>
<eo:StaticColumn DataType="String" HeaderText="Status" Name="GLST_NM_STATUS" ReadOnly="True">
</eo:StaticColumn>
<eo:StaticColumn DataType="String" HeaderText="Nr. Documento" Name="DOCU_NU_DOCUMENT"
ReadOnly="True" Width="90">
</eo:StaticColumn>
<eo:StaticColumn DataFormat="{0:dd/MM/yyyy}" DataType="DateTime" HeaderText="Dt. In&#237;cio"
Name="DOCU_DT_INITIAL_VALIDITY" ReadOnly="True" Width="80">
</eo:StaticColumn>
<eo:StaticColumn DataFormat="" DataType="String" HeaderText="Dt. Fim (Dt. Entrega)"
Name="DOCU_DT_FINAL_VALIDITY" ReadOnly="True" Width="80">
</eo:StaticColumn>
<eo:DateTimeColumn DataField="DOCU_DT_CLOSE" HeaderText="Dt. Encerramento" Name="DOCU_DT_CLOSE">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="font-family:Courier New; padding-left:5px; padding-right: 5px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:TextBoxColumn DataField="DOCU_DS_CLOSE_JUSTIFICATION" HeaderText="Justificativa"
Name="DOCU_DS_CLOSE_JUSTIFICATION" Width="300">
</eo:TextBoxColumn>
<eo:StaticColumn DataField="DOCU_SQ_DOCUMENT" HeaderText="DOCU_SQ_DOCUMENT" Name="DOCU_SQ_DOCUMENT"
Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
<ColumnHeaderStyle CssText="background-color:steelblue;color:white;font-family:Verdana;font-size:7pt;font-weight:bold;padding-left:4px;padding-top:2px;vertical-align:middle;" />
<ColumnHeaderTextStyle CssText="" />
</eo:Grid>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: left">
</td>
</tr>
</table>
<eo:CallbackPanel ID="cbpAtendimentoAnterior" runat="server" Height="10px" Width="100%" LoadingDialogID="dlgPostBack" >
<table cellpadding="0" cellspacing="0" style="width: 100%; border-left-color: red; border-bottom-color: red; border-top-color: red; border-right-color: red;" id="tabAtendimentoAnterior" runat="server">
<tr>
<td style="vertical-align: top; height: 10px; text-align: left; padding-right: 8px; padding-left: 8px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; border-right: dodgerblue 8px outset; border-top: dodgerblue 8px outset; border-left: dodgerblue 8px outset; border-bottom: dodgerblue 8px outset; background-color: #e5fff4;">
<tr>
<td style="vertical-align: top; height: 10px; text-align: center; padding-top: 5px;">
<asp:Label ID="lblTitAtendimentoAnterior" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="#003399" Text="Controle de Atendimento de Exigências"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 10px; height: 10px; text-align: left; padding-right: 2px;">
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; height: 10px; width:130px; text-align: right; padding-top: 6px;">
<asp:Label ID="lblCabAtendimentoAnteriorStatus" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Status:"></asp:Label></td>
<td style="vertical-align: top; text-align: left;">
<asp:RadioButtonList ID="rblAtendimentoAnteriorStatus" runat="server" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" RepeatDirection="Horizontal"
onclick="JavaScript: SetaCamposExigencia(true);">
<asp:ListItem Value="T">Totalmente</asp:ListItem>
<asp:ListItem Value="P">Parcialmente</asp:ListItem>
<asp:ListItem Value="N">N&#227;o Atendido</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 10px; height: 1px; text-align: right">
<asp:Label ID="lblCabAtendimentoAnteriorJustificativa" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Justificativa:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; padding-top: 10px; text-align: left;">
<asp:TextBox ID="txtAtendimentoAnteriorJustificativa" runat="server" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Height="60px" TabIndex="19" TextMode="MultiLine"
Width="728px"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: left">
</td>
</tr>
</table>
</eo:CallbackPanel>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabAuditoria" runat="server">
<tr>
<td style="vertical-align: top; text-align: right; height: 1px; width: 135px;">
<asp:Label ID="lblCabAuditoria" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Resultado de Auditoria:" Width="125px"></asp:Label>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; height: 7px; text-align: right">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right">
<asp:ImageButton ID="cmdAuditoriaReprovada" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/auditrepprovallist_c.png" TabIndex="-1" Width="24px" OnClientClick="javascript: return false;" /></td>
</tr>
</table>
</td>
<td colspan="3" style="vertical-align: top; text-align: left; padding-left: 5px;">
<asp:TextBox ID="txtAuditoria" runat="server" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399"
Height="90px" MaxLength="8000" TextMode="MultiLine" Width="741px" ReadOnly="True"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; width: 135px; height: 17px; text-align: right; font-weight: bold;">
</td>
<td colspan="3" style="padding-left: 5px; vertical-align: top; height: 17px; text-align: left">
<asp:Label ID="lblAuditoriaAutor" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label><eo:Flyout ID="fotViewAudit" runat="server" ExpandDirection="BottomRight" For="cmdAuditoriaReprovada" OffsetX="24" OffsetY="-60">
<ContentTemplate>
<div id="div1" onclick="return divMenuPrint_onclick()" style="border-top-width: thin;
border-left-width: thin; border-left-color: #003399; border-bottom-width: thin;
border-bottom-color: #003399; color: #003399; border-top-color: #003399; border-right-width: thin;
border-right-color: #003399">
</div>
</ContentTemplate>
</eo:Flyout>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 10px;">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 7px;">
<asp:Label ID="lblCabCategoria" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Categoria:" Width="125px"></asp:Label></td>
<td style="vertical-align: top; width: 321px; text-align: left; padding-left: 5px;"><asp:DropDownList ID="cboCategoria" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Width="300px" AutoPostBack="True" TabIndex="1">
</asp:DropDownList></td>
<td style="vertical-align: top; width: 126px; text-align: right;">
<asp:Label ID="lblCabTipo" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Tipo:" Width="116px"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px;">
<asp:DropDownList ID="cboTipo" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="2" Width="300px" AutoPostBack="True" >
</asp:DropDownList>&nbsp;
<asp:ImageButton ID="cmdTipoProcesso" runat="server" Height="16px" ImageUrl="~/GLM/images/button/gear_c.png"
Width="23px" TabIndex="-1" OnClientClick="return ShowProcess();" /></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabDocumentoPai" runat="server">
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 10px;">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; text-align: right; height: 1px; width: 135px;">
<asp:Label ID="lblCabDocumentoPai" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Doc. Pai:" Visible="False" Width="125px"></asp:Label></td>
<td colspan="3" style="vertical-align: top; text-align: left; padding-left: 5px;">
<asp:DropDownList ID="cboDocumentoPai" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Width="752px" AutoPostBack="True" TabIndex="3" Visible="False">
</asp:DropDownList></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabUnidadeArea">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: middle; height: 20px; text-align: right; width: 135px;">
<asp:Label ID="lblCabUnidade" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Unidade:" Width="125px"></asp:Label></td>
<td style="vertical-align: middle; width: 321px; height: 20px; text-align: left; padding-left: 5px;">
<asp:Label ID="lblUnidade" runat="server" Font-Bold="False" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399"></asp:Label><asp:DropDownList ID="cboUnidade" runat="server"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" TabIndex="-1" Width="230px">
</asp:DropDownList><asp:Label ID="lblFileSize" runat="server" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#F2FFFF" Text=" " Width="8px"></asp:Label><asp:ImageButton ID="cmdUnidadeCompartilhada" runat="server" Height="16px" ImageUrl="~/GLM/images/button/beige/shareno_c.png" TabIndex="-1" Width="32px" OnClientClick="javascript: return CompartilhadaClick();" ToolTip="Teste de Hint" />
</td>
<td style="vertical-align: middle; height: 20px; text-align: right">
&nbsp;<asp:Label ID="lblCabArea" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Área:" Width="116px"></asp:Label></td>
<td style="vertical-align: middle; height: 20px; text-align: left; padding-left: 5px;"><asp:DropDownList ID="cboArea" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="4" Width="300px" >
</asp:DropDownList></td>
</tr>
</table>
<table ID="tabUNIDADE" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%;">
<tr>
<td style="vertical-align: top; height: 10px; text-align: right; width: 135px;">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right; width: 126px;">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabUNIDADERazaoSocial" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Razão Social:" Width="125px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; width: 320px; text-align: left">
<asp:Label ID="lblUNIDADERazaoSocial" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabUNIDADENomeFantasia" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nome Fantasia:" Width="116px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblUNIDADENomeFantasia" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabUNIDADECNPJ" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="CNPJ:" Width="125px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblUNIDADECNPJ" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="99.999.999/9999-99"></asp:Label></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCapUNIDADERamo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Ramo Atividade:" Width="116px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblUNIDADERamo" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabUNIDADEGrauRisco" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Grau de Risco:" Width="125px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblUNIDADEGrauRisco" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="9 - Descrição"></asp:Label></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabUNIDADENrCNAE" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Número CNAE:" Width="116px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblUNIDADENrCNAE" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="9999-9/99 - Descrição"></asp:Label></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%" id="tabEntrega1" runat="server">
<tr>
<td style="height: 10px">
</td>
<td>
</td>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; font-size: 10px; padding-top: 3px;" rowspan="3">
<asp:Label ID="lblCabEntrega" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Entrega" Width="125px"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px;" colspan="4">
<asp:Label ID="lblEntregaDatas" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; width: 120px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 140px; text-align: left">
</td>
<td style="vertical-align: top; width: 187px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; width: 120px; height: 10px; text-align: right">
<asp:Label ID="lblCabEntregaDtEntregaReal" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Data:" Width="110px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; width: 140px; text-align: left">
<eo:DatePicker ID="dtpEntregaDtEntregaReal" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="5">
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;" />
</eo:DatePicker>
</td>
<td style="vertical-align: top; width: 187px; text-align: right">
<asp:Label ID="lblCabEntregaNrProtocolo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Número do Protocolo:" Width="177px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtEntregaNrProtocolo" runat="server" BackColor="#F0F0F0" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" MaxLength="40" TabIndex="6" Width="295px"></asp:TextBox></td>
</tr>
</table>
<table id="tabEntrega2" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="width: 135px; height: 7px">
</td>
<td style="vertical-align: top; width: 120px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="height: 10px; vertical-align: top; text-align: right;" colspan="2">
<asp:Label ID="lblCabEntregaArquivo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Arquivo PDF:" Width="245px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<eo:AJAXUploader ID="AXUEntregaArquivo" runat="server" ClientSideOnCancel="uploader_canceled"
ClientSideOnError="UploadError" ProgressDialogID="dlgPostBackFile" ProgressTextFormat="Uploading... {transferred} bytes of {total} bytes ({percentage}%) done."
TempFileLocation="~/eo_upload" Width="632px" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" TabIndex="7" AutoPostBack="True">
<BrowseButtonStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;font-weight:bold;" />
<LayoutTemplate>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="font-size: 9pt; color: #003399; font-family: Verdana">
<asp:PlaceHolder ID="InputPlaceHolder" runat="server">Input Box Place Holder</asp:PlaceHolder>
</td>
</tr>
</table>
</LayoutTemplate>
<TextBoxStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;" />
</eo:AJAXUploader>
<br />
<asp:Label ID="lblEntregaObsArquivo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Tamanho máximo: 1.024 MB" Width="632px"></asp:Label></td>
</tr>
</table>
<table id="tabEntrega3" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="width: 135px; height: 10px">
</td>
<td style="vertical-align: top; width: 120px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td align="left" style="width: 327px" valign="top">
</td>
<td align="left" style="padding-left: 5px; vertical-align: top; text-align: left"
valign="top">
<asp:CheckBox ID="ckbEntregaRenova" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Deve ser Renovada" Checked="True" AutoPostBack="True" /></td>
</tr>
</table>
</td>
</tr>
</table>
<table id="tabEntrega4" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="height: 10px">
</td>
</tr>
<tr>
<td style="background-image: url(images/linegradient.jpg); height: 27px; vertical-align: top; padding-top: 3px; text-align: center;">
<asp:Label ID="lblCabEntregaTitulo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#F2FFFF" Text="Informações para Renovação"></asp:Label></td>
</tr>
</table>
<eo:CallbackPanel ID="cbpDatasFrequencias" runat="server" LoadingDialogID="dlgPostBack" Width="900px" Triggers="" ClientSideAfterUpdate="SetFocusedCmp" ClientSideBeforeExecute="GetFocusedCmp">
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabDatas" runat="server">
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 10px;">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right; width: 135px;">
<asp:Label ID="lblCabDtVencInicio" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Dt.Venc.Início:"></asp:Label></td>
<td style="vertical-align: top; width: 321px; text-align: left; padding-left: 5px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 125px; text-align: left">
<eo:DatePicker ID="dtpDtVencInicio" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="8" ClientSideOnBlur="DtInicChanged">
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
</eo:DatePicker>
</td>
<td style="vertical-align: top; text-align: right">
<asp:CheckBox ID="ckbInformativa" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="7pt" ForeColor="#003399" Text="Informativo / Sem Validade"
onclick="javascript:MudaInformativa();" EnableTheming="True" /></td>
</tr>
</table>
</td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabDtVencFim" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Dt.Venc.Fim:"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px;">
<eo:DatePicker ID="dtpDtVencFim" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="9" ClientSideOnBlur="DtVencChanged">
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="BACKGROUND-COLOR: #f0f0f0; FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 9pt" />
</eo:DatePicker>
<asp:Label ID="lblCategoriaRelacao" runat="server" Font-Names="Verdana" Font-Size="1pt"
ForeColor="#F2FFFF" Text=" " Width="8px"></asp:Label><asp:Label ID="lblFrequenciaRigida" runat="server" Font-Names="Verdana" Font-Size="1pt"
ForeColor="#F2FFFF" Text=" " Width="8px"></asp:Label></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabFrequenciaDtEntrega" runat="server">
<tr>
<td style="vertical-align: top; text-align: right; height: 7px; width: 135px; padding-top: 15px;" id="cellFrequenciaDtEntrega2" runat="server">
<asp:Label ID="lblCabFrequencia" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Frequência:"></asp:Label></td>
<td style="vertical-align: top; width: 321px; text-align: left; padding-left: 5px; padding-top: 15px;">
<asp:DropDownList ID="cboFrequencia" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="10" Width="300px"></asp:DropDownList><asp:TextBox ID="txtChFrequenciaRigida" runat="server" BorderStyle="None" BackColor="#F2FFFF" BorderColor="#F2FFFF" Font-Size="2pt" ForeColor="#F2FFFF" Height="2px" Width="2px"></asp:TextBox><asp:TextBox ID="txtTipoRenovacao" runat="server" BorderStyle="None" BackColor="#F2FFFF" BorderColor="#F2FFFF" Font-Size="2pt" ForeColor="#F2FFFF" Height="2px" Width="2px" TabIndex="-1"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right; padding-top: 15px; width: 126px;">
<asp:Label ID="lblCabDtDocEntrega" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Dt.Entrega:" Visible="False"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px; padding-top: 15px;">
<eo:DatePicker ID="dtpDtDocEntrega" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="11" PopupExpandDirection="Auto" Visible="False" ClientSideOnBlur="DtEntregaChanged">
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="background-color:#f0f0f0;color:#003399;font-family:Verdana;font-size:9pt;" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
</eo:DatePicker>
</td>
</tr>
</table>
<table id="tabPrazosNovos" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 7px; text-align: right" id="cellPrazosNovos1" runat="server">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right" id="cellPrazosNovos2" runat="server">
<asp:Label ID="lblCabPrazos" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Height="100%" Text="Prazos:"></asp:Label></td>
<td style="padding-right: 7px; padding-left: 5px; vertical-align: top; text-align: left">
<eo:Grid ID="grdPrazoStatus" runat="server" BackColor="#F0F0F0" BorderColor="#C7D1DF"
BorderWidth="1px" ClientSideBeforeEditItem=""
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="~/GLM/images/headerseparator34.gif"
ColumnHeaderHeight="34" EnableKeyboardNavigation="True" FixedColumnCount="1"
Font-Bold="False" Font-Italic="False" Font-Names="Verdana" Font-Overline="False"
Font-Size="8pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223"
GridLines="Both" Height="96px" ItemHeight="19" TabIndex="-1" Width="100%" FullRowMode="False" ClientSideOnCellSelected="PrazoStatusSelected">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-color:steelblue;color:white;font-weight:bold;padding-left:8px;padding-top:2px;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:StaticColumn DataField="STQU_SQ_STATUS_QUEUE" DataType="Integer" HeaderText="STQU_SQ_STATUS_QUEUE"
Name="STQU_SQ_STATUS_QUEUE" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="STQU_DS_STATUS_QUEUE" DataType="String" HeaderText=""
Name="STQU_DS_STATUS_QUEUE" Width="220">
</eo:StaticColumn>
<eo:StaticColumn DataField="STQU_ID_APLICABLE_DEFAULT" HeaderText="STQU_ID_APLICABLE_DEFAULT"
Name="STQU_ID_APLICABLE_DEFAULT" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="STQU_QT_PRIOR_DAYS_DEFAULT" DataType="Integer" HeaderText="Prazo em Dias Padr&#227;o"
Name="STQU_QT_PRIOR_DAYS_DEFAULT" Width="110">
<CellStyle CssText="TEXT-ALIGN: center; FONT-FAMILY: Verdana; COLOR: #003399; VERTICAL-ALIGN: top" />
</eo:StaticColumn>
<eo:CheckBoxColumn ClientSideBeginEdit="PrazoStatusDisabled" ClientSideEndEdit="PrazoStatusChanged"
DataField="STQU_ID_APLICABLE" HeaderText="N&#227;o Aplic&#225;vel?" Name="STQU_ID_APLICABLE"
Width="140">
<CellStyle CssText="TEXT-ALIGN: center; COLOR: #003399; VERTICAL-ALIGN: top" />
</eo:CheckBoxColumn>
<eo:TextBoxColumn ClientSideBeginEdit="PrazoStatusDisabled" ClientSideEndEdit="PrazoStatusChanged"
DataField="STQU_QT_PRIOR_DAYS" DataType="String" HeaderText="Prazo em Dias Espec&#237;fico"
MinWidth="3" Name="STQU_QT_PRIOR_DAYS" Width="110">
<CellStyle CssText="TEXT-ALIGN: center; FONT-FAMILY: Verdana; COLOR: #003399; VERTICAL-ALIGN: top" />
</eo:TextBoxColumn>
<eo:StaticColumn DataField="STQU_DS_EMAIL_DATE" HeaderText="E-mail Enviado a Partir de"
Name="STQU_DS_EMAIL_DATE" Width="145">
<CellStyle CssText="TEXT-ALIGN: center; FONT-FAMILY: Verdana; COLOR: #003399; VERTICAL-ALIGN: top" />
</eo:StaticColumn>
<eo:StaticColumn DataField="STQU_SQ_STATUS_QUEUE_DOC" HeaderText="STQU_SQ_STATUS_QUEUE_DOC"
Name="STQU_SQ_STATUS_QUEUE_DOC" Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
</eo:Grid>
</td>
</tr>
</table>
<asp:Panel ID="pnlControleAtendimento" runat="server">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; padding-top: 10px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; padding-top: 10px; text-align: left">
<asp:CheckBox ID="chkControleAtendimento" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" onclick="javascript:SetaControleObrigatorio();"
TabIndex="390" Text="Tem Controle Atendimento?" /></td>
</tr>
</table>
</asp:Panel>
</eo:CallbackPanel>
<table ID="tabPPRACMSOCAPR" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 320px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabPPRACMSOCAPRResposavel" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Elaborado Por:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtPPRACMSOCAPRResponsavel" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="40" TabIndex="1001" Width="290px"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabPPRACMSOCAPRNrARTCRM" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Número CRM:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtPPRACMSOCAPRNrARTCRM" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="40" TabIndex="1002" Width="140px"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabPPRACMSOCAPRNrEmpregados" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nr. Empregados:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtPPRACMSOCAPRNrEmpregados" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="6" TabIndex="1004" Width="50px"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
</table>
<table ID="tabPCMAT" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 320px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabPCMATResposavel" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Elaborado Por:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtPCMATResponsavel" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="40" TabIndex="1001" Width="290px"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabPCMATNrTrabalhadores" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nr. Trabalhadores:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtPCMATNrTrabalhadores" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="6" TabIndex="1004" Width="50px"></asp:TextBox></td>
</tr>
</table>
<table ID="tabRAT1" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 320px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right"><table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabRATCategoria" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Categ. Acidente / Incidente:" Width="120px"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 5px; text-align: right">
<asp:ImageButton ID="cmdSSOCategoryInsert" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/incidentcategoryinsert_c.png"
OnClientClick="javascript: return SSONewCategory();" TabIndex="-1" Width="24px" />&nbsp;
<asp:ImageButton ID="cmdSSOCategoryDelete" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/incidentcategorydelete_c.png"
OnClientClick="javascript: return SSOCategoryDelete();" TabIndex="-1" Width="24px" /></td>
</tr>
</table>
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left" colspan="3"><eo:Grid ID="grdSSOCategoria" runat="server" BorderColor="#C7D1DF" BorderWidth="1px"
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="00050302"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Verdana"
Font-Overline="False" Font-Size="8pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223" GridLines="Both" Height="72px"
ItemHeight="19" Width="745px" BackColor="#F0F0F0" EnableKeyboardNavigation="True" ClientSideBeforeEditItem="" TabIndex="-1" ClientSideOnItemSelected="SSOCategorySelected">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-image:url('00050301');padding-left:8px;padding-top:2px;font-weight: bold;color:white;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:StaticColumn DataField="INCT_SQ_INCIDENT_CATEGORY" DataType="Integer" HeaderText="INCT_SQ_INCIDENT_CATEGORY"
Name="INCT_SQ_INCIDENT_CATEGORY" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="INCT_NM_INCIDENT_CATEGORY" DataType="String" HeaderText="Nome"
Name="INCT_NM_INCIDENT_CATEGORY" Width="250">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRLV_SQ_GRAVITY_LEVEL" DataType="Integer" HeaderText="GRLV_SQ_GRAVITY_LEVEL"
Name="GRLV_SQ_GRAVITY_LEVEL" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRLV_NM_GRAVITY_LEVEL" DataType="String" HeaderText="N&#237;vel"
Name="GRLV_NM_GRAVITY_LEVEL" Width="235">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRPT_SQ_GRAVITY_POTENTIAL" DataType="Integer" HeaderText="GRPT_SQ_GRAVITY_POTENTIAL"
Name="GRPT_SQ_GRAVITY_POTENTIAL" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRPT_NM_GRAVITY_POTENTIAL" DataType="String" HeaderText="Potencial"
Name="GRPT_NM_GRAVITY_POTENTIAL" Width="235">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRLV_CD_GRAVITY_LEVEL" DataType="Integer" HeaderText="GRLV_CD_GRAVITY_LEVEL"
Name="GRLV_CD_GRAVITY_LEVEL" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="LVCT_DS_GRAVITY_LEVEL_CATEGORY" DataType="String" HeaderText="LVCT_DS_GRAVITY_LEVEL_CATEGORY"
Name="LVCT_DS_GRAVITY_LEVEL_CATEGORY" Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
</eo:Grid>
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabRATDtHrOcorrencia" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Dt. Incidente:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 165px; text-align: left">
<eo:DatePicker ID="dtpRATDtHrOcorrencia" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="2012-11-06 18:35:00" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="1002" PickerFormat="MM/dd/yyyy HH:mm" ClientSideOnChange="SSODtIncidentChanged" >
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 9pt" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
</eo:DatePicker>
</td>
<td style="vertical-align: top; text-align: left">
<asp:Label ID="lblRATDiaSemana" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Terça-feira"></asp:Label></td>
</tr>
</table>
</td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabRATTurno" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Turno:"></asp:Label></td>
<td style="vertical-align: top; text-align: left">
<asp:RadioButtonList ID="rdbRATTurno" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" RepeatColumns="2" RepeatDirection="Horizontal">
<asp:ListItem Value="1">Normal</asp:ListItem>
<asp:ListItem Value="2">Extra</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabRATArea" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Área:"></asp:Label></td>
<td style="vertical-align: top; text-align: left">
<asp:RadioButtonList ID="rdbRATArea" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" RepeatColumns="2" RepeatDirection="Horizontal">
<asp:ListItem Value="1">Interna</asp:ListItem>
<asp:ListItem Value="2">Externa</asp:ListItem>
</asp:RadioButtonList></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabRATAreaEnvolvida" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Área Envolvida:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:DropDownList ID="cboRATAreaEnvolvida" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="1004" Width="300px" Font-Bold="False" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabRATTituloEnvolvidos" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Envolvidos:"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 5px; text-align: right">
<asp:ImageButton ID="cmdInjuredInsert" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/insertpeople_c.png"
OnClientClick="javascript: return SSONewInjured();" TabIndex="-1" Width="24px" />&nbsp;
<asp:ImageButton ID="cmdInjuredDelete" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/deletepeople_c.png"
OnClientClick="javascript: return SSOInjuredDelete();" TabIndex="-1" Width="24px" /></td>
</tr>
</table>
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left" colspan="3">
<eo:Grid ID="grdEnvolvidos" runat="server" BorderColor="#C7D1DF" BorderWidth="1px"
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="00050302"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Verdana"
Font-Overline="False" Font-Size="8pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223" GridLines="Both" Height="93px"
ItemHeight="19" Width="745px" BackColor="#F0F0F0" EnableKeyboardNavigation="True" ClientSideBeforeEditItem="" TabIndex="-1" ClientSideOnItemSelected="SSOInjuredSelected">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-image:url('00050301');padding-left:8px;padding-top:2px;font-weight: bold;color:white;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:RowNumberColumn Width="35">
</eo:RowNumberColumn>
<eo:StaticColumn DataField="INJU_SQ_INJURED" HeaderText="INJU_SQ_INJURED" Name="INJU_SQ_INJURED"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="IndNoTest" DataType="Boolean" HeaderText="IndNoTest" Name="IndNoTest"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="INJU_NM_INJURED" DataType="String" HeaderText="Nome Envolvido"
Name="INJU_NM_INJURED" Width="230">
</eo:StaticColumn>
<eo:StaticColumn DataField="INJU_NM_CONTRIBUTOR_TYPE" DataType="DateTime" HeaderText="Tp.Colaborador"
Name="INJU_NM_CONTRIBUTOR_TYPE" Width="120">
</eo:StaticColumn>
<eo:StaticColumn DataField="INJU_NM_FUNCTION_NAME" DataType="String" HeaderText="Fun&#231;&#227;o"
Name="INJU_NM_FUNCTION_NAME" Width="140">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRLV_NM_GRAVITY_LEVEL" DataType="String" HeaderText="N&#237;vel"
Name="GRLV_NM_GRAVITY_LEVEL">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRPT_NM_GRAVITY_POTENTIAL" DataType="String" HeaderText="Potencial"
Name="GRPT_NM_GRAVITY_POTENTIAL">
</eo:StaticColumn>
<eo:StaticColumn DataField="GRLV_CD_GRAVITY_LEVEL" DataType="Integer" HeaderText="GRLV_CD_GRAVITY_LEVEL"
Name="GRLV_CD_GRAVITY_LEVEL" Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
</eo:Grid>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabNome" runat="server">
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 10px;">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right; width: 135px;">
<asp:Label ID="lblCabNome" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Nome:"></asp:Label></td>
<td style="vertical-align: top; width: 321px; text-align: left; padding-left: 5px;">
<asp:TextBox ID="txtNome" runat="server" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399"
MaxLength="100" Width="292px" TabIndex="15"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right;">
<asp:Label ID="lblCabAgencia" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Agência:"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px;">
<asp:TextBox ID="txtAgencia" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" MaxLength="100" Width="292px" TabIndex="16"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right; width: 135px;">
<asp:Label ID="lblCabNumero" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nr. Documento:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; width: 321px; text-align: left">
<asp:TextBox ID="txtNumero" runat="server" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399"
MaxLength="40" BackColor="#F0F0F0" TabIndex="17"></asp:TextBox></td>
<td style="vertical-align: top; text-align: center" colspan="2"><asp:CheckBox ID="chkBNDES" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Tem Financiamento do BNDES?" TabIndex="18" /></td>
</tr>
</table>
<table id="tabDescricao" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; height: 7px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 7px; text-align: right; width: 135px;">
<asp:Label ID="lblCabDescricao" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Descrição:" Width="125px"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtDescricao" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="90px" Width="741px" TabIndex="19" TextMode="MultiLine"></asp:TextBox></td>
</tr>
</table>
<table id="tabLimitesObservacao" runat="server" cellpadding="0" cellspacing="0">
<tr>
<td style="vertical-align: top; width: 135px; text-align: right; height: 10px;" id="celTopObservacaoLiteral"
runat="server">
</td>
<td style="vertical-align: top; width: 280px; text-align: left" id="celTopObservacao"
runat="server">
</td>
<td style="vertical-align: top; width: 135px; text-align: right" id="celTopLimiteLiteral"
runat="server">
</td>
<td style="vertical-align: top; text-align: left;" id="celTopLimite"
runat="server">
</td>
</tr>
<tr>
<td id="celObservacaoLiteral" runat="server" style="vertical-align: top; height: 10px;
text-align: right">
<asp:Label ID="lblCabObservacao" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Observação:" Width="125px"></asp:Label></td>
<td id="celObservacao" runat="server" style="padding-left: 5px; vertical-align: top;
text-align: left">
<asp:TextBox ID="txtObservacao" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="120px" MaxLength="2000" Width="256px" TabIndex="19" TextMode="MultiLine" BackColor="#F0F0F0"></asp:TextBox></td>
<td id="celLimiteLiteral" runat="server" style="vertical-align: top; text-align: right">
<table cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="height: 7px">
<asp:Label ID="lblCabLimiteProducao" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Limite de Produção" Width="125px"></asp:Label></td>
<td style="width: 5px">
</td>
</tr>
<tr>
<td style="height: 7px">
</td>
<td style="width: 5px">
</td>
</tr>
<tr>
<td style="height: 7px">
<asp:ImageButton ID="cmdLimitNew" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/insertproduction_c.png"
OnClientClick="javascript: return NewLimit();" TabIndex="-1" Width="24px" /></td>
<td style="width: 5px">
</td>
</tr>
<tr>
<td style="height: 4px">
</td>
<td style="width: 5px">
</td>
</tr>
<tr>
<td style="height: 7px">
<asp:ImageButton ID="cmdLimitDelete" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/deleteproduction_c.png"
OnClientClick="javascript: return LimitDelete();" TabIndex="-1" Width="24px" /></td>
<td style="width: 5px">
</td>
</tr>
</table>
</td>
<td id="celLimite" runat="server" style="padding-left: 5px; vertical-align: top;
text-align: left">
<eo:Grid ID="grdLimiteProducao" runat="server" BorderColor="#C7D1DF" BorderWidth="1px"
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="00050302"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Verdana"
Font-Overline="False" Font-Size="8pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223" GridLines="Both" Height="120px" Width="328px" BackColor="#F0F0F0" EnableKeyboardNavigation="True" ClientSideBeforeEditItem="" TabIndex="-1" ClientSideOnItemSelected="ItemLimitSelected">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-image:url('00050301');padding-left:8px;padding-top:2px;font-weight: bold;color:white;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="BACKGROUND-COLOR: white; FONT-SIZE: 8pt" />
<AlternatingItemStyle CssText="FONT-SIZE: 8pt" />
<ItemHoverStyle CssText="BACKGROUND-IMAGE: url(00050206); BACKGROUND-REPEAT: repeat-x; FONT-SIZE: 8pt" />
<AlternatingItemHoverStyle CssText="FONT-SIZE: 8pt" />
<SelectedStyle CssText="BACKGROUND-IMAGE: url(00050207); BACKGROUND-REPEAT: repeat-x; FONT-SIZE: 8pt" />
<EditSelectedStyle CssText="FONT-SIZE: 8pt" />
<SelectedHoverStyle CssText="FONT-SIZE: 8pt" />
<FixedColumnCellStyle CssText="FONT-SIZE: 8pt" />
<CellStyle CssText="PADDING-LEFT: 8px; WHITE-SPACE: nowrap; COLOR: #336699; FONT-SIZE: 8pt; PADDING-TOP: 2px" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:RowNumberColumn Visible="False" Width="1">
</eo:RowNumberColumn>
<eo:StaticColumn DataField="ELM_SQ_ELEMENT" HeaderText="ELM_SQ_ELEMENT" Name="ELM_SQ_ELEMENT"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="ELM_NM_ELEMENT" HeaderText="Elemento" Name="ELM_NM_ELEMENT"
Width="130">
</eo:StaticColumn>
<eo:StaticColumn DataField="PRLM_QT_LIMIT_LITERAL" HeaderText="Limite" Name="PRLM_QT_LIMIT_LITERAL"
Width="175">
<CellStyle CssText="" />
</eo:StaticColumn>
<eo:StaticColumn DataField="PRLM_QT_LIMIT" HeaderText="PRLM_QT_LIMIT" Name="PRLM_QT_LIMIT"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="MTU_SQ_METRIC_UNIT" HeaderText="MTU_SQ_METRIC_UNIT" Name="MTU_SQ_METRIC_UNIT"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="FRRW_SQ_FREQUENCY_RENEWAL" HeaderText="FRRW_SQ_FREQUENCY_RENEWAL"
Name="FRRW_SQ_FREQUENCY_RENEWAL" Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
</eo:Grid>
</td>
</tr>
</table>
<table ID="tabRAT2" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; width: 320px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right">
<asp:Label ID="lblCabRATResponsavelNome" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nome Responsável:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtRATResponsavelNome" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" MaxLength="40" TabIndex="15" Width="292px"></asp:TextBox></td>
<td style="vertical-align: top; text-align: right">
<asp:Label ID="lblCabRATResponsavelCargo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Cargo:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:TextBox ID="txtRATResponsavelCargo" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" MaxLength="30" TabIndex="15" Width="292px"></asp:TextBox></td>
</tr>
</table>
<table id="tabPessoas" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 135px; height: 10px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: right; width: 135px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="height: 7px">
<asp:Label ID="lblCabPessoas" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Pessoas de Contato"></asp:Label></td>
</tr>
<tr>
<td style="height: 7px">
</td>
</tr>
<tr>
<td style="height: 7px">
<asp:ImageButton ID="cmdEmailNew" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/insertpeople_c.png"
OnClientClick="javascript: return NewEmail();" TabIndex="-1" Width="24px" />
</td>
</tr>
<tr>
<td style="height: 7px">
</td>
</tr>
<tr>
<td style="height: 7px">
<asp:ImageButton ID="cmdEmailDelete" runat="server" Height="24px" ImageUrl="~/GLM/images/button/beige/deletepeople_c.png"
OnClientClick="javascript: return EmailDelete();" TabIndex="-1" Width="24px" /></td>
</tr>
</table>
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<eo:Grid ID="grdData" runat="server" BorderColor="#C7D1DF" BorderWidth="1px"
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="00050302"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Verdana"
Font-Overline="False" Font-Size="8pt" Font-Strikeout="False" Font-Underline="False"
FullRowMode="False" GridLineColor="199, 209, 223" GridLines="Both" Height="93px"
ItemHeight="19" Width="745px" BackColor="#F0F0F0" EnableKeyboardNavigation="True" ClientSideBeforeEditItem="" ClientSideOnCellSelected="CellEmailSelected" TabIndex="-1">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<Columns>
<eo:RowNumberColumn Width="35">
</eo:RowNumberColumn>
<eo:TextBoxColumn DataType="String" HeaderText="Nome" Name="DOCU_NM_RESPONSABLE_PERSONS"
TextBoxMaxLength="50" Width="280">
</eo:TextBoxColumn>
<eo:TextBoxColumn DataType="String" HeaderText="Email" Name="DOCU_DS_RESPONSABLE_PERSONS_EMAIL"
TextBoxMaxLength="100" Width="410">
</eo:TextBoxColumn>
</Columns>
<ColumnHeaderStyle CssText="background-image:url('00050301');padding-left:8px;padding-top:2px;font-weight: bold;color:white;" />
</eo:Grid>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%" id="tabARO" runat="server">
<tr>
<td style="vertical-align: top; width: 135px; height: 1px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:Label ID="lblCabAROEspaco" runat="server" Font-Size="10px" ForeColor="#F2FFFF"
Text="X"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; height: 1px; text-align: right">
<asp:Label ID="lblCabARO" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Text="Dados do ARO"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<eo:Grid ID="grdARO" runat="server" BorderColor="#C7D1DF" BorderWidth="1px"
ColumnHeaderAscImage="00050303" ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="00050302"
FixedColumnCount="1" Font-Bold="False" Font-Italic="False" Font-Names="Verdana"
Font-Overline="False" Font-Size="8pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223" GridLines="Both" Height="120px"
ItemHeight="19" Width="745px" BackColor="#F0F0F0" EnableKeyboardNavigation="True" ClientSideBeforeEditItem="" TabIndex="-1" ClientSideOnCellSelected="AROCellSelected" FullRowMode="False">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
<CellStyle CssText="color:#003399;" />
</eo:TextBoxColumn>
<eo:DateTimeColumn>
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ColumnHeaderStyle CssText="background-image:url('00050301');padding-left:8px;padding-top:2px;font-weight: bold;color:white;" />
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:StaticColumn DataField="DOCU_DS_ARO_TITLE" DataType="String" HeaderText="Item de Processo"
Name="DOCU_DS_ARO_TITLE" Width="260">
</eo:StaticColumn>
<eo:StaticColumn DataField="DOCU_DS_RESPONSABLE_TITLE" DataType="String" HeaderText="Responsabilidade"
Name="DOCU_DS_RESPONSABLE_TITLE" Width="170">
</eo:StaticColumn>
<eo:TextBoxColumn ClientSideBeginEdit="AROVerificaOcorrecia" DataField="DOCU_DS_RESPONSABLE_NAME"
DataType="String" HeaderText="Nome do Respons&#225;vel" Name="DOCU_DS_RESPONSABLE_NAME"
TextBoxMaxLength="100" Width="315">
</eo:TextBoxColumn>
</Columns>
</eo:Grid>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabRenovacao" runat="server">
<tr>
<td runat="server" style="vertical-align: top; width: 135px; height: 10px; text-align: right" id="CellPessoasEspaco">
</td>
<td style="vertical-align: top; width: 321px; text-align: left;">
</td>
<td style="vertical-align: top; width: 126px; text-align: right;">
</td>
<td style="vertical-align: top; text-align: left;">
</td>
</tr>
<tr>
<td runat="server" style="vertical-align: top; text-align: right" id="CellProtocolo">
</td>
<td colspan="3" style="vertical-align: top; text-align: left;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 210px; text-align: left">
<asp:Label ID="lblCabProtocolo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Protocolo de Renovação" Visible="False"></asp:Label></td>
<td style="vertical-align: top; width: 70px; text-align: right">
<asp:Label ID="lblCabDtProtocolo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Data:" Visible="False"></asp:Label></td>
<td style="vertical-align: top; width: 130px; text-align: left; padding-left: 5px; padding-bottom: 15px;">
<eo:DatePicker ID="dtpDtProtocolo" runat="server" ControlSkinID="None"
CssBlock='&#13;&#10;<style type="text/css">&#13;&#10; a.eo_calendar_style1_title_button &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #f3f3f3 1px solid; &#13;&#10; border-top: #f3f3f3 1px solid; &#13;&#10; border-left: #f3f3f3 1px solid; &#13;&#10; border-bottom: #f3f3f3 1px solid; &#13;&#10; background-color: transparent; &#13;&#10; } &#13;&#10; &#13;&#10; a.eo_calendar_style1_title_button:hover &#13;&#10; { &#13;&#10; width: 21px;&#13;&#10; height: 17px;&#13;&#10; border-right: #0044ff 1px solid; &#13;&#10; border-top: #0044ff 1px solid; &#13;&#10; border-left: #0044ff 1px solid; &#13;&#10; border-bottom: #0044ff 1px solid; &#13;&#10; background-color: #aaaaff &#13;&#10; } &#13;&#10;</style>&#13;&#10;'
DayCellHeight="15" DayCellWidth="24" DisabledDates=""
SelectedDates="" VisibleDate="2010-09-01" DayHeaderFormat="FirstLetter" TitleLeftArrowImageUrl="" TitleRangeSeparator="" TabIndex="801" Visible="False" PopupExpandDirection="Top">
<TitleTemplate>
<table border="0" cellpadding="0" cellspacing="0" height="30px" style="background-color: #f3f3f3;
color: #003399; font-weight: bold; font-size: 12px; font-family: tahoma;" width="100%">
<tr>
<!-- Previous Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-12);">
<img border="0" src="{img:00040302}" />
</a>
</td>
<!-- Previous Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(-1);">
<img border="0" src="{img:00040301}" />
</a>
</td>
<!-- Current Month -->
<td align="center" style="text-transform: uppercase;" width="99%">
{var:visible_date:MMM/yyyy}
</td>
<!-- Next Month -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(1);">
<img border="0" src="{img:00040303}" />
</a>
</td>
<!-- Next Year -->
<td>
<a class="eo_calendar_style1_title_button" href="javascript: void {var:this}.goTo(12);">
<img border="0" src="{img:00040304}" />
</a>
</td>
</tr>
</table>
</TitleTemplate>
<SelectedDayStyle CssText="BORDER-BOTTOM: #003399 1px solid; BORDER-LEFT: #003399 1px solid; BACKGROUND-COLOR: lightcyan; FONT-FAMILY: verdana; FONT-SIZE: 8pt; BORDER-TOP: #003399 1px solid; BORDER-RIGHT: #003399 1px solid" />
<DisabledDayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; COLOR: gray; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
<PickerStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 9pt" />
<CalendarStyle CssText="BORDER-BOTTOM: #555566 1px solid; BORDER-LEFT: #555566 1px solid; BACKGROUND-COLOR: #f2ffff; BORDER-TOP: #555566 1px solid; BORDER-RIGHT: #555566 1px solid" />
<DayHoverStyle CssText="BORDER-BOTTOM-COLOR: #bbbbbb; BORDER-RIGHT-WIDTH: 1px; BACKGROUND-COLOR: #ddeeff; BORDER-TOP-COLOR: #bbbbbb; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #bbbbbb; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #bbbbbb; BORDER-LEFT-WIDTH: 1px" />
<MonthStyle CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 11pt; CURSOR: hand" />
<DayHeaderStyle CssText="CLIP: rect(auto auto auto auto); BORDER-BOTTOM: #555566 1px solid; PADDING-BOTTOM: 3px; TEXT-TRANSFORM: uppercase; BACKGROUND-COLOR: #003399; FONT-FAMILY: verdana; COLOR: white; FONT-SIZE: 11px; FONT-WEIGHT: bold; PADDING-TOP: 3px" />
<DayStyle CssText="BORDER-BOTTOM-COLOR: #cfd9c0; BORDER-RIGHT-WIDTH: 1px; BORDER-TOP-COLOR: #cfd9c0; FONT-FAMILY: verdana; BORDER-TOP-WIDTH: 1px; BORDER-BOTTOM-WIDTH: 1px; BORDER-RIGHT-COLOR: #cfd9c0; FONT-SIZE: 8pt; BORDER-LEFT-COLOR: #cfd9c0; BORDER-LEFT-WIDTH: 1px" />
</eo:DatePicker>
</td>
<td style="vertical-align: top; width: 80px; text-align: right">
<asp:Label ID="lblCabNrProtocolo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Número:" Visible="False"></asp:Label></td>
<td style="vertical-align: top; text-align: left; padding-left: 5px; padding-bottom: 15px;">
<asp:TextBox ID="txtNrProtocolo" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" MaxLength="40" TabIndex="802" Width="250px" Visible="False"></asp:TextBox></td>
</tr>
</table>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabArquivo" runat="server">
<tr>
<td runat="server" style="vertical-align: top; text-align: right; padding-top: 12px; height: 39px;" id="CellArquivo">
<asp:Label ID="lblCabPDF" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Arquivo PDF:" Width="125px"></asp:Label></td>
<td colspan="3" style="vertical-align: top; text-align: left; padding-left: 5px; padding-top: 10px;">
<eo:AJAXUploader ID="AXUArquivo" runat="server" ClientSideOnCancel="uploader_canceled"
ClientSideOnError="UploadError" ProgressDialogID="dlgPostBackFile" ProgressTextFormat="Uploading... {transferred} bytes of {total} bytes ({percentage}%) done."
TempFileLocation="~/eo_upload" Width="752px" Font-Names="Verdana" Font-Size="9pt" ForeColor="#003399" TabIndex="804" AutoPostBack="True">
<LayoutTemplate>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td style="font-size: 9pt; color: #003399; font-family: Verdana">
<asp:PlaceHolder ID="InputPlaceHolder" runat="server">Input Box Place Holder</asp:PlaceHolder>
</td>
</tr>
</table>
</LayoutTemplate>
<BrowseButtonStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;font-weight:bold;" />
<TextBoxStyle CssText="color:#003399;font-family:Verdana;font-size:9pt;" />
</eo:AJAXUploader>
<br />
<asp:Label ID="lblObsArquivo" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Tamanho máximo: 1.024 MB"></asp:Label></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="tabJustificativa" runat="server">
<tr>
<td runat="server" style="vertical-align: top; width: 135px; text-align: right; height: 10px;" id="CellJustificativaEspaco">
</td>
<td style="vertical-align: top; width: 321px; text-align: left">
</td>
<td style="vertical-align: top; width: 126px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td runat="server" style="vertical-align: top; text-align: right; padding-top: 5px;" id="CellJustificativa">
<asp:Label ID="lblCabJustificativa" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Justificativa:" Width="125px"></asp:Label></td>
<td colspan="3" style="vertical-align: top; text-align: left; padding-left: 5px; padding-bottom: 15px;">
<asp:TextBox ID="txtJustificativa" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" Height="32px" MaxLength="1000" TabIndex="803" TextMode="MultiLine" Width="736px"></asp:TextBox></td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%" id="tabCAPEXOPEX" runat="server">
<tr>
<td style="width: 100%; padding-right: 5px; padding-left: 5px; padding-top: 10px; height: 10px;">
<eo:CallbackPanel ID="cbpCAPEXOPEX" runat="server" Height="10px" Width="100%" Triggers="{ControlID:chkCAPEX;Parameter:CAPEX},{ControlID:chkOPEX;Parameter:OPEX}" LoadingDialogID="dlgPostBack" ClientSideAfterUpdate="AfterCAPEXOPEX">
<table cellpadding="0" cellspacing="0" style="width: 100%;">
<tr>
<td style="background-image: url(images/beige_top_left.png); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/beige_top_center.png)">
</td>
<td style="background-image: url(images/beige_top_right.png); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_middle_left.png); height: 12px">
</td>
<td style="vertical-align: top; height: 1px; text-align: left; padding-top: 5px; padding-right: 10px; padding-left: 10px; background-color: #feffd3;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="vertical-align: top; width: 34%; text-align: center">
&nbsp;<asp:CheckBox ID="chkCAPEX" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="CAPEX?" TabIndex="2001" /><asp:TextBox
ID="txtCAPEXOPEXMsg" runat="server" BackColor="#FEFFD3" BorderColor="#FEFFD3"
BorderStyle="None" BorderWidth="0px" Font-Size="2pt" ForeColor="#FEFFD3" Height="2px"
Width="2px"></asp:TextBox></td>
<td style="vertical-align: top; text-align: center">
<asp:CheckBox ID="chkOPEX" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="OPEX?" TabIndex="2002" /></td>
<td style="padding-right: 5px; vertical-align: middle; width: 170px; text-align: right"><asp:CheckBox ID="chkCAPEXOPEXFecha" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Fecha Ano 9999?" TabIndex="2002" Visible="False" /></td>
</tr>
</table>
</td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
<tr id="rowCAPEX" runat="server">
<td style="background-image: url(images/beige_middle_left.png); height: 12px">
</td>
<td style="vertical-align: top; padding-top: 10px; height: 10px; text-align: left; padding-right: 5px; padding-left: 5px; background-color: #feffd3;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="background-image: url(images/blue_top_left.png); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/blue_top_center.png)">
</td>
<td style="background-image: url(images/blue_top_right.png); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_middle_left.png); height: 19px">
</td>
<td style="vertical-align: top; background-color: #f1ffff; text-align: center; height: 19px;">
&nbsp;<asp:Label ID="lblTitCAPEX" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="#003399" Text="CAPEX - Fluxo de Caixa"></asp:Label></td>
<td style="background-image: url(images/blue_middle_right.png); height: 19px;">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_middle_left.png); height: 12px">
</td>
<td style="background-color: #f1ffff; vertical-align: top; text-align: left;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr id="rowCAPEXClone" runat="server">
<td style="width: 220px; text-align: right; padding-left: 5px; padding-top: 10px;">
<asp:Label ID="lblCabCAPEXClone" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Já Definido no Documento:" Width="100%"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left; padding-right: 5px; padding-top: 10px;">
<asp:DropDownList ID="cboCAPEXClone" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="2100" Width="100%" Font-Bold="False" >
</asp:DropDownList></td>
</tr>
</table>
</td>
<td style="background-image: url(images/blue_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_middle_left.png); height: 12px">
</td>
<td style="background-color: #f1ffff; padding-right: 5px; padding-left: 5px; padding-bottom: 10px; vertical-align: top; padding-top: 10px; text-align: left;">
<table id="tabCAPEXDetalhe" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td>
</td>
<td id="cellCAPEXCabTotalGeral" runat="server" style="width: 11%; font-size: 7pt; padding-bottom: 5px; vertical-align: bottom; color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center; border-right: white thin solid; font-weight: bold; border-top-width: thin; border-left-width: thin; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; border-top-color: white;">
Total Geral</td>
<td id="cellCAPEXCabAnosAnteriores" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
Anos Anteriores</td>
<td id="cellCAPEXCabAno0" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1900</td>
<td id="cellCAPEXCabAno1" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1901</td>
<td id="cellCAPEXCabAno2" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1902</td>
<td id="cellCAPEXCabAno3" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1903</td>
<td id="cellCAPEXCabAno4" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1904</td>
<td id="cellCAPEXCabAnosPosteriores" runat="server" style="border-top-width: thin; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; width: 11%; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Anos Posteriores</td>
</tr>
<tr>
<td id="cellCAPEXCabPrevisto" runat="server" style="border-top: steelblue thin solid; font-weight: bold; border-left-width: thin;
font-size: 7pt; border-left-color: steelblue; padding-bottom: 5px; vertical-align: top;
color: white; padding-top: 5px; border-bottom: white thin solid; font-family: Verdana;
background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Previsto</td>
<td id="cellCAPEXPrevistoTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; vertical-align: top; text-align: right; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoTotalGeral" runat="server" BorderStyle="None" style="text-align:right;" BackColor="Transparent" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #bdffff; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAnosAnteriores" runat="server" BackColor="Transparent"
BorderStyle="None" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" ReadOnly="True"
Style="text-align: right" Width="95%" TabIndex="-1"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAno0" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAno1" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAno2" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAno3" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAno4" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXPrevistoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXPrevistoAnosPosteriores" runat="server" BackColor="Transparent"
BorderStyle="None" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
</tr>
<tr>
<td id="cellCAPEXCabReal" runat="server" style="border-top: steelblue thin solid; font-weight: bold; border-left-width: thin;
font-size: 7pt; border-left-color: steelblue; padding-bottom: 5px; vertical-align: top;
color: white; padding-top: 5px; border-bottom: white thin solid; font-family: Verdana;
background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Realizado</td>
<td id="cellCAPEXRealTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #bdffff; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealTotalGeral" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" ReadOnly="True" Style="text-align: right" Width="95%" TabIndex="-1"></asp:TextBox></td>
<td id="cellCAPEXRealAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #bdffff; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAnosAnteriores" runat="server" BackColor="Transparent"
BorderStyle="None" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAno0" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAno1" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAno2" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAno3" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtCAPEXRealAno4" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellCAPEXRealAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: steelblue;">
</td>
</tr>
<tr>
<td id="cellCAPEXCabDescricao" runat="server" style="border-top: steelblue thin solid;
font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue;
padding-bottom: 5px; vertical-align: top; color: white; padding-top: 5px; border-bottom: white thin solid;
font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin;
border-right-color: white">
Descrição de Ação</td>
<td id="cellCAPEXDescricaoMacroplano" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #bdffff; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXDescricaoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
</tr>
<tr>
<td id="cellCAPEXCabObservacao" runat="server" style="border-top: steelblue thin solid;
font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue;
padding-bottom: 5px; vertical-align: top; color: white; padding-top: 5px; border-bottom: steelblue thin solid;
font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin;
border-right-color: white">
Observação</td>
<td id="cellCAPEXObservacaoTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #bdffff; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellCAPEXObservacaoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
</tr>
</table>
<table id="tabCAPEXJustificativa" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="width: 100%; padding-bottom: 10px; vertical-align: middle; padding-top: 20px; text-align: center;">
<asp:Label ID="lblCabCAPEXJustificativa" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="Red" Text="Justificativa de Valores Zerados"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; width: 100%; text-align: center">
<asp:TextBox ID="txtCAPEXJustificativa" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="45px" MaxLength="8000" TextMode="MultiLine" Width="100%"></asp:TextBox></td>
</tr>
</table>
</td>
<td style="background-image: url(images/blue_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_bottom_left.png); height: 12px">
</td>
<td style="background-image: url(images/blue_bottom_center.PNG)">
</td>
<td style="background-image: url(images/blue_bottom_right.png)">
</td>
</tr>
</table>
</td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
<tr id="rowOPEX" runat="server">
<td style="background-image: url(images/beige_middle_left.png); height: 12px">
</td>
<td style="vertical-align: top; padding-top: 10px; height: 10px; text-align: left; padding-right: 5px; padding-left: 5px; background-color: #feffd3;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="background-image: url(images/red_top_left.png); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/red_top_center.png)">
</td>
<td style="background-image: url(images/red_top_right.png); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/red_middle_left.png); height: 19px">
</td>
<td style="vertical-align: top; background-color: #fff5f5; text-align: center; height: 19px;">
&nbsp;<asp:Label ID="lblTitOPEX" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="#003399" Text="OPEX - Fluxo de Caixa"></asp:Label></td>
<td style="background-image: url(images/red_middle_right.png); height: 19px;">
</td>
</tr>
<tr>
<td style="background-image: url(images/red_middle_left.png); height: 12px">
</td>
<td style="background-color: #fff5f5; vertical-align: top; text-align: left;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr id="rowOPEXClone" runat="server">
<td style="width: 220px; text-align: right; padding-left: 5px; padding-top: 10px;">
<asp:Label ID="lblCabOPEXClone" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Já Definido no Documento:" Width="100%"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left; padding-right: 5px; padding-top: 10px;">
<asp:DropDownList ID="cboOPEXClone" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="2200" Width="100%" Font-Bold="False" >
</asp:DropDownList></td>
</tr>
</table>
</td>
<td style="background-image: url(images/red_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/red_middle_left.png); height: 12px">
</td>
<td style="background-color: #fff5f5; padding-right: 5px; padding-left: 5px; padding-bottom: 10px; vertical-align: top; padding-top: 10px; text-align: left;">
<table id="tabOPEXDetalhe" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td>
</td>
<td id="cellOPEXCabTotalGeral" runat="server" style="width: 11%; font-size: 7pt; padding-bottom: 5px; vertical-align: bottom; color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center; border-right: white thin solid; font-weight: bold; border-top-width: thin; border-left-width: thin; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; border-top-color: white;">
Total Geral</td>
<td id="cellOPEXCabAnosAnteriores" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
Anos Anteriores</td>
<td id="cellOPEXCabAno0" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1900</td>
<td id="cellOPEXCabAno1" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1901</td>
<td id="cellOPEXCabAno2" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1902</td>
<td id="cellOPEXCabAno3" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1903</td>
<td id="cellOPEXCabAno4" runat="server" style="width: 11%; border-top-width: thin; border-right: white thin solid; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center;">
1904</td>
<td id="cellOPEXCabAnosPosteriores" runat="server" style="border-top-width: thin; font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue; border-bottom-width: thin; border-bottom-color: white; padding-bottom: 5px; vertical-align: bottom; width: 11%; color: white; border-top-color: white; padding-top: 5px; font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Anos Posteriores</td>
</tr>
<tr>
<td id="cellOPEXCabPrevisto" runat="server" style="border-top: steelblue thin solid; font-weight: bold; border-left-width: thin;
font-size: 7pt; border-left-color: steelblue; padding-bottom: 5px; vertical-align: top;
color: white; padding-top: 5px; border-bottom: white thin solid; font-family: Verdana;
background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Previsto</td>
<td id="cellOPEXPrevistoTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; vertical-align: top; text-align: right; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoTotalGeral" runat="server" BorderStyle="None" style="text-align:right;" BackColor="Transparent" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #ffc3c3; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAnosAnteriores" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" ReadOnly="True" Style="text-align: right" Width="95%" TabIndex="-1"></asp:TextBox></td>
<td id="cellOPEXPrevistoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAno0" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAno1" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAno2" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAno3" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAno4" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXPrevistoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXPrevistoAnosPosteriores" runat="server" BackColor="Transparent"
BorderStyle="None" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
</tr>
<tr>
<td id="cellOPEXCabReal" runat="server" style="border-top: steelblue thin solid; font-weight: bold; border-left-width: thin;
font-size: 7pt; border-left-color: steelblue; padding-bottom: 5px; vertical-align: top;
color: white; padding-top: 5px; border-bottom: white thin solid; font-family: Verdana;
background-color: steelblue; text-align: center; border-right-width: thin; border-right-color: white">
Realizado</td>
<td id="cellOPEXRealTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #ffc3c3; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealTotalGeral" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" ReadOnly="True" Style="text-align: right" Width="95%" TabIndex="-1"></asp:TextBox></td>
<td id="cellOPEXRealAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #ffc3c3; padding-right: 3px; font-size: 8pt; color: #003399; font-family: Verdana; padding-left: 3px; padding-top: 3px; vertical-align: top; text-align: right;">
<asp:TextBox ID="txtOPEXRealAnosAnteriores" runat="server" BackColor="Transparent"
BorderStyle="None" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealAno0" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealAno1" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealAno2" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealAno3" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; padding-right: 3px; padding-left: 3px; padding-top: 3px;">
<asp:TextBox ID="txtOPEXRealAno4" runat="server" BackColor="Transparent" BorderStyle="None"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Style="text-align: right"
Width="95%"></asp:TextBox></td>
<td id="cellOPEXRealAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: steelblue;">
</td>
</tr>
<tr>
<td id="cellOPEXCabDescricao" runat="server" style="border-top: steelblue thin solid;
font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue;
padding-bottom: 5px; vertical-align: top; color: white; padding-top: 5px; border-bottom: white thin solid;
font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin;
border-right-color: white">
Descrição de Ação</td>
<td id="cellOPEXDescricaoMacroplano" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #ffc3c3; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXDescricaoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
</tr>
<tr>
<td id="cellOPEXCabObservacao" runat="server" style="border-top: steelblue thin solid;
font-weight: bold; border-left-width: thin; font-size: 7pt; border-left-color: steelblue;
padding-bottom: 5px; vertical-align: top; color: white; padding-top: 5px; border-bottom: steelblue thin solid;
font-family: Verdana; background-color: steelblue; text-align: center; border-right-width: thin;
border-right-color: white">
Observação</td>
<td id="cellOPEXObservacaoTotalGeral" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAnosAnteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; background-color: #ffc3c3; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAno0" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAno1" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAno2" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAno3" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAno4" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
<td id="cellOPEXObservacaoAnosPosteriores" runat="server" style="border-right: steelblue thin solid; border-bottom: steelblue thin solid; font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana; text-align: center;">
</td>
</tr>
</table><table id="tabOPEXJustificativa" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="width: 100%; padding-bottom: 10px; vertical-align: middle; padding-top: 20px; text-align: center;">
<asp:Label ID="lblCabOPEXJustificativa" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="10pt"
ForeColor="Red" Text="Justificativa de Valores Zerados"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; width: 100%; text-align: center">
<asp:TextBox ID="txtOPEXJustificativa" runat="server" Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399"
Height="45px" MaxLength="8000" TextMode="MultiLine" Width="100%"></asp:TextBox></td>
</tr>
</table>
</td>
<td style="background-image: url(images/red_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/red_bottom_left.png); height: 12px">
</td>
<td style="background-image: url(images/red_bottom_center.PNG)">
</td>
<td style="background-image: url(images/red_bottom_right.png)">
</td>
</tr>
</table>
</td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_middle_left.png); height: 7px">
</td>
<td style="background-color: #feffd3;">
</td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_bottom_left.png); height: 12px">
</td>
<td style="background-image: url(images/beige_bottom_center.PNG)">
</td>
<td style="background-image: url(images/beige_bottom_right.png)">
</td>
</tr>
</table>
<eo:Dialog ID="dlgCAPEXOPEXTexto" runat="server" CloseButtonUrl="00020312"
ControlSkinID="None" HeaderHtml="Texto" Height="10px" Width="320px" ClientSideOnEnd="OnEndCAPEXOPEXTexto">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;height:18px;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%;">
<tr>
<td style="width: 100px;">
<asp:TextBox ID="txtCAPEXOPEXTexto" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="300px" MaxLength="8000" TextMode="MultiLine" Width="680px"></asp:TextBox></td>
</tr>
</table>
</ContentTemplate>
<ContentStyleActive CssText="FONT-FAMILY: tahoma; FONT-SIZE: 8pt" />
<ContentFrameStyle CssText="" />
</eo:Dialog>
</eo:CallbackPanel>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%; border-left-color: red; border-bottom-color: red; border-top-color: red; border-right-color: red;" id="tabFilhoPosterior" runat="server">
<tr>
<td style="vertical-align: top; height: 10px; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 10px; text-align: left; padding-right: 8px; padding-left: 8px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%; border-right: #008200 8px outset; border-top: #008200 8px outset; border-left: #008200 8px outset; border-bottom: #008200 8px outset; background-color: #e6ffe6;">
<tr>
<td style="vertical-align: top; height: 10px; text-align: center; padding-top: 5px;">
<asp:Label ID="lblTitFilhoPosterior" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="10pt" ForeColor="#006600" Text="Documentos Subordinados ao Anterior Ainda Ativos"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; padding-top: 10px; height: 10px; text-align: left; padding-right: 2px;">
<eo:Grid ID="grdFilhoPosterior" runat="server" BorderWidth="0px" ColumnHeaderAscImage="00050303"
ColumnHeaderDescImage="00050304" ColumnHeaderDividerImage="~/GLM/images/headerseparator34.gif" FixedColumnCount="1"
Font-Bold="False" Font-Italic="False" Font-Names="Verdana" Font-Overline="False"
Font-Size="7.5pt" Font-Strikeout="False" Font-Underline="False" GridLineColor="199, 209, 223"
GridLines="Both" Width="100%" ColumnHeaderHeight="34" Height="158px" ClientSideOnCellSelected="OnFilhoPosteriorCellSelected" FullRowMode="False" TabIndex="-1">
<FooterStyle CssText="padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px;" />
<FixedBottomItemStyle CssText="" />
<ColumnTemplates>
<eo:TextBoxColumn>
<TextBoxStyle CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; FONT-SIZE: 8.75pt; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; FONT-FAMILY: Tahoma" />
</eo:TextBoxColumn>
<eo:DateTimeColumn DataFormat="">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="border-bottom-color:#7f9db9;border-bottom-style:solid;border-bottom-width:1px;border-left-color:#7f9db9;border-left-style:solid;border-left-width:1px;border-right-color:#7f9db9;border-right-style:solid;border-right-width:1px;border-top-color:#7f9db9;border-top-style:solid;border-top-width:1px;font-family:Courier New;font-size:8pt;margin-bottom:0px;margin-left:0px;margin-right:0px;margin-top:0px;padding-bottom:1px;padding-left:2px;padding-right:2px;padding-top:2px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:MaskedEditColumn>
<MaskedEdit ControlSkinID="None" TextBoxStyle-CssText="BORDER-RIGHT: #7f9db9 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #7f9db9 1px solid; PADDING-LEFT: 2px; PADDING-BOTTOM: 1px; MARGIN: 0px; BORDER-LEFT: #7f9db9 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #7f9db9 1px solid; font-family:Courier New;font-size:8pt;">
</MaskedEdit>
</eo:MaskedEditColumn>
</ColumnTemplates>
<ItemStyles>
<eo:GridItemStyleSet>
<ItemStyle CssText="background-color: white" />
<ItemHoverStyle CssText="background-image: url(00050206); background-repeat: repeat-x" />
<SelectedStyle CssText="background-image: url(00050207); background-repeat: repeat-x" />
<CellStyle CssText="padding-left:8px;padding-top:2px; color:#336699;white-space:nowrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLACK">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:#000000;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLACKBACK">
<ItemStyle CssText="background-color: #f0f0f0;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:#000000;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUE">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:#003399;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:#003399;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBOLD">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:#003399;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="BLUEBOLDBACK">
<ItemStyle CssText="background-color: #f0f0f0;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:#003399;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREEN">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;" />
<CellStyle CssText="color:green;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:green;font-family:Verdana;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBOLD">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:green;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="GREENBOLDBACK">
<ItemStyle CssText="background-color: #f0f0f0;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;font-weight:bold;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-weight:bold;" />
<CellStyle CssText="color:green;font-family:Verdana;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="PURPLE">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:#9900cc;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="PURPLEBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:#9900cc;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="RED">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:red;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:red;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBOLD">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:red;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="REDBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:red;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="WINEBOLD">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="color:darkred;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="WINEBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;background-repeat:repeat-x;font-family:Verdana;" />
<CellStyle CssText="background-color:#f0f0f0;color:darkred;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOW">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:orange;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:orange;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBOLD">
<ItemStyle CssText="background-color: #e6ffe6;" />
<ItemHoverStyle CssText="background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#c0c0ff;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="color:orange;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
<eo:GridItemStyleSet StyleSetID="YELLOWBOLDBACK">
<ItemStyle CssText="background-color:#f0f0f0;" />
<ItemHoverStyle CssText="background-color:#f0f0f0;background-repeat:repeat-x;color:#c0ffff;" />
<SelectedStyle CssText="background-color:#b1b1f0;font-family:Verdana;background-repeat:repeat-x;" />
<CellStyle CssText="background-color:#f0f0f0;color:orange;font-weight:bold;padding-left:4px;padding-top:1px;white-space:wrap;" />
</eo:GridItemStyleSet>
</ItemStyles>
<Columns>
<eo:CheckBoxColumn DataField="CHKINSERT" Name="CHKINSERT" Width="40">
</eo:CheckBoxColumn>
<eo:StaticColumn DataField="DCTP_SQ_DOCUMENT_TYPE" HeaderText="DCTP_SQ_DOCUMENT_TYPE"
Name="DCTP_SQ_DOCUMENT_TYPE" Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataType="String" HeaderText="Tipo / Categoria" Name="DCTP_NM_DOCUMENT_TYPE"
ReadOnly="True" Width="250">
</eo:StaticColumn>
<eo:TextBoxColumn DataField="DOCU_NM_DOCUMENT" DataType="String" HeaderText="Nome"
Name="DOCU_NM_DOCUMENT" Width="200">
</eo:TextBoxColumn>
<eo:DateTimeColumn DataField="DOCU_DT_INITIAL_VALIDITY" HeaderText="Dt. In&#237;cio"
Name="DOCU_DT_INITIAL_VALIDITY">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="font-family:Courier New; padding-left:5px; padding-right: 5px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:StaticColumn DataField="KEYINFORMATIVE" HeaderText="Informativo / Sem Validade?"
Name="KEYINFORMATIVE">
</eo:StaticColumn>
<eo:DateTimeColumn DataField="DOCU_DT_FINAL_VALIDITY" HeaderText="Dt. Fim" Name="DOCU_DT_FINAL_VALIDITY">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="font-family:Courier New; padding-left:5px; padding-right: 5px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:StaticColumn DataField="KEYHAVEDTDELIVERY" HeaderText="KEYHAVEDTDELIVERY" Name="KEYHAVEDTDELIVERY"
Visible="False" Width="0">
<CellStyle CssText="" />
</eo:StaticColumn>
<eo:DateTimeColumn DataField="DOCU_DT_EXPECTED_DELIVERY" HeaderText="Dt. Entrega"
Name="DOCU_DT_EXPECTED_DELIVERY">
<DatePicker ControlSkinID="None" DayCellHeight="16" DayCellWidth="19" DayHeaderFormat="FirstLetter"
DisabledDates="" OtherMonthDayVisible="True" SelectedDates="" TitleLeftArrowImageUrl="DefaultSubMenuIconRTL"
TitleRightArrowImageUrl="DefaultSubMenuIcon">
<TodayStyle CssText="font-family: tahoma; font-size: 12px; border-right: #bb5503 1px solid; border-top: #bb5503 1px solid; border-left: #bb5503 1px solid; border-bottom: #bb5503 1px solid" />
<SelectedDayStyle CssText="font-family: tahoma; font-size: 12px; background-color: #fbe694; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DisabledDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<PickerStyle CssText="font-family:Courier New; padding-left:5px; padding-right: 5px;" />
<CalendarStyle CssText="background-color: white; border-right: #7f9db9 1px solid; padding-right: 4px; border-top: #7f9db9 1px solid; padding-left: 4px; font-size: 9px; padding-bottom: 4px; border-left: #7f9db9 1px solid; padding-top: 4px; border-bottom: #7f9db9 1px solid; font-family: tahoma" />
<TitleArrowStyle CssText="cursor:hand" />
<DayHoverStyle CssText="font-family: tahoma; font-size: 12px; border-right: #fbe694 1px solid; border-top: #fbe694 1px solid; border-left: #fbe694 1px solid; border-bottom: #fbe694 1px solid" />
<MonthStyle CssText="font-family: tahoma; font-size: 12px; margin-left: 14px; cursor: hand; margin-right: 14px" />
<TitleStyle CssText="background-color:#9ebef5;font-family:Tahoma;font-size:12px;padding-bottom:2px;padding-left:6px;padding-right:6px;padding-top:2px;" />
<OtherMonthDayStyle CssText="font-family: tahoma; font-size: 12px; color: gray; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
<DayHeaderStyle CssText="font-family: tahoma; font-size: 12px; border-bottom: #aca899 1px solid" />
<DayStyle CssText="font-family: tahoma; font-size: 12px; border-right: white 1px solid; border-top: white 1px solid; border-left: white 1px solid; border-bottom: white 1px solid" />
</DatePicker>
</eo:DateTimeColumn>
<eo:TextBoxColumn DataField="DOCU_NU_DOCUMENT" HeaderText="Nr. Documento" Name="DOCU_NU_DOCUMENT">
</eo:TextBoxColumn>
<eo:StaticColumn DataField="DOCU_DS_DOCUMENT" HeaderText="Descri&#231;&#227;o" Name="DOCU_DS_DOCUMENT"
Width="300">
</eo:StaticColumn>
<eo:StaticColumn DataField="KEYHAVEOBSERVATION" HeaderText="KEYHAVEOBSERVATION" Name="KEYHAVEOBSERVATION"
Visible="False" Width="1">
</eo:StaticColumn>
<eo:StaticColumn DataField="DOCU_DS_DOCUMENT_REMARK" HeaderText="Observa&#231;&#227;o Complementar"
Name="DOCU_DS_DOCUMENT_REMARK" Width="300">
</eo:StaticColumn>
<eo:StaticColumn DataField="DOCU_SQ_DOCUMENT" HeaderText="DOCU_SQ_DOCUMENT" Name="DOCU_SQ_DOCUMENT"
Visible="False" Width="1">
</eo:StaticColumn>
</Columns>
<ColumnHeaderStyle CssText="background-color:steelblue;color:white;font-family:Verdana;font-size:7pt;font-weight:bold;padding-left:4px;padding-top:2px;vertical-align:middle;" />
<ColumnHeaderTextStyle CssText="" />
</eo:Grid>
</td>
</tr>
</table>
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%" id="TabDocumentoPosterior" runat="server">
<tr>
<td runat="server" style="vertical-align: top; width: 135px; height: 10px; text-align: right" id="Td1">
</td>
<td colspan="3" style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td runat="server" style="vertical-align: top; height: 1px; text-align: right" id="CellCabDocPost">
<asp:Label ID="lblCabDocumentoPosterior" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Doc. Posterior:" Visible="False"></asp:Label></td>
<td colspan="3" style="vertical-align: top; text-align: left; padding-left: 5px;">
<asp:LinkButton ID="lkbDocumentoPosterior" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Visible="False"></asp:LinkButton><asp:Label ID="lblDocumentoPosterior" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399"></asp:Label><asp:CheckBox ID="chkRetornaStatus" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="Red" TabIndex="-1" Visible="False" /><asp:DropDownList ID="cboStatusMuda" runat="server" Font-Names="Verdana" Font-Size="9pt"
ForeColor="#003399" TabIndex="-1" Width="180px" AutoPostBack="True" Font-Bold="False" Visible="False" >
</asp:DropDownList></td>
</tr>
</table>
<table id="tabEspacoFinal" runat="server" border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="height: 10px">
</td>
</tr>
</table>
</div>
</eo:CallbackPanel>
</div>
</td>
</tr>
</table>
<eo:MsgBox ID="msbConfirm" runat="server" CloseButtonUrl="" ControlSkinID="None"
HeaderHtml="Dialog Title" HeaderHtmlFormat='<div style="padding-top:4px">{0}</div>'
HeaderImageHeight="27" HeaderImageUrl="00020441" Height="88px" MinHeight="100"
MinWidth="150" Width="600px">
<HeaderStyleActive CssText="background-image:url(00020442);color:#444444;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:7px;padding-left:8px;padding-right:0px;padding-top:0px;" />
<BorderImages BottomBorder="00020409,00020429" BottomLeftCorner="00020408,00020428"
BottomRightCorner="00020410,00020430" LeftBorder="00020406,00020426" RightBorder="00020407,00020427"
TopBorder="00020402,00020422" TopLeftCorner="00020401,00020421" TopLeftCornerBottom="00020404,00020424"
TopRightCorner="00020403,00020423" TopRightCornerBottom="00020405,00020425" />
<FooterStyleActive CssText="background-color:#f0f0f0; padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentStyleActive CssText="background-color:#f0f0f0;font-family:tahoma;font-size:8pt;padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px" />
</eo:MsgBox>
</td>
<td style="background-image: url(images/blue_middle_right.jpg); width: 12px; height: 100%">
</td>
</tr>
<tr>
<td style="background-image: url(images/blue_bottom_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/blue_bottom_center.jpg); height: 12px; ">
</td>
<td style="background-image: url(images/blue_bottom_right.jpg); width: 12px; height: 12px">
</td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" style="width: 100%; height: 39px;" id="BottomTab">
<tr>
<td style="background-image: url(images/gray_top_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_top_center.jpg); height: 12px">
</td>
<td style="background-image: url(images/gray_top_right.jpg); width: 12px; height: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_middle_left.jpg); width: 12px">
</td>
<td style="background-color: #f2f2f2; height: 15px;">
<table style="width: 100%">
<tr>
<td style="width: 7px">
</td>
<td style="vertical-align: middle; text-align: left">
<asp:Label ID="lblError" runat="server" Font-Bold="True" Font-Size="Smaller" ForeColor="Red"></asp:Label><asp:Label
ID="lblDocSeq" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="6pt"
ForeColor="#003399"></asp:Label></td>
<td style="font-weight: bold; font-size: 10px; width: 90px; color: #003399; vertical-align: middle; text-align: right;">
&nbsp; &nbsp;<asp:Label ID="lblVersion" runat="server" Font-Bold="True" Font-Names="Verdana" Font-Size="6pt"
ForeColor="#003399">1.0</asp:Label></td>
</tr>
</table>
</td>
<td style="background-image: url(images/gray_middle_right.jpg); width: 12px">
</td>
</tr>
<tr>
<td style="background-image: url(images/gray_bottom_left.jpg); width: 12px; height: 12px">
</td>
<td style="background-image: url(images/gray_bottom_center.jpg); height: 12px">
</td>
<td style="background-image: url(images/gray_bottom_right.jpg); width: 12px; height: 12px">
</td>
</tr>
</table>
<eo:Dialog ID="dlgPostBack" runat="server" AllowResize="True" BackColor="#FFFFC0" BorderColor="#335C88"
BorderStyle="Solid" BorderWidth="1px" CloseButtonUrl="" ControlSkinID="None"
HeaderHtml="Título" Height="136px" MinimizeButtonUrl="" ResizeImageUrl="" RestoreButtonUrl=""
ShadowColor="Silver" ShadowDepth="7" Width="416px" BackShadeColor="255, 255, 192">
<HeaderStyleActive CssText="background-color:#c00000;color:white;font-family:Verdana;font-size:12px;font-weight:bold;padding-bottom:3px;padding-left:4px;padding-right:4px;padding-top:3px;" />
<FooterStyleActive CssText="background-color: #e5f1fd; padding-bottom: 8px;" />
<HeaderStyleInactive CssText="FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 12pt; FONT-WEIGHT: bold" />
<ContentTemplate>
<div style="font-weight: bold; font-size: 13pt; vertical-align: middle; width: 100%;
color: #003399; font-family: Verdana; height: 100%; background-color: #ffffc0;
text-align: center">
<br />
<asp:Label ID="lblCabPostBackWait" runat="server" Text="Aguarde..."></asp:Label><br />
<br />
<asp:Label ID="lblCabPostBackMessage" runat="server" Text="Processando Solicitação"></asp:Label><br />
</div>
</ContentTemplate>
<ContentStyleActive CssText="border-top: #335c88 1px solid; background-color: #e5f1fd" />
</eo:Dialog>
<eo:AJAXUploaderProgressDialog ID="dlgPostBackFile" runat="server" AllowResize="True"
BackColor="#FFFFC0" BackShadeColor="255, 255, 192" BorderColor="#335C88" BorderStyle="Solid"
BorderWidth="1px" ControlSkinID="None" Font-Bold="False" ForeColor="#003399"
HeaderHtml="Uploading..." Height="184px" ProgressTextFormat="Uploading file...&#13;&#10;<br /><br />&#13;&#10;{transferred} bytes of {total} bytes ({percentage}%) done. &#13;&#10;<br /><br />&#13;&#10;Time elapsed: {elapsed_seconds} second(s)&#13;&#10;<br />&#13;&#10;Time Remaining: {estimated_remaining_seconds} second(s)"
ShadowColor="Silver" ShadowDepth="7" Width="416px">
<FooterTemplate>
<p style="text-align: center">
<asp:Button ID="CancelButton" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="9pt" ForeColor="#003399" Text="Cancel" /></p>
</FooterTemplate>
<HeaderStyleActive CssText="background-color:#c00000;color:white;font-family:Verdana;font-size:12px;font-weight:bold;padding-bottom:3px;padding-left:4px;padding-right:4px;padding-top:3px;" />
<FooterStyleActive CssText="background-color:#ffffc0;padding-bottom:8px;" />
<ContentTemplate>
<p>
<table border="0" cellpadding="5" cellspacing="0" style="width: 100%">
<tr>
<td style="margin-top: 15px; font-weight: bold; font-size: 13pt; margin-bottom: 15px;
color: #003399; font-family: Verdana; text-align: center">
<asp:Label ID="lblCabPostBackFileWait" runat="server" Text="Aguarde..."></asp:Label><br />
<asp:Label ID="lblCabPostBackFileMessage" runat="server" Text="Processando Solicitação"></asp:Label></td>
</tr>
<tr>
<td>
<eo:ProgressBar ID="ProgressBar" runat="server" ControlSkinID="Windows_XP">
</eo:ProgressBar>
</td>
</tr>
<tr>
<td style="font-weight: bold; font-size: 7pt; color: #003399; font-family: Verdana">
<asp:PlaceHolder ID="ProgressTextPlaceHolder" runat="server">Progress Text Place Holder
</asp:PlaceHolder>
</td>
</tr>
</table>
</p>
</ContentTemplate>
<ContentStyleActive CssText="background-color:#ffffc0;border-top-color:#335c88;border-top-style:solid;border-top-width:1px;" />
</eo:AJAXUploaderProgressDialog>
<eo:Dialog ID="dlgLimite" runat="server" BackColor="#FFFFD4"
ControlSkinID="None" ForeColor="#003399" HeaderHtml="Arquivo" Height="96px">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 480px">
<tr>
<td style="vertical-align: top; width: 200px; height: 15px; text-align: left">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: middle; height: 12px; text-align: right">
<asp:Label ID="lblCabElemento" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Elemento/Componente:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:DropDownList ID="cboLimiteElemento" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="90" Width="220px" Font-Overline="False" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 12px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 22px; text-align: right">
<asp:Label ID="lblCabValorLimite" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Quantidade/Valor:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left; height: 22px;">
<asp:TextBox ID="txtLimiteQuantidade" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" MaxLength="12" TabIndex="91" Width="130px"
onkeypress="return onlyNumbers();"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 12px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
<asp:Label ID="lblCabUnidadeMetrica" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Unidade Métrica:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; height: 19px; text-align: left">
<asp:DropDownList ID="cboLimiteUnidadeMetrica" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="92" Width="220px" >
</asp:DropDownList></td>
</tr>
<tr >
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; height: 19px; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
<asp:Label ID="lblCabPeriodoLimite" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Intervado de Tempo:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; height: 19px; text-align: left">
<asp:DropDownList ID="cboPeriodoLimite" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="93" Width="220px" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; height: 19px; text-align: left">
<asp:ImageButton ID="cmdLimitSave" runat="server" Height="32px" ImageUrl="~/GLM/images/button/blue/save_c.png"
OnClick="cmdSave_Click" OnClientClick="javascript: return LimitCheckSave();" TabIndex="-1"
Width="32px" />&nbsp;
<asp:ImageButton ID="cmdLimitQuit" runat="server" Height="32px" ImageUrl="~/GLM/images/button/blue/quit_c.png"
OnClientClick="javascript: return LimiteQuit();" TabIndex="-1" Width="32px" />
<asp:TextBox ID="txtLimiteSequencia" runat="server" BackColor="#FFFFD4" BorderColor="#FFFFD4"
BorderStyle="None" ForeColor="#FFFFD4" TabIndex="-1" Width="1px"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 20px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
</table>
</ContentTemplate>
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
</eo:Dialog>
<eo:Dialog ID="dlgPDFQuestion" runat="server"
ControlSkinID="None" HeaderHtml="Seleção de Cópia de Documento em Formato PDF" AllowResize="True" HeaderHtmlFormat='<div style="padding-top:4px">{0}</div>' HeaderImageHeight="27" HeaderImageUrl="00020441" MinHeight="100" MinWidth="150" Width="320px">
<HeaderStyleActive CssText="background-image:url(00020442);color:#444444;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:7px;padding-left:8px;padding-right:0px;padding-top:0px;" />
<BorderImages BottomBorder="00020409,00020429" BottomLeftCorner="00020408,00020428" BottomRightCorner="00020410,00020430"
LeftBorder="00020406,00020426" RightBorder="00020407,00020427" TopBorder="00020402,00020422" TopLeftCorner="00020401,00020421"
TopLeftCornerBottom="00020404,00020424" TopRightCorner="00020403,00020423" TopRightCornerBottom="00020405,00020425" />
<FooterStyleActive CssText="background-color:#f0f0f0; padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 550px">
<tr>
<td style="width: 15px; height: 15px">
</td>
<td>
</td>
<td style="width: 15px">
</td>
<td style="width: 32px">
</td>
<td style="width: 15px">
</td>
</tr>
<tr>
<td style="height: 7px">
</td>
<td style="font-weight: bold; font-size: 8pt; vertical-align: middle; color: #003399;
font-family: Verdana; text-align: center">
<asp:Label ID="lblPDFIni1" runat="server" Text="A cópia do documento em formato PDF é obrigatório para este tipo de documento"></asp:Label></td>
<td>
</td>
<td style="vertical-align: top">
<asp:Button ID="cmdPDFIniOK" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="Medium" ForeColor="#003399" OnClick="cmdPDFIniOK_Click" OnClientClick="javascript: return PDFIniOK();"
TabIndex="-1" Text="OK" Width="55px" /></td>
<td>
</td>
</tr>
<tr>
<td style="height: 14px">
</td>
<td style="font-weight: bold; font-size: 8pt; vertical-align: middle; color: #003399;
font-family: Verdana; text-align: center">
</td>
<td>
</td>
<td style="vertical-align: top">
</td>
<td>
</td>
</tr>
<tr>
<td style="height: 7px">
</td>
<td style="font-weight: bold; font-size: 8pt; vertical-align: middle; color: #003399;
font-family: Verdana; text-align: center">
<asp:Label ID="lblPDFIni2" runat="server" Text='Se um dos arquivos abaixo relacionados for a cópia desse documento, selecone-o e tecle "OK". Caso contrário, tecle "Sair" e informe-o na tela de alteração'></asp:Label></td>
<td>
</td>
<td style="vertical-align: top">
<asp:Button ID="cmdPDFIniQuit" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="Medium" ForeColor="#003399" OnClientClick="javascript: return PDFIniQuit();"
TabIndex="-1" Text="Sair" Width="55px" /></td>
<td>
</td>
</tr>
<tr>
<td style="height: 15px">
</td>
<td style="font-weight: bold; font-size: 10pt; vertical-align: middle; color: #003399;
font-family: Verdana; text-align: center">
</td>
<td>
</td>
<td style="vertical-align: top">
</td>
<td>
</td>
</tr>
<tr>
<td style="height: 15px">
</td>
<td style="font-size: 8pt; vertical-align: middle; color: #003399; font-family: Verdana;
text-align: left">
<asp:CheckBoxList ID="ckbPDFIni" runat="server">
</asp:CheckBoxList></td>
<td>
</td>
<td style="vertical-align: top">
</td>
<td>
</td>
</tr>
<tr>
<td style="height: 15px">
</td>
<td style="font-weight: bold; font-size: 10pt; vertical-align: middle; color: #003399;
font-family: Verdana; text-align: center">
</td>
<td>
</td>
<td style="vertical-align: top">
</td>
<td>
</td>
</tr>
</table>
</ContentTemplate>
<ContentStyleActive CssText="background-color:#f0f0f0;font-family:tahoma;font-size:8pt;padding-bottom:4px;padding-left:4px;padding-right:4px;padding-top:4px" />
</eo:Dialog>
<eo:Dialog ID="dlgEmail" runat="server" BackColor="#FFFFDE"
ControlSkinID="None" HeaderHtml="Dialog Title" Height="216px" Width="320px" ContentUrl="showemail.aspx" CloseButtonUrl="00020312">
<HeaderStyleActive CssText="BACKGROUND-IMAGE: url(00020311); PADDING-BOTTOM: 5px; PADDING-LEFT: 8px; PADDING-RIGHT: 3px; FONT-FAMILY: Verdana; HEIGHT: 18px; COLOR: #003399; FONT-SIZE: 10pt; FONT-WEIGHT: bold; PADDING-TOP: 0px" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentStyleActive CssText="PADDING-BOTTOM: 4px; PADDING-LEFT: 4px; PADDING-RIGHT: 4px; FONT-FAMILY: Verdana; COLOR: #003399; FONT-SIZE: 9pt; FONT-WEIGHT: bold; PADDING-TOP: 4px" />
</eo:Dialog><eo:Dialog ID="dlgSSOCategoria" runat="server" BackColor="#FFFFD4"
ControlSkinID="None" ForeColor="#003399" HeaderHtml="Categoria de Incidente" Height="96px" Width="520px">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<eo:CallbackPanel ID="cbpSSOCategoria" runat="server" Height="10px" LoadingDialogID="dlgPostBack"
Triggers="{ControlID:cboRATCategoriaNivelGravidade;Parameter:C}" Width="100%" ClientSideAfterUpdate="SetFocusedCmp" ClientSideBeforeExecute="GetFocusedCmp">
<table border="0" cellpadding="0" cellspacing="0" style="width: 510px">
<tr>
<td style="vertical-align: top; width: 200px; height: 15px; text-align: left">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: middle; height: 12px; text-align: right">
<asp:Label ID="lblCabRATCategoriaNome" runat="server" Font-Bold="True" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Nome:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:DropDownList ID="cboRATCategoriaNome" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="3001" Width="265px" Font-Bold="False"
onchange="cboRATCategoriaNomeChanged();" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 12px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 12px; text-align: right">
<asp:Label ID="lblCabRATCategoriaNivelGravidade" runat="server" Font-Bold="True"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Text="Nível:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:DropDownList ID="cboRATCategoriaNivelGravidade" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="3002" Width="265px" Font-Bold="False"
onchange="cboRATCategoriaNivelGravidadeChanged();" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
<asp:Label ID="lblCabRATCategoriaPotencialGravidade" runat="server" Font-Bold="True"
Font-Names="Verdana" Font-Size="8pt" ForeColor="#003399" Text="Potencial:"></asp:Label></td>
<td style="padding-left: 5px; vertical-align: top; text-align: left">
<asp:DropDownList ID="cboRATCategoriaPotencialGravidade" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" TabIndex="3003" Width="265px" Font-Bold="False" >
</asp:DropDownList></td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td colspan="2" style="padding-left: 10px; vertical-align: top; height: 19px; text-align: left">
<asp:Label ID="lblRATCategoriaNivel" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Width="457px"></asp:Label></td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
<tr>
<td style="vertical-align: top; height: 19px; text-align: right">
</td>
<td style="padding-left: 5px; vertical-align: top; height: 19px; text-align: left">
<asp:ImageButton ID="cmdSSORATCategorySave" runat="server" Height="32px" ImageUrl="~/GLM/images/button/blue/save_c.png"
OnClick="cmdSave_Click" OnClientClick="javascript: return SSORATCategoryCheckSave();" TabIndex="-1"
Width="32px" />&nbsp;
<asp:ImageButton ID="cmdSSORATCategoryQuit" runat="server" Height="32px" ImageUrl="~/GLM/images/button/blue/quit_c.png"
OnClientClick="javascript: return SSORATCategoryQuit();" TabIndex="-1" Width="32px" />
<asp:TextBox ID="txtSSORATCategoriaSequencia" runat="server" BackColor="#FFFFD4" BorderColor="#FFFFD4"
BorderStyle="None" ForeColor="#FFFFD4" TabIndex="-1" Width="1px"></asp:TextBox></td>
</tr>
<tr>
<td style="vertical-align: top; height: 20px; text-align: right">
</td>
<td style="vertical-align: top; text-align: left">
</td>
</tr>
</table>
</eo:CallbackPanel>
</ContentTemplate>
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
</eo:Dialog>
<eo:Dialog ID="dlgEnvolvido" runat="server" BackColor="#FFFFD4" ControlSkinID="None"
ForeColor="#003399" HeaderHtml="Documento" Height="520px" Width="850px" ContentUrl="SSOinjured.aspx" HorizontalAlign="Left" VerticalAlign="Top">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
</eo:Dialog>
<eo:Dialog ID="dlgFilhoPosterior" runat="server" BackColor="#99FF97" CloseButtonUrl="00020312"
ControlSkinID="None" HeaderHtml="Documento Posterior" Height="10px" Width="10px" ClientSideOnEnd="OnEndFilhoPosterior">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;height:18px;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%;">
<tr>
<td style="width: 100px; padding-right: 15px; padding-left: 15px; padding-bottom: 15px; padding-top: 15px;">
<asp:TextBox ID="txtFilhoPosterior" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="144px" MaxLength="8000" TextMode="MultiLine"
Width="472px"></asp:TextBox></td>
</tr>
</table>
</ContentTemplate>
</eo:Dialog><eo:Dialog ID="dlgUnidadeCompartilhada" runat="server" BackColor="#FFFFD3" CloseButtonUrl="00020312"
ControlSkinID="None" HeaderHtml="Unidades Compartilhadas" Height="10px" Width="10px">
<HeaderStyleActive CssText="background-image:url('00020311');color:#003399;font-family:'trebuchet ms';font-size:10pt;font-weight:bold;height:18px;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;" />
<BorderImages BottomBorder="00020305" BottomLeftCorner="00020304" BottomRightCorner="00020306"
LeftBorder="00020303" RightBorder="00020307" TopBorder="00020310" TopLeftCorner="00020301"
TopLeftCornerBottom="00020302" TopRightCorner="00020309" TopRightCornerBottom="00020308" />
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
<ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%;">
<tr>
<td style="width: 100px;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td style="background-image: url(images/beige_middle_left.png)">
</td>
<td>
<asp:ListBox ID="lbxUnidadeCompartilhada" runat="server" Font-Names="Verdana" Font-Size="8pt"
ForeColor="#003399" Height="200px" SelectionMode="Multiple" Width="400px"
OnClick="javascript:SharedUnitChanged();">
</asp:ListBox></td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
<tr>
<td style="background-image: url(images/beige_middle_left.png)">
</td>
<td style="padding-top: 7px; background-color: #ffffd3; padding-bottom: 5px;">
<asp:Label ID="lblCabObsUnidadeCompartilhada" runat="server" Font-Bold="False" Font-Names="Verdana"
Font-Size="8pt" ForeColor="#003399" Text="Obs" Width="100%"></asp:Label></td>
<td style="background-image: url(images/beige_middle_right.png)">
</td>
</tr>
</table>
</td>
</tr>
</table>
</ContentTemplate>
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma" />
</eo:Dialog>
</div>
</form>
<script language="Javascript">
function ResizeTab()
{
var y = 0;
if (self.innerHeight){
y = self.innerHeight;
}else if (document.documentElement && document.documentElement.clientHeight){
y = document.documentElement.clientHeight;
}else if (document.body){
y = document.body.clientHeight;
}
var topmargin = parseFloat(document.getElementById("body").style.marginTop);
var bottommargin = parseFloat(document.getElementById("body").style.marginBottom);
var topTableH = document.getElementById("TopTab").clientHeight;
var topTableB = document.getElementById("ButtonTab").clientHeight;
var botTableH = document.getElementById("BottomTab").clientHeight;
var heightAjust = (y - topTableH - topTableB - botTableH - topmargin - bottommargin);
var heightInternal = (y - topTableH - topTableB - botTableH - topmargin - bottommargin - 8);
document.getElementById("MiddleTab").style.height = heightInternal + "px";
document.getElementById("divmiddle").style.height = (heightInternal - 10) + "px";
}
</script>
</body>
</html>


What is the error?

Thanks in advance,

Marcelo Camarate
eo_support
Posted: Tuesday, January 20, 2015 10:59:50 AM
Rank: Administration
Groups: Administration

Joined: 5/27/2007
Posts: 24,196
Hi,

You can try to open JavaScript/debugger console in your browser, then type window["DtInicChanged"] and see whether you get a valid function object.

Thanks!


You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.