/****************************************************************
*	Criado em:		08/01/2008			Por: ANDRÉ LUIZ
*	Alterado em:	09/01/2008			Por: ANDRÉ LUIZ
****************************************************************/

/*# VERIFICAR */
function talento_verificar(){
	var form	= document.talentoFRM;
	var vc_erro	= new String();
	
	if(form.nomeVC.value.length == 0){
		vc_erro	+= '- Digite o NOME.\n';
	}
	
	if (form.emailVC.value.length != 0) {
		vc_erro +=  verficaEmail(form.emailVC.value);
	} else {
		vc_erro	+= '- Digite o E-MAIL.\n';
	}
	
	if(form.areaVC.value.length == 0){
		vc_erro	+= '- Digite a ÁREA.\n';
	}
	
	if(form.arquivoVC.value.length == 0){
		vc_erro	+= '- Escolha um CURRÍCULO.\n';
	} else {
		var vc_extensao = new String(form.arquivoVC.value.substr(parseInt(form.arquivoVC.value.length - 4), form.arquivoVC.value.length).toLowerCase());
		
		if(vc_extensao != '.doc' && vc_extensao != '.pdf')
			vc_erro += '- Escolha arquivos do tipo DOC ou PDF.\n';
	}
	
	if (vc_erro != ''){
		alert('ATENÇÃO!\n\n' + vc_erro);
		return false;
	} else {
		form.submit();
	}

}
