diff --git a/templates/contest/log.html b/templates/contest/log.html
index 2d73108..fd3af3b 100644
--- a/templates/contest/log.html
+++ b/templates/contest/log.html
@@ -85,14 +85,21 @@ $(document).ready(function() {
var log = [{% for qso in qsos %}{call: "{{ qso.call }}", band: "{{ qso.band }}"}{% if not forloop.last %}, {% endif %}{% endfor %}];
function checkForDupes(e) {
- var call = $("#id_call").val();
+ var call = $("#id_call").val().toUpperCase();
var band = $("#id_band :selected").text();
var dupe = false;
for(var i=0; i