// JavaScript Document
function confMail(){
	var str_mail = document.form.str_mail.value;
	var conf_mail = document.form.conf_mail.value;
	
	if(str_mail == conf_mail){
		document.form.conf_mail.value = str_mail;
	}else{
		document.form.str_mail.value = '';
		document.form.conf_mail.value = '';
		alert('Confirmação de e-mail inválida. Tente novamente.');
	}
}