// JavaScript Document


/* _ FORMULARIO DE INCLUSAO: PARA O CONTADOR DE LETRAS DO CAMPO DESCRICAO - fpc_inclusao.html _ */

var submitcount=0;
function checkSubmit() {
if (submitcount == 0)
{
submitcount++;
document.Surv.submit();
}
}

function textCounter(field, countfield, maxlimit) {
if (field.value.length > maxlimit)
{field.value = field.value.substring(0, maxlimit);}
else
{countfield.value = maxlimit - field.value.length;}
}

/* _ INPUT "PALAVRA CHAVE" NA BUSCA DO BOX CLASSIFICADOS _ */


/* PARA FIREFOX */
if(navigator.userAgent.indexOf("Firefox")!=-1) {
document.write('<style type="text/css">')
document.write('.correto {')
document.write('height:16px;')
document.write('line-height:16px;')
document.write('vertical-align: middle;')
document.write('padding-top:4px;')
document.write('}')
document.write('</style>')
}
/* PARA INTERNET EXPLORER */
if(navigator.userAgent.indexOf("MSIE")!=-1) {
document.write('<style type="text/css">')
document.write('.correto {')
document.write('height:20px;')
document.write('line-height:20px;')
document.write('vertical-align: middle;')
document.write('}')
document.write('</style>')
}
/* PARA CHROME */
if(navigator.userAgent.indexOf("Chrome")!=-1) {
document.write('<style type="text/css">')
document.write('.correto {')
document.write('height:20px;')
document.write('vertical-align: middle;')
document.write('}')
document.write('</style>')
}





