//*******ESTILIZANDO ABBR IN IE***********//
/**************************************/
function styleAbbr() {
  var oldBodyText, newBodyText, reg
  if (isIE) {
    oldBodyText = document.body.innerHTML;
    reg = /<ABBR([^>]*)>([^<]*)<\/ABBR>/g;
    newBodyText = oldBodyText.replace(reg, '<ABBR $1><SPAN class=\"abbr\" $1>$2</SPAN></ABBR>');
    document.body.innerHTML = newBodyText;
  }
}

ELO.functionsToCallOnload.push("styleAbbr()");

function $(s) {
	return document.getElementById(s);
}

function ExibirIndique() {
	$('form_indique').className = "envie show";
}

function FecharIndique() {
	$('form_indique').className = "envie hidden";
	return false;
}