function popup(f,l,a) {
var i = (screen.width - l)/2;
var j = (screen.height - a)/2;
  window.open(f,'janelapopup','height='+a+',width='+l+',top='+j+',left='+i); 
}
function Validar(){
if (document.form1.nome.value=="") {
alert("Informe o seu nome!");
return false;
}
if (document.form1.email.value=="") {
alert("Informe o seu Email!");
return false;
}
if (document.form1.texto.value=="") {
alert("O local onde deve colar seu currículo está em em branco!");
return false;
}
return true;
}
