// JavaScript Document

/* ------ Funcoes Gerais ------ */
//Seleciona valor do campo
function fctSelect(pCampo){
    document.getElementById(pCampo).select();
}

//Redireciona para inscrição Newsletter
function fctNewsletter(){
    if (document.getElementById('txtEmail').value != 'digite seu e-mail'){
        document.location = 'ie_newsletter.aspx?pStrEmail=' + document.getElementById('txtEmail').value;
    } else {
        document.location = 'ie_newsletter.aspx?pStrEmail='
    }
}

//Abre popup
var popUpWin=0;
function popUpWindow(pStrURL, pIntWidth, pIntHeight, pBooScrollbars)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(pStrURL, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbars='+pBooScrollbars+',resizable=no,copyhistory=yes,width='+pIntWidth+',height='+pIntHeight+',left=200,top=200,screenX=200,screenY=200');
}

//Limpar form Busca Depoimento
function fctLimparDepoimento(){
    document.getElementById('ddlPlataforma')[0].selected = true;
    document.getElementById('ddlProjeto')[0].selected = true;
    document.getElementById('txtKeyWord').value = '';
}
