//Abre popup no centro da tela
function PopupCentro(url, win, w, h)
{
  center_x = (screen.width - w)/2;
  center_y = (screen.height - h)/2;
  
  window.open(url, win, 'width=' + w + ',height=' + h + ',top=' + center_y + ',left=' + center_x + ',scrollbars=2,location=0');
}

function ajustaTextoPadraoEntrada(controle, textoPadrao, css)
{
    if (controle.value == textoPadrao)
    {
        controle.value = '';
        controle.className = css;
    }

}

function ajustaTextoPadraoSaida(controle, textoPadrao, css)
{
    if (controle.value == '')
    {
        controle.value = textoPadrao;
        controle.className = css;
    }
        
}

