\n' );
function f34fa6b50dcf84f39745c55cfec5f385( selection ) {
// find the form to submit
var form = null;
for ( i = 0; i < document.forms.length; i++ ) {
if ( document.forms[i].verificationKey != null && document.forms[i].verificationKey.value == '34fa6b50dcf84f39745c55cfec5f385' ) {
form = document.forms[i];
}
}
if ( form != null ) { // if we found a form
if ( form.onsubmit ) { // if there is an onsubmit
if ( form.onsubmit( ) ) { // see if the onsubmit returns 'true'
form.verificationSelection.value = selection;
form.action = 'http://verify.justhumans.com/post';
form.submit( ); // submit the form
}
}
else { // we don't have an onsubmit
form.verificationSelection.value = selection;
form.action = 'http://verify.justhumans.com/post';
form.submit( ); // submit the form
}
}
else {
alert( "Whoops, something is messed up. Try holding the shift key down and reloading this page before you submit the form." );
}
}