Data Key Activation

Please fill out the form below and we will send you an activation key for Cosasco Data Offline software.

Where is my machine ID?

Where is my serial number?

By submitting this form you agree to the Cosasco Privacy Policy.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
$(function() { // Put your form ID here $("#myForm").submit(function(e) { // Put your checkboxes in a DIV // give it the chkGroup ID here var checked = 0; $("#chkGroup input[type='checkbox']").each(function () { if ($(this).is(":checked")) checked++; }); // Will error if none of the checkboxes // in that div are checked if (checked < 1) { alert("Please select at least one checkbox."); e.preventDefault(); return false; } }); });