if (typeof app == "undefined" || !app) {
  var app = {};
}

/**
 * Submete a lista de registros.
 * @param indexForm Indice do formulario.
 */
app.doSubmitList = function(indexForm) {
  var index = 0;
    if(indexForm) {
      index = indexForm; 
  }  
  document.forms[index].submit();
}

app.goTo = function (action) {
  document.location.href = action;
}

app.voltar = function() {
  window.history.go(-1);
}

/**
 * Abre uma popup.
 * 
 */
app.openPopup = function (url,name,lar,alt) {
  var param = 'width='+lar+',height='+alt+',top=100,left=120,scrollbars=1';
  window.open(url,name,param);
}
app.rodapeRelativo = function () {
    jQuery("#IDEACSS-footer").css("position", "relative");
}