<!--
Date.prototype.getActualMonth = getActualMonth;

function getActualMonth() {
  var n = this.getMonth();
  n += 1;
  return n;
}

function F_Documento(sId){
    var url = "DesktopDefault.aspx?tabid=3714&src=-1&apptabid=3&docid="+sId;
    window.location.href=url;
}

function F_DocTema(sId){
    var today = new Date();
    var dia = (today.getDate() <10 ? "0" : "") + today.getDate();
    var mes = (today.getActualMonth() <10 ? "0" : "") + today.getActualMonth();
    var ano = today.getYear();
    var strdata = mes+"/"+dia+"/"+ano;
    
    var url = "DesktopDefault.aspx?tabid=3714&src=-1&apptabid=2&f_match=0&f57=-1&f_32=3/01/1994|"+strdata+"&f66="+sId;
    window.location.href=url;
}

function popup_ConvideAmigo(height,width)
{
    var url = "./registration/UserInvite.aspx";
    var str = "alwaysRaised=yes,height="+height+",width="+width+",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no";
	window.open(url,"winescopo",str,true);
}

function adjustIFrameSize (iframeWindow) {
  if (iframeWindow.document.height) {
    var iframeElement = parent.document.getElementById(iframeWindow.name);
    iframeElement.style.height = iframeWindow.document.height + 'px';
    //iframeElement.style.width = iframeWindow.document.width + 'px';
  }
  else if (document.all) {
    var iframeElement = parent.document.all[iframeWindow.name];
    if (iframeWindow.document.compatMode &&
        iframeWindow.document.compatMode != 'BackCompat') 
    {
      iframeElement.style.height = iframeWindow.document.documentElement.scrollHeight + 5 + 'px';
      //iframeElement.style.width = iframeWindow.document.documentElement.scrollWidth + 5 + 'px';
    }
    else {
      iframeElement.style.height = iframeWindow.document.body.scrollHeight + 5 + 'px';
      //iframeElement.style.width = iframeWindow.document.body.scrollWidth + 5 + 'px';
    }
  }
}

//-->

