/*







'?Copyright:                Terceiro Milênio Informática Ltda - www.tm3.com.br








*/

function e_erp_requisita_url(in_url, in_parametros) {
  /*




  */
  var http_request;

  try {
    /*

    */
    http_request = new XMLHttpRequest();
  }
  catch (e) {
    try {
      /*

      */
      http_request = new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch (e) {
      try {
        /*

        */
        http_request = new ActiveXObject("Microsoft.XMLHTTP");
      }
      catch (e) {
        /*

        */
      }
    }
  }
  http_request.open("post", in_url, false);
	http_request.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  http_request.send(in_parametros);
  return(http_request.responseText);
}

function e_erp_button_up() {
  /*




  */
	window.event.srcElement.style.backgroundColor = "#b5bdd6";
	window.event.srcElement.style.borderColor = "darkblue";
}

function e_erp_button_down() {
  /*




  */
	window.event.srcElement.style.backgroundColor = "#8494b5";
	window.event.srcElement.style.borderColor = "darkblue";
}

function e_erp_button_over() {
  /*




  */
	window.event.srcElement.style.backgroundColor = "#b5bdd6";
	window.event.srcElement.style.borderColor = "darkblue";
	window.event.srcElement.style.borderWidth = "1px";
	window.event.srcElement.style.borderStyle = "solid";
}

function e_erp_button_out(in_cor_ret) {
  /*




  */
	window.event.srcElement.style.backgroundColor = "transparent";
	window.event.srcElement.style.borderColor = in_cor_ret;
}
