/**************************************
Creado por: Software Bolivia
Dir. Web: www.softbol.net
**************************************/
function validarFormulario() {
	mensaje = "";
	ingreso = new String();
	
	ingreso = this.formSoftbolNet.titulo.value;
	if (ingreso == '-1') {
		mensaje += "- Seleccione el encabezado, con el que desea registrar el anuncio.\n";
	}
	
	ingreso = this.formSoftbolNet.mensaje.value;
	if (ingreso.length == 0) {
		mensaje += "- Ingrese el contenido del anuncio.\n";
	}
	
	ingreso = this.formSoftbolNet.nombre.value;
	if (ingreso.length == 0) {
		mensaje += "- Ingrese su nombre.\n";
	}
	
	ingreso = this.formSoftbolNet.direccion.value;
	if (ingreso.length == 0) {
		mensaje += "- Ingrese su direccion.\n";
	}
	
	band = false;
	ingreso = this.formSoftbolNet.fono.value;
	if (ingreso.length != 0) {
		band = true;
	}
	ingreso = this.formSoftbolNet.celular.value;
	if (ingreso.length != 0) {
		band = true;
	}
	ingreso = this.formSoftbolNet.mail.value;
	if (ingreso.length != 0) {
		band = true;
	}
	if(!band) {
		mensaje += "- Debe ingresar como minimo uno de los siguientes datos: telefono o celular o e-mail.\n";
	}
	if (mensaje != '') {
		alert("-------- AVISO --------\n\n"+mensaje+"\n- Gracias -");
		return false;
	}
	return true
}