// JavaScript Document

function curriculo(){
	
	var cpCur = document.getElementById('arquivo').value;
	
	if(cpCur == ''){
		alert('Procure um arquivo em seu computador.');
		return false;
	} else {
		var ext = cpCur.substr(cpCur.length - 3);

			if(ext != 'doc' && ext != 'pdf'){
				alert('Permitido apenas envio de arquivo .DOC ou .PDF.');
				return false;
			} else {
				return true;
			}
	}
	
}

function curriculoEnvia(msg){
	alert(msg);
	location.href = 'index.php';
}

function valContato(){
	
	var nome	= document.getElementById('nome').value; 
	var email	= document.getElementById('email').value;
	var cidade	= document.getElementById('cidade').value;
	var estado	= document.getElementById('estado').value;
	var assunto	= document.getElementById('assunto').value;
	var msg		= document.getElementById('mensagem').value;
	
	if(nome == '' || email == '' || cidade == '' || estado == '' || assunto == '' || msg == ''){
		alert('Por favor, preencha os campos obrigatórios.');
		return false;
	} else {
		if (!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email))) {
        	alert("E-mail Inválido");
			document.getElementById('email').focus();
			return false;
      	}
		return true;
	}
	
}