function SomenteNumero(e){
    var tecla=(window.event)?event.keyCode:e.which;
    if((tecla > 47 && tecla < 58)) return true;
    else{
    if (tecla != 8) return false;
    else return true;
    }
}

function txtBoxFormat(objForm, strField, sMask, evtKeyPress) {
      var i, nCount, sValue, resultadoLen, mskLen,bolMask, sCod, nTecla;

      if(document.all) {
        nTecla = evtKeyPress.keyCode; }
      else if(document.layers) {
        nTecla = evtKeyPress.which;
      }

      sValue = objForm[strField].value;

      sValue = sValue.toString().replace( "-", "" );
      sValue = sValue.toString().replace( "-", "" );
      sValue = sValue.toString().replace( ".", "" );
      sValue = sValue.toString().replace( ".", "" );
      sValue = sValue.toString().replace( "/", "" );
      sValue = sValue.toString().replace( "/", "" );
      sValue = sValue.toString().replace( "(", "" );
      sValue = sValue.toString().replace( "(", "" );
      sValue = sValue.toString().replace( ")", "" );
      sValue = sValue.toString().replace( ")", "" );
      sValue = sValue.toString().replace( " ", "" );
      sValue = sValue.toString().replace( " ", "" );
      resultadoLen = sValue.length;
      mskLen = sMask.length;

      i = 0;
      nCount = 0;
      sCod = "";
      mskLen = resultadoLen;

      while (i <= mskLen) {
        bolMask = ((sMask.charAt(i) == "-") || (sMask.charAt(i) == ".") || (sMask.charAt(i) == "/"))
        bolMask = bolMask || ((sMask.charAt(i) == "(") || (sMask.charAt(i) == ")") || (sMask.charAt(i) == " "))

        if (bolMask) {
          sCod += sMask.charAt(i);
          mskLen++; }
        else {
          sCod += sValue.charAt(nCount);
          nCount++;
        }

        i++;
      }

      objForm[strField].value = sCod;

      if (nTecla != 8) { // backspace
        if (sMask.charAt(i-1) == "9") { // apenas números...
          return ((nTecla > 47) && (nTecla < 58)); } // números de 0 a 9
        else { // qualquer caracter...
          return true;
        } }
      else {
        return true;
      }
}

function BoxFormat(objForm, strField, strfull, sMask) {
      var i, nCount, sValue, resultadoLen, mskLen,bolMask, sCod, nTecla;

      sValue = strfull;

      sValue = sValue.toString().replace( "-", "" );
      sValue = sValue.toString().replace( "-", "" );
      sValue = sValue.toString().replace( ".", "" );
      sValue = sValue.toString().replace( ".", "" );
      sValue = sValue.toString().replace( "/", "" );
      sValue = sValue.toString().replace( "/", "" );
      sValue = sValue.toString().replace( "(", "" );
      sValue = sValue.toString().replace( "(", "" );
      sValue = sValue.toString().replace( ")", "" );
      sValue = sValue.toString().replace( ")", "" );
      sValue = sValue.toString().replace( " ", "" );
      sValue = sValue.toString().replace( " ", "" );
      resultadoLen = sValue.length;
      mskLen = sMask.length;

      i = 0;
      nCount = 0;
      sCod = "";
      mskLen = resultadoLen;

      while (i <= mskLen) {
        bolMask = ((sMask.charAt(i) == "-") || (sMask.charAt(i) == ".") || (sMask.charAt(i) == "/"))
        bolMask = bolMask || ((sMask.charAt(i) == "(") || (sMask.charAt(i) == ")") || (sMask.charAt(i) == " "))

        if (bolMask) {
          sCod += sMask.charAt(i);
          mskLen++; }
        else {
          sCod += sValue.charAt(nCount);
          nCount++;
        }

        i++;
      }

      objForm[strField].value = sCod;

      if (nTecla != 8) { // backspace
        if (sMask.charAt(i-1) == "9") { // apenas números...
          return ((nTecla > 47) && (nTecla < 58)); } // números de 0 a 9
        else { // qualquer caracter...
          return true;
        } }
      else {
        return true;
      }
}
    

function FloatToCurrency( Numero )
{
  sNumero = new String( Numero );
  iPos    = 0;

  // Verifica se possui o ponto decial para converte para vigula
  iPos = sNumero.indexOf( "." );
  if ( iPos != -1 )
  {
    sNumero = sNumero.slice( 0, iPos ) + "," +
           sNumero.slice( iPos + 1, iPos + 3 );
  }

  // Verifica se existe a necessidade de incluir zeros nas casas decimais
  iLen = sNumero.length;
  iPos = ( sNumero.indexOf( "," ) + 1 );

  if ( iPos == 0 )
  {
    sNumero = sNumero + ",00";
  }
  else if ( ( iLen - iPos ) == 0 )
  {
    sNumero = sNumero + "00";
  }
  else if ( ( iLen - iPos ) == 1 )
  {
    sNumero = sNumero + "0";
  }

  // Verifica as casas de milhares e milhões
  iLen = sNumero.length;

  if( iLen > 6 )
  {
    sNumero = sNumero.slice( 0, iLen - 6 ) + "." +
           sNumero.slice( iLen - 6 );
  }
  if( iLen > 9 )
  {
    sNumero = sNumero.slice(0, iLen - 9) + "." +
           sNumero.slice(iLen - 9);
  }

  return( sNumero );
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}
function fadeOpacity(objId, sOpacity, fOpacity,speed){
	b = new Browser()
	var finished = false
	if (sOpacity == fOpacity){finished=true}
	else if (sOpacity > fOpacity){ sOpacity-- }
	else if (sOpacity < fOpacity){ sOpacity++ }
	setOpacity(objId,sOpacity)
	if (finished!=true) document.TC_opacity = setTimeout('fadeOpacity(\''+objId+'\','+sOpacity+','+fOpacity+','+speed+')',speed)
}
function Browser(){
	this.name = navigator.appName;
	if (this.name == 'Microsoft Internet Explorer') this.browser = 'ie';
	else if (this.name.match(/Netscape/)) this.browser = 'ns';
	else this.browser = this.name;
	this.version = parseInt(navigator.appVersion);
	this.ns = (this.browser=='ns' && this.version>=4);
	this.ns4 = (this.browser=='ns' && this.version==4);
	this.ns6 = (this.browser=='ns' && this.version>=5);
	this.ie = (this.browser=='ie' && this.version>=4);
	this.ie4 = (this.browser=='ie' && navigator.userAgent.indexOf('MSIE 4')>-1);
	this.ie5 = (this.browser=='ie' && navigator.userAgent.indexOf('MSIE 5')>-1);
	this.ie6 = (this.browser=='ie' && navigator.userAgent.indexOf('MSIE 6')>-1);
	if (this.ie5) this.version = 5;
	this.op5 = (navigator.userAgent.indexOf('Opera 5')>-1);
	if (this.op5){this.browser = 'op'}
	this.dom1 = (document.implementation && document.implementation.hasFeature)?true:false;
	this.os = (navigator.platform)?navigator.platform:'unknown';
	if (this.ie){ this.language = navigator.userLanguage.substring(0,2).toLowerCase() } else if (this.ns || this.op5) { this.language = navigator.language.substring(0,2).toLowerCase() }
	this.toString = function(){ return '[object Browser]'}
	return this;
}
function setOpacity(objId, i){
	b = new Browser()
	if (b.ie){
		obj = document.all[objId]
		obj.style.filter = "alpha(opacity=" + i + ")";
	}
	else if (b.ns6){
		obj = document.getElementById(objId)
		obj.style.MozOpacity = i+'%'
	}
}
function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}