// JS for cp prelaunch site.
// prepare the form when the DOM is ready 
$(document).ready(function() { 
    // bind form using ajaxForm 
    $('#cp_frmRegister').ajaxForm({ 
        // target identifies the element(s) to update with the server response 
        target: '#cp_ajaxResponse'
    }); 
});