function cambiar(esto) {
	vista=document.getElementById(esto).style.display;
	if (vista=='none')
		vista='block';
	else
		vista='none';
	document.getElementById(esto).style.display = vista;
}
function validar_mail(valor){
	if( !(/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(valor)) ) {
		return false;
	}
	return true;
}
function campo_completo(valor){
	if( valor == null || valor.length == 0 || /^\s+$/.test(valor) ) {
		alert("Todos los campos deben ser completados");
		return false;
	}
	return true;
}
function validar_registro(){
	if(!campo_completo(document.getElementById("registro").nombres.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").apellidos.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").nacimiento.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").documento.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").residencia.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").pais.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").telefono.value)){
		return false;
	}
	if(!validar_mail(document.getElementById("registro").email.value)){
		return false;
	}
	if(!campo_completo(document.getElementById("registro").representa.value)){
		return false;
	}
	return true;
}