
var haveerrors = 0;
function showImage(imagename, imageurl, errors){
document[imagename].src = imageurl;
if (!haveerrors && errors) haveerrors = errors;}

function validar_franquia(a){
haveerrors = 0;

(
a.nome.value.length < 2 ||
a.email.value.length < 2 ||
a.ddd.value.length < 2 ||
a.telefone.value.length < 2 ||
a.profissao.value.length < 2 ||
a.cpf.value.length < 2 ||
a.dia.value.length < 2 ||
a.mes.value.length < 2 ||
a.ano.value.length < 2 ||
a.endereco.value.length < 2 ||
a.bairro.value.length < 2 ||
a.cidade.value.length < 2 ||
a.uf.value.length < 2 ||
a.cep.value.length < 2 ||
a.cidadefranquia.value.length < 2
)

? showImage("campos", "../img/form_errado.gif", true)
: showImage("campos", "../img/form_certo.gif", false);

return (!haveerrors);}






function mediacenter_vídeos(i)
{
window.open("mediacenter/videos.asp?a="+i,"vídeos","top=50,left=50,width=320,height=240,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
}


function mediacenter_fotos(i)
{
window.open("mediacenter/fotos.asp?a="+i,"fotos","top=50,left=50,width=427,height=320,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
}

