//-------------------------------------------------	
function comprobar(campo) {
  nombre = campo.name;
	if (campo.value == 0 || campo.value.length == 0) {
    return "El campo " + nombre + " no puede ser 0\n";
  } else {
  	return "";
	}
}

//-------------------------------------------------	
function calcularCuota() {
	importe = document.formu.importe.value;
	interes = (document.formu.interes.value/100) / 12;
	meses = document.formu.plazo.value * 12;
	document.f_result.cuota.value = Math.floor((importe*interes)/(1-Math.pow(1+interes,(-1*meses)))*100)/100;
}

//-------------------------------------------------	
function calcular_onclick() {
  s = "";
  s = s + comprobar(document.formu.importe);
  s = s + comprobar(document.formu.interes);
  s = s + comprobar(document.formu.plazo);
  if (s == "") {
    document.formu.interes.value = document.formu.interes.value.replace(/,/g,".");
    calcularCuota();
  } else {
  	alert("Se han producido los siguientes errores:\n" + s);
  }
}