var nav4 = window.Event ? true : false;



function acceptNum(evt){	

  // NOTE: Backspace = 8, Enter = 13, '0' = 48, '9' = 57	

var key = nav4 ? evt.which : evt.keyCode;	

return (key <= 13 || (key >= 48 && key <= 57));

} 



function enviar(){

  

    var formato;

  	var comparacion;



  	/*Comprueba que el nombre no este vacío*/

    if (document.contactar.txtname.value == ""){

    	alert("Debe rellenar el campo NOMBRE");

      document.contactar.txtname.focus();

		  return false;

    }

    

    /*Comprueba que el copias no este vacio*/

    if (document.contactar.txtcopias.value == ""){

    	alert("Debe rellenar el campo COPIAS");

      document.contactar.txtcopias.focus();

		  return false;

    }

    

    /*Comprueba que la Direccion no este vacia*/

    if (document.contactar.txtdireccion.value == ""){

    	alert("Debe rellenar el campo DIRECCION");

      document.contactar.txtdireccion.focus();

		  return false;

    }

    

    /*Comprueba que Disco no este vacia*/

    if (document.contactar.txtdisco.value == ""){

    	alert("Debe rellenenar el campo DISCO");

      document.contactar.txtdisco.focus();

		  return false;

    }

     //   }



    document.contactar.submit();

    return false;

  }

