Make your next move with Joint Care Plus™

Joint Care Plus™ is a safe, all-natural product formulated to help slow joint deterioration and speed tissue repair.

With the ingredients NEM® Natural Eggshell Membrane and anti-inflammatory enzyme Serratiopeptidase, Joint Care Plus effectively addresses the pain and inflammation of arthritis, fibromyalgia and other joint-related conditions.

$(document).ready(function(){ /* This is the simplxRPC object to help you along your way. You dont need to use this, a simplx json-rpc call is just a json string sent as a querystring. But i thought you might find it convenient with a wrapper :) */ $('label.required').append(' * '); var accordion = $("#accordion");//.accordion(); var current = 0; var sect1 = new Array($('#username'),$('#password'),$('#password_confirm'),$('#fullname')); var sect2 = new Array($('#email')); var sect3 = new Array($('#zip'),$('#city'),$('#address')); var sect4 = new Array($('#terms')); var sec = new Array(sect1,sect2,sect3,sect4); var err = new Array(); var accdivs = new Array($('#div-1'),$('#div-2'),$('#div-3'),$('#div-4'),$('#div-5'),$('#div-6')); var map; var centered; var marker; var infowindow; //var origH = $('#div-1').height(); function collapseDivs(){ for(var n = 0;n < accdivs.length;n++) { accdivs[n].hide(); } } function showMe(o,accdivs){ for(var n = 0;n < accdivs.length;n++){ accdivs[n].hide('fast'); } o.show('slow'); } collapseDivs(); accdivs[0].show('slow'); ////////////////// // This function requests data for the select box function simplxRPC(config){ this.config = config; this.execute = function(){ var usesnippetmatching = (config.usesnippetmatching == 1) ? "&usesnippetmatching=1" : "&usesnippetmatching=0"; var data = ""; if(config.dummyResponse == ""){ $.get( (config.url+ '?id='+config.pageid+ '&simplxrpc='+ (JSON.stringify(config.rpc) + usesnippetmatching) ), function(data){ config.callback(data); return data; } ); }else{ config.callback(config.dummyResponse); return config.dummyResponse; } }; } ////////////////// // This function requests data for the select box function updateStatesOptions() { var countryid = $('#country option:selected').val(); var statesRPCConfig = { "url":"http://www.enzymesinc.com/", "pageid":"326", "usesnippetmatching":"1", "dummyResponse":"", "rpc":{ "id":"1", "method":"snippet.eic.get.states.json", "params":{ "parents":"0", "cid":countryid } }, "callback":parseStatesResponse }; simplxRPCObject = new simplxRPC(statesRPCConfig); simplxRPCObject.config.callback = parseStatesResponse; simplxRPCObject.execute(); } ////////////////// // This function is sent as a callback parameter in the config. function parseStatesResponse(data){ try{ var jsobject = JSON.parse(data); var options = ''; var oldstates = document.getElementById("state"); var rpc = document.getElementById("rpc_result"); rpc.removeChild(oldstates); if(jsobject.result.length >= 1 ) { var newstate = document.createElement("select"); newstate.setAttribute("name","state"); newstate.setAttribute("id","state"); rpc.appendChild(newstate); for (var i = 0; i < jsobject.result.length; i++) { options += ''; } $("#state").html(options); } else { var newstate = document.createElement("input"); newstate.setAttribute("type","textbox"); newstate.setAttribute("value",""); newstate.setAttribute("name","state"); newstate.setAttribute("id","state"); rpc.appendChild(newstate); } $('#json_source').html(data); } catch(e){ // Probably empty response... //alert(e.description); } /*$('#accordion').accordion('activate',1);*/ return data; } ////////////////// // These function sets focus to pseudo acordion function checkErrors(ele) { var mysplit = ele.attr('name').split(':'); errmsg = ''; if(mysplit.length > 1) { if(mysplit[1] == "required") { if(ele.val() == "") { errmsg = "This is a required field. "; } if(mysplit[2]) { var propSplit = mysplit[2].split('='); if(propSplit[0] == "minLength") { if(ele.val().length < propSplit[1]) { errmsg += 'The field must be at least ' + propSplit[1] + ' characters long.'; } } } } if(mysplit[1] == "exprequired") { if(ele.val() == "") { errmsg = "This is a required field. "; } if(mysplit[2]) { var propSplit = mysplit[2].split('='); if(propSplit[0] == "expminLength") { if(ele.val().length < propSplit[1]) { errmsg += 'The field must be at least ' + propSplit[1] + ' characters long.'; } } } } if(mysplit[1] == "password_confirm=`password`") { if(ele.val() != $('#password').val()) { errmsg = "Passwords do not match."; } } if(mysplit[1] == "email") { var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/; if(ele.val() == '') { errmsg = "This is a required field."; } else if(!emailReg.test(ele.val())) { errmsg = "This does not appear to be a valid e-mail address."; } } if(mysplit[1] == "checked") { if(ele.checked == 0) { errmsg = "You must agree to the terms and conditions."; } } } if(errmsg != '') { err.push(new Array(ele,errmsg)); errmsg = ''; } } function clearErrors() { err.length = 0; $('span.error').html(' '); } function setErrors(err,n) { if(err.length > 0) { for(i = 0; i < err.length; i++){ if(err[i].length > 0) { err[i][0].prev().prev().html(err[i][1]); } } } } function initMap() { var latlng = new google.maps.LatLng(-34.397, 150.644); var myOptions = { zoom: 8, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById("map_canvas"), myOptions); return map; } function resizeMap(map) { google.maps.event.trigger(map, 'resize'); } function codeAddress() { var geocoder; geocoder = new google.maps.Geocoder(); var concataddress = $('#address').val() + ' ' + $('#address2').val() + ' ' + $('#city').val() + ' ' + $('#state').val() + ' ' + $('#zip').val() + ' ' + $('#country').val(); var contentString = '

' + $('#fullname').val() + '

'; contentString += '

'+ $('#email').val() +'
' + $('#phone').val() + '
' + $('#address').val() + '
'; if($('#address2').val().length > 0) { contentString += $('#address2').val() + '
'; } contentString += $('#city').val() + ', ' + $('#state').val() + ' ' + $('#zip').val() + '
' + $('#country').val() +'

'; if($('#website').val().length > 0) { contentString += '

'+$('#website').val() +'

'; } if($('#directory-desc').val().length > 0) { contentString += '

'+$('#directory-desc').val() +'

'; } geocoder.geocode( { 'address': concataddress}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { centered = results[0].geometry.location; map.setCenter(results[0].geometry.location); infowindow = new google.maps.InfoWindow({ content: contentString }); marker = new google.maps.Marker({ map: map, position: results[0].geometry.location, title: $('#fullname').val(), animation: google.maps.Animation.DROP }); google.maps.event.addListener(marker, 'click', function() { infowindow.open(map,marker); }); $('#geocode').val(results[0].geometry.location); } else { alert("Geocode was not successful for the following reason: " + status); } }); } //////////// //Begin Navigation // Back Buttons do not need to run validation $("#div-2 .prevbutton").click(function(){ //accordion.accordion("activate", 0); showMe($('#div-1'),accdivs); current = 0; }); $("#div-3 .prevbutton").click(function(){ //accordion.accordion("activate", 1); showMe($('#div-2'),accdivs); current = 1; }); $("#div-4 .prevbutton").click(function(){ //accordion.accordion("activate", 2); showMe($('#div-3'),accdivs); current = 2; }); $("#div-5 .prevbutton").click(function(){ //accordion.accordion("activate", 2); showMe($('#div-3'),accdivs); $('#map_canvas').show('slow'); current = 2; }); $("#div-6 .prevbutton").click(function(){ //accordion.accordion("activate", 3); showMe($('#div-4'),accdivs); current = 3; }); // these buttons all run the validation, overridden by specific targets above $(".open6").click(function() { clearErrors(); /*for(i = 0;i < sect5.length; i++) { checkErrors(sect5[i],5); } if(err.length > 0) { setErrors(err); } else { accordion.accordion({active:5}); }*/ }); $(".open5").click(function() { clearErrors(); for(i = 0;i < sect5.length; i++) { checkErrors(sect5[i],5); } if(err.length > 0) { setErrors(err); } else { //accordion.accordion({active:1}); showMe($('#div-6'),accdivs); } }); $(".open4").click(function() { clearErrors(); var summary = ''; summary += '

'; summary += 'Fullname: ' + $('#fullname').val() + '
'; summary += 'Username: ' + $('#username').val() + '
'; summary += 'E-mail: ' + $('#email').val() + '
'; summary += 'Ok to e-mail? ' + $("input[name='marketing']:checked").val() + '
';; if($('#phone').val() != "") { summary += 'Phone: ' + $('#phone').val() + '
'; } summary += 'Account type: ' + $("input[name='account-type']:checked").val() + '
'; if($("input[name='account-type']:checked").val() == "Practitioner"){ summary += 'Directory inclusion? ' + $("input[name='directory-inclusion']:checked").val() + '
'; if($("input[name='directory-inclusion']:checked").val() == "Yes") { summary += 'Address: ' + $('#address').val() + ' '; summary += $('#address2').val(); summary += '
'; summary += 'City: ' + $('#city').val() + '
'; summary += 'State: ' + $('#state').val() + '
'; summary += 'Zip: ' + $('#zip').val() + '
'; summary += 'Map accuracy: ' + $("input[name='directory-accuracy']:checked").val() + '
'; summary += 'Geocode: ' + $('#geocode').val() + '
'; if($('#directory-desc').val() != '') { summary += 'Map marker description: ' + $('#directory-desc').val(); } } } summary += '

'; $('#summary').html(summary); //accordion.accordion({active:4}); showMe($('#div-5'),accdivs); $('#div-5').height('400px'); }); $(".open3").click(function() { clearErrors(); for(i = 0;i < sect3.length; i++) { checkErrors(sect3[i],3); } if(err.length > 0) { setErrors(err); } else { //accordion.accordion({active:3}); showMe($('#div-4'),accdivs); $('#map_canvas').height('350px'); $('#map_canvas').show(); $('#div-4').height('600px'); $('#directory-accuracy-yes').attr('checked', true); initMap(); codeAddress(); resizeMap(map); } }); $(".open2").click(function() { clearErrors(); for(i = 0;i < sect2.length; i++) { checkErrors(sect2[i],2); } if(err.length > 0) { setErrors(err); console.info(err); } else { //accordion.accordion({active:2}); showMe($('#div-3'),accdivs); } }); $(".open1").click(function() { clearErrors(); for(i = 0;i < sect1.length; i++) { checkErrors(sect1[i],1); } if(err.length > 0) { setErrors(err); } else { //accordion.accordion({active:1}); showMe($('#div-2'),accdivs); } }); // End Navigation //////////////// $('#country').change(function() { updateStatesOptions(); }); $('#account-practitioner').click(function() { if(!$("#no-directory:checked").val()) { $('#protected-buttons').hide('slow'); } else { $('#protected-buttons').show('slow'); } $('#div-directory-inclusion').show('slow'); }); $('#account-consumer').click(function() { $('#div-directory-inclusion').hide('slow'); $('#protected-buttons').show('slow'); }); $('#yes-directory').click(function(){ $('#address_container').show('slow'); $('#protected-buttons').hide('slow'); $('#div-3').height('500px'); }); $('#no-directory').click(function(){ $('#address_container').hide('hide'); $('#protected-buttons').show('slow'); }); $('#directory-accuracy-yes').click(function(){ }); $('#directory-accuracy-no').click(function(){ //accordion.accordion({active:2}); showMe($('#div-3'),accdivs); }); $('.updatemap').click(function(){ marker.setMap(null); codeAddress($('#website').val(),$('#directory-desc').val()); }); });

*This product is available only through licensed health care practitioners. If you are interested in this product, or if you feel that this product will assist you, please contact your health care practitioner and ask for Request an Account.

Practitioners must log in with an approved account to purchase this product.

Symptoms made easier with Joint Care Plus™
• Osteoarthritis
• Carpal Tunnel
   Syndrome
• TMJ
• Sprains
• Torn Ligaments
• Post-traumatic
   Inflammation
Made with NEM®
(Natural Eggshell Membrane)
Read more about the effectiveness of this revolutionary joint-care ingredient