Saunders Home Cervical Neck Traction Device with Deluxe Case (2024)

Saunders Home Cervical Neck Traction Device with Deluxe Case (1)Shop by Brand
Saunders Home Cervical Neck Traction Device with Deluxe Case (2)
'; answerHtml += ''; $(answerHtml).insertBefore(beforeElement); console.log(answerHtml); } btnObj.attr('answers_loaded', 'true'); btnObj.parents(".moreAnswer").siblings(".ordinaryAnswer").removeClass("askNoDisplay"); $(".askHelpfulLink").unbind("click").bind("click", helpfullBtnClkEvt); }); } } else if ($(this).attr("status") == "shown") { $(this).attr("status","hidden"); var restAnswerCnt = $(this).parents(".questionCell").attr("answer_cnt") - 1; $(this).text("See All Answers(" + restAnswerCnt + ")"); $(this).siblings(".askMoreIcon").removeClass("askFlipImage"); $(this).parents(".moreAnswer").siblings(".ordinaryAnswer").addClass("askNoDisplay"); } } function answerSigninLinkEvt() { displayLog(); } function helpfullBtnClkEvt() { if (cID == "") { g_reviewDetailIdx = 0; g_comment=""; displayLog(); } else { var answerId = $(this).parents(".askContentRowAnswer").attr("answer_id"); var url = "/app/site/hosting/scriptlet.nl?script=381&deploy=1"; var scoreObj = $(this).parent().parent().children(".askScore").eq(0); $.post( url, { answerIdx: answerId, accountEmail: customer_email }, function(result) { if (result) { var retObj = JSON.parse(result); var helpfulDate = retObj.helpfulDate; if (helpfulDate != "") { var msg = customer_email + " : You had already submitted a helpful in customer account with the email on " + helpfulDate + ". So you can't submit another helpful again."; alert(msg); } else { scoreObj.html( retObj.helpfulCount * 1 ); } } }); } } function answerQuestionClkEvt() { $(this).addClass("askNoDisplay"); var parentObj = $(this).parents(".questionCell"); $(this).parent().parent().siblings(".answerInputRow").removeClass("askNoDisplay"); if (cID == "") { // unauthenticated user parentObj.find(".askAnswerSignedOutBox").removeClass("askNoDisplay"); } else { //authenticated user parentObj.find(".answerInputText").removeClass("askNoDisplay"); // parentObj.find(".askAnswerCharCount").removeClass("askFadeOut"); parentObj.find(".askAnswerSubmitButton").removeClass("askNoDisplay").removeClass("askFadeOut"); parentObj.find(".askAnswerCancelButton").removeClass("askNoDisplay").removeClass("askFadeOut"); parentObj.find(".answerCountAnchor").removeClass("askNoDisplay"); } } function answerSubmitBtnClkEvt() { var answer = $(this).parents("td").children("textarea").eq(0).val(); if (answer == "") { alert("Please type answer"); return; } var questionIdx = $(this).parents(".questionCell").attr("question_id"); var parentObj = $(this).parents(".questionCell"); var beforeElement = parentObj.find(".askAnswerSubmitButton"); $('

Saunders Home Cervical Neck Traction Device with Deluxe Case (16)

').insertBefore(beforeElement); parentObj.find(".askAnswerSubmitButton").addClass("askNoDisplay"); parentObj.find(".askAnswerCancelButton").addClass("askNoDisplay"); var itemId = $("#itemId").val(); //var url = '/app/site/hosting/scriptlet.nl?script=401&deploy=1';var url ='/app/site/hosting/scriptlet.nl?script=785&deploy=1'; $.post( url, { itemId: itemId, questionIdx: questionIdx, displayName: storeDisplayName_A, answer: answer, answererName: customer_name, answererEmail: customer_email }, function(result) { if (result) { parentObj.find(".submit-loader").remove(); parentObj.find(".askAnswerSubmitButton").removeClass("askNoDisplay"); parentObj.find(".askAnswerCancelButton").removeClass("askNoDisplay"); parentObj.find(".askAnswerQuestionButton").removeClass("askNoDisplay"); $(this).parent().parent().addClass("askNoDisplay"); parentObj.find(".askAnswerSignedOutBox").addClass("askNoDisplay"); parentObj.find(".answerInputText").addClass("askNoDisplay"); parentObj.find(".askAnswerCharCount").addClass("askFadeOut"); parentObj.find(".askAnswerSubmitButton").addClass("askNoDisplay").addClass("askFadeOut"); parentObj.find(".askAnswerCancelButton").addClass("askNoDisplay").addClass("askFadeOut"); parentObj.find(".answerCountAnchor").addClass("askNoDisplay"); location.reload(); } }); } function answerCancelBtnClkEvt() { var parentObj = $(this).parents(".questionCell"); parentObj.find(".askAnswerQuestionButton").removeClass("askNoDisplay"); $(this).parent().parent().addClass("askNoDisplay"); parentObj.find(".askAnswerSignedOutBox").addClass("askNoDisplay"); parentObj.find(".answerInputText").addClass("askNoDisplay"); parentObj.find(".askAnswerCharCount").addClass("askFadeOut"); parentObj.find(".askAnswerSubmitButton").addClass("askNoDisplay").addClass("askFadeOut"); parentObj.find(".askAnswerCancelButton").addClass("askNoDisplay").addClass("askFadeOut"); parentObj.find(".answerCountAnchor").addClass("askNoDisplay"); } function askTextAreaFocusEvt() { var parentObj = $(this).parents(".questionCell"); $(this).addClass("askTextAreaHeightAdjust"); parentObj.find(".askCharCountText").removeClass("askFadeOut"); parentObj.find(".askCharCountText").addClass("askFadeIn"); } function askTextAreaBlurEvt() { var thisObj = $(this); var parentObj = $(this).parents(".questionCell"); setTimeout(function() { thisObj.removeClass("askTextAreaHeightAdjust"); parentObj.find(".askCharCountText").removeClass("askFadeIn"); parentObj.find(".askCharCountText").addClass("askFadeOut"); }, 200); } function makeQuestionHtml(result, isAdditional) { var quetsionHtml = ''; if (isAdditional == "true") { quetsionHtml += ''; } else if (isAdditional == "false") { quetsionHtml += ''; } quetsionHtml += ''; quetsionHtml += ' '; return quetsionHtml; } var currentShownNum = 0; // not index, real order var initialQuestions = 3; var questionsNeeded = 4; var addtionalQuestionsLoaded = false; var totalQuestions = 10; $("#askSeeMoreQuestionsButton").click(function() { var buttonObj = $(this); if ($(this).attr("status") == "less") { if (addtionalQuestionsLoaded == false) { var itemId = $("#itemId").val(); var url = "/app/site/hosting/scriptlet.nl?script=379&deploy=2&itemId=" + itemId + "&startIndex=" + currentShownNum + "&initial=false"; $.get(url, function(response) { var data = JSON.parse(response); totalQuestions = data.questionAllCount; var result = data.questionArray; var beforeElement = $("table#askContent").find("#askSeeMoreQuestionsRow"); for (i = 0; i < result.length; i++) { var quetsionHtml = ''; var isAdditional = "true"; quetsionHtml = makeQuestionHtml(result[i], isAdditional); $(quetsionHtml).insertBefore(beforeElement); } $("#askContent span.seeMoreAnswers").unbind("click").bind("click", seeMoreAnswersBtnClkEvt); $("#askContent .askAnswerQuestionButton").unbind("click").bind("click", answerQuestionClkEvt); $("#askContent .askHelpfulLink").unbind("click").bind("click", helpfullBtnClkEvt); $("#askContent .askAnswerSubmitButton").unbind("click").bind("click", answerSubmitBtnClkEvt); $("#askContent .askAnswerCancelButton").unbind("click").bind("click", answerCancelBtnClkEvt); $("#askContent .askTextArea").unbind("focus").bind("focus", askTextAreaFocusEvt); $("#askContent .askTextArea").unbind("blur").bind("blur", askTextAreaBlurEvt); $("#askContent .answerSignInLink").unbind("click").bind("click", answerSigninLinkEvt); if (currentShownNum + result.length >= totalQuestions) { currentShownNum = totalQuestions; buttonObj.attr("status", "full"); buttonObj.val("« Show Fewer Questions"); addtionalQuestionsLoaded = true; } else { currentShownNum += result.length; var leftCount = totalQuestions - (currentShownNum + 1); buttonObj.val("Show More Questions " + leftCount + " »"); } }); } else { $(".questionCell").slice(currentShownNum, currentShownNum + questionsNeeded).removeClass("askNoDisplay"); if (currentShownNum + questionsNeeded >= totalQuestions) { currentShownNum = totalQuestions; buttonObj.attr("status", "full"); buttonObj.val("« Show Fewer Questions"); } else { currentShownNum += questionsNeeded; var leftCount = totalQuestions - (currentShownNum + 1); $(this).val("Show More Questions " + leftCount + " »"); } } } else if ($(this).attr("status") == "full") { $(this).attr("status", "less"); $(".additionalQuestion").addClass("askNoDisplay"); currentShownNum = initialQuestions; var leftCount = totalQuestions - (currentShownNum + 1); $(this).val("Show More Questions " + leftCount + " »"); } }); function LoadQuestionInitData() { var itemId = $("#itemId").val(); var url = "/app/site/hosting/scriptlet.nl?script=379&deploy=2&itemId=" + itemId + "&startIndex=0" + "&initial=true"; $.get(url, function(result) { var data = JSON.parse(result); totalQuestions = data.questionAllCount; var result = data.questionArray; var beforeElement = $("table#askContent").find("#askSeeMoreQuestionsRow"); for (i = 0; i < result.length; i++) { var quetsionHtml = ''; var isAdditional = "false"; quetsionHtml = makeQuestionHtml(result[i], isAdditional); $(quetsionHtml).insertBefore(beforeElement); } initialQuestions = result.length; currentShownNum = initialQuestions; if (result.length > 0) { var leftCount = totalQuestions - (currentShownNum + 1); $("#askSeeMoreQuestionsButton").val("Show More Questions " + leftCount + " »"); } $("#askContent span.seeMoreAnswers").unbind("click").bind("click", seeMoreAnswersBtnClkEvt); $("#askContent .askAnswerQuestionButton").unbind("click").bind("click", answerQuestionClkEvt); $("#askContent .askHelpfulLink").unbind("click").bind("click", helpfullBtnClkEvt); $("#askContent .askAnswerSubmitButton").unbind("click").bind("click", answerSubmitBtnClkEvt); $("#askContent .askAnswerCancelButton").unbind("click").bind("click", answerCancelBtnClkEvt); $("#askContent .askTextArea").unbind("focus").bind("focus", askTextAreaFocusEvt); $("#askContent .askTextArea").unbind("blur").bind("blur", askTextAreaBlurEvt); $("#askContent .answerSignInLink").unbind("click").bind("click", answerSigninLinkEvt); }); } LoadQuestionInitData(); /********** Question End **********/ /********** Review Start **********/ /* var overallStar = "4.9"; var reviewAllCount = "208"; overallStar *= 1; reviewAllCount *= 1; */ function ShowReviewLoader() { // alert('test'); var myTop = $("#review_header").offset().top; var myHeight = $("#review_header").height() + $("#product_page").height(); $(window).scrollTop(myTop); $("#review_detail_loading").css( "height", myHeight ); $("#review_detail_loading").css( "top", myTop ); $("#review_detail_loading").show(); } function HideReviewLoader() { $("#review_detail_loading").hide(); } function ReloadData(doInit, pageNumber, selIdx, sortVal) { if (!doInit) { ShowReviewLoader(); } var itemId = $("#itemId").val(); var starValue = $("#starValue").val(); var url = "/app/site/hosting/scriptlet.nl?script=371&deploy=1&itemId=" + itemId + "&pageNumber=" + pageNumber + "&sortVal=" + sortVal + "&initial=" + doInit + "&starValue=" + starValue; $.get(url, function(result) { var review_data = JSON.parse(result); var overallStar = review_data.overallStar * 1; var highestStar = review_data.highestStar * 1; var reviewArray = review_data.reviewArray; var reviewAllCount = review_data.reviewAllCount; var answerAllCount = review_data.answerAllCount; var review1Count = review_data.review1Count; var review2Count = review_data.review2Count; var review3Count = review_data.review3Count; var review4Count = review_data.review4Count; var review5Count = review_data.review5Count; var pageCount = review_data.pageCount; if (doInit) { InitReview( reviewAllCount, answerAllCount, overallStar, highestStar, review5Count, review4Count, review3Count, review2Count, review1Count ); } LoadReviewDetails( reviewArray ); SetPageBtnState( pageCount, pageNumber * 1, selIdx ); }); } function InitReview(reviewAllCount, answerAllCount, overallStar, highestStar, review5Count, review4Count, review3Count, review2Count, review1Count) { if ( overallStar > 0 ) { // We save the highestStar. $("#highestStar").val( highestStar ); // Review Count var strHtml = '' + reviewAllCount + " reviews" + ''; strHtml += "|"; // Answer Count strHtml += '' + answerAllCount + " answered questions" + ''; $("#productReviewCount").html( strHtml ); // Review Star var showStar = Math.ceil( overallStar ); strHtml = ""; for (var i = 0; i < showStar; i ++) { if (overallStar < showStar && i == showStar - 1) { strHtml += ""; } else { strHtml += ""; } } for (var i = 0; i < 5 - showStar; i ++) { strHtml += ""; } $("#product_just_stars").html(strHtml); var marksClass = "color" + (Math.round( overallStar * 1 ) * 1); var starMarkHtml = overallStar; $("#review_overall_block").html( starMarkHtml); var starCountHtml = ''; for (var i = 0; i < showStar; i ++) { if (overallStar < showStar && i == showStar - 1) { starCountHtml += ""; } else { starCountHtml += ""; } } for (var i = 0; i < 5 - showStar; i ++) { starCountHtml += ""; } $("#review_detail_stars").html( starCountHtml ); //Star Graph var star5_percent = Math.round( review5Count / reviewAllCount * 100 ); var star4_percent = Math.round( review4Count / reviewAllCount * 100 ); var star3_percent = Math.round( review3Count / reviewAllCount * 100 ); var star2_percent = Math.round( review2Count / reviewAllCount * 100 ); var star1_percent = Math.round( review1Count / reviewAllCount * 100 ); $("#meter_bar_5").css( "width", star5_percent + "%" ); $("#meter_bar_4").css( "width", star4_percent + "%" ); $("#meter_bar_3").css( "width", star3_percent + "%" ); $("#meter_bar_2").css( "width", star2_percent + "%" ); $("#meter_bar_1").css( "width", star1_percent + "%" ); $("#a_review_count_5").html( star5_percent + "%" ); $("#a_review_count_4").html( star4_percent + "%" ); $("#a_review_count_3").html( star3_percent + "%" ); $("#a_review_count_2").html( star2_percent + "%" ); $("#a_review_count_1").html( star1_percent + "%" ); } else { $("#productReviewWrite").css("display", "inline"); $("#star_graph").hide(); } } $( ".a-histogram-row" ).unbind( "click" ).bind( "click", starGraphRowClickEvt ); function starGraphRowClickEvt() { var star_value = $(this).attr("star_value") * 1; $("#starValue").val(star_value); ReloadData( false, 1, 0, $("#item_drilldown_sort").val() ); } function postBtnClickEvt() { var commet_ele = $(this).parent().parent().children(".textarea_wrapper").eq(0).children(".rv_commentTextArea").eq(0); if (commet_ele.val() == "") { return; } g_comment = commet_ele.val(); g_reviewDetailIdx = $(this).attr("reviewDetailIdx"); var comment_count_ele = $(this).parent().parent().parent().parent().children(".helpfulWrapper").eq(0).children(".helpfulMain").eq(0).children(".vote_comment").eq(0); if (cID == "") { displayLog(); } else { var comment_list = $(this).parent().parent().parent().children(".comment_list_wrapper").eq(0).children(".comment_list").eq(0); var post_btn_parent = $(this).parent(); var post_btn_html = post_btn_parent.html(); post_btn_parent.html('

Saunders Home Cervical Neck Traction Device with Deluxe Case (17)

'); var url = "/app/site/hosting/scriptlet.nl?script=375&deploy=1"; $.post( url, { reviewDetailIdx: $(this).attr("reviewDetailIdx"), displayName:customer_name, comment: g_comment }, function(result) { loadCommentData( comment_list, g_reviewDetailIdx, "newest", comment_count_ele ); $(this).attr( "shownComment", 1 ); post_btn_parent.html(post_btn_html); $(".comment_post").unbind("click").bind("click", postBtnClickEvt); }); } } function loadCommentData(comment_list, reviewDetailIdx, sortVal, comment_count_ele) { comment_list.html('

Saunders Home Cervical Neck Traction Device with Deluxe Case (18)

'); var url = "/app/site/hosting/scriptlet.nl?script=376&deploy=1&reviewDetailIdx=" + reviewDetailIdx + "&sortVal=" + sortVal; $.get(url, function(result) { if (result) { var comment_data = JSON.parse(result); var comment_array = comment_data.comment_array; var strCommentHtml = ""; for (var i = 0; i < comment_array.length; i ++) { strCommentHtml += "

"; strCommentHtml += "

"; strCommentHtml += comment_array[i].commentDate + " by " + comment_array[i].customer_name; strCommentHtml += "

"; strCommentHtml += "

"; strCommentHtml += comment_array[i].comment; strCommentHtml += "

"; strCommentHtml += "

"; } comment_list.hide(); comment_list.html(strCommentHtml); comment_list.fadeIn(300); if (comment_count_ele != null) { var strComment = comment_count_ele.html(); var strArr = strComment.split(" "); var commentCount = 0; if (strArr.length > 1) { commentCount = strArr[0]; } comment_count_ele.html( ++commentCount + " comments" ); } } }); } function LoadReviewDetails(reviewArray) { HideReviewLoader(); $("#item_drilldown_review_section").fadeOut(100, function() { $("#item_drilldown_review_section").html(""); for (var i = 0; i < reviewArray.length; i ++ ) { var reviewDetailIdx = reviewArray[i].reviewDetailIdx; var star = reviewArray[i].star; var headLine = reviewArray[i].headLine; var reviewDetail = reviewArray[i].reviewDetail; var shopperName = reviewArray[i].shopperName; var shopperEmail = reviewArray[i].shopperEmail; var reviewDate = reviewArray[i].reviewDate; var helpfulCount = reviewArray[i].helpfulCount * 1; var commentCount = reviewArray[i].commentCount * 1; if ( !commentCount ) commentCount = ""; var starHtml = '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; for (var j = 0; j < star; j ++) { starHtml += ''; } for (var j = 0; j < 5 - star; j ++) { starHtml += ""; } starHtml += '

'; starHtml += '

'; starHtml += '

' + headLine + '

'; starHtml += '

' + reviewDate + ' by ' + shopperName + '

'; starHtml += '

' + reviewDetail + '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

Saunders Home Cervical Neck Traction Device with Deluxe Case (19)

'; starHtml += '' + commentCount + ''; starHtml += '

|

'; starHtml += '

' + helpfulCount + '

'; starHtml += '

people found this helpful

'; starHtml += '

Was this review helpful?

'; starHtml += '

'; starHtml += '

'; // A helpfulMain's direct parent starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; // Akira starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += ''; starHtml += ''; starHtml += 'Sort by:'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; starHtml += '

'; // Akira starHtml += '

'; starHtml += '

'; starHtml += '

'; $("#item_drilldown_review_section").append(starHtml); } $("#item_drilldown_review_section").fadeIn(100, function() { $(".vote_helpful").unbind("click").bind("click", function() { g_reviewDetailIdx = $(this).attr("reviewDetailIdx"); g_comment = ""; if (cID == "") { displayLog(); } else { ShowReviewLoader(); var url = "/app/site/hosting/scriptlet.nl?script=373&deploy=1"; var count_board = $(this).parent().children(".helpful-count").eq(0); $.post( url, { reviewDetailIdx: $(this).attr("reviewDetailIdx"), accountEmail: customer_email }, function(result) { HideReviewLoader(); var retObj = JSON.parse(result); var helpfulDate = retObj.helpfulDate; if (helpfulDate != "") { var msg = customer_email + " : You had already submitted a helpful in customer account with the email on " + helpfulDate + ". So you can't submit another helpful again."; alert(msg); } else { // var tmpCount = ( count_board.html() * 1 ) + 1; var tmpCount = retObj.helpfulCount; count_board.html(tmpCount); } }); } }); $(".vote_comment_arrow").unbind("click").bind("click", function() { var collapseImgUrl = "https://system.na3.netsuite.com/c.671309/Product Review/img/collapse.png"; var expandImgUrl = "https://system.na3.netsuite.com/c.671309/Product Review/img/expand.png"; var imgEle = $(this).children("img") if (imgEle.attr("IsExpanded") == 1) { imgEle.attr( "src", collapseImgUrl ); imgEle.attr("IsExpanded", 0); } else { imgEle.attr( "src", expandImgUrl ); imgEle.attr("IsExpanded", 1); } var comment_wrapper = $(this).parent().parent().parent().children(".comment_wrapper").eq(0); var shownComment = $(this).attr( "shownComment") * 1; if ( !shownComment ) { var comment_list = comment_wrapper.children(".comment_list_wrapper").eq(0).children(".comment_list").eq(0); var comment_header = comment_list.prev(); comment_header.children(".comment_sort").eq(1).addClass("comment_sort_sel"); loadCommentData( comment_list, $(this).parent().attr("reviewDetailIdx"), "newest", null ); $(this).attr( "shownComment", 1 ); } comment_wrapper.slideToggle(); }); $(".vote_comment").unbind("click").bind("click", function() { $(this).parent().children(".vote_comment_arrow").click(); }); $(".comment_sort").unbind("click").bind("click", function() { var reviewDetailIdx = $(this).parent().attr("reviewDetailIdx"); $(this).parent().children(".comment_sort").eq(0).removeClass("comment_sort_sel"); $(this).parent().children(".comment_sort").eq(1).removeClass("comment_sort_sel"); $(this).addClass("comment_sort_sel"); var comment_list = $(this).parent().parent().children(".comment_list").eq(0); if ($(this).html() == "Newest") { loadCommentData(comment_list, reviewDetailIdx, "newest", null); } else { loadCommentData(comment_list, reviewDetailIdx, "oldest", null); } }); $(".comment_post").unbind("click").bind("click", postBtnClickEvt); }); }); } function SetPageBtnState(pageCount, pageNumber, selIdx) { if (selIdx == 1) { return; } if (pageCount > 1) { if (pageCount > 3) { var realSelIdx = selIdx; if ((pageNumber != 1 && selIdx == 0) || (pageNumber != pageCount && selIdx == 2)) { if (selIdx == 0) pageNumber --; if (selIdx == 2) pageNumber ++; realSelIdx = 1; } var pageRealNum = 0; for (var i = 0; i < 3; i ++) { pageRealNum = pageNumber + i - selIdx; $(".page_num").eq(i).val( pageRealNum ); $(".page_num").eq(i).show(); } // $(".page_num").eq(selIdx).blur(). $(".page_num").removeClass("active"); $(".page_num").eq(realSelIdx).addClass("active"); $(".page_num").eq(selIdx).blur(); if (pageNumber == 1) { $(".item_drilldown_page").eq(0).hide(); $(".item_drilldown_page").eq(4).show(); } else { if (pageRealNum == pageCount) { $(".item_drilldown_page").eq(4).hide(); $(".item_drilldown_page").eq(0).show(); } else { $(".item_drilldown_page").eq(0).show(); $(".item_drilldown_page").eq(4).show(); } } } else { for (var i = 1; i < pageCount + 1; i ++) { $(".item_drilldown_page").eq(i).val(i); if (i == pageNumber) { $(".item_drilldown_page").eq(i).addClass("active"); } $(".item_drilldown_page").eq(i).show(); } $(".item_drilldown_page").eq(0).hide(); $(".item_drilldown_page").eq(4).hide(); } } else { $(".item_drilldown_page").hide(); } $(".arrow").unbind("click").bind( "click", function() { var arrowIdx = $(this).index(); if (arrowIdx == 0) { $(".page_num").eq(0).click(); } else { $(".page_num").eq(2).click(); } }); $(".page_num").unbind("click").bind("click", function() { var pageNumber = $(this).val(); var tmpSelIdx = $(this).index() - 1; $(".page_num").removeClass("active"); $(this).addClass("active"); ReloadData(false, pageNumber, tmpSelIdx, $("#item_drilldown_sort").val()); }); } // Review Modal function ReviewProduct() { if ( cID == "" ) { g_reviewDetailIdx = 0; g_comment=""; displayLog(); } else { InitModalVal(); var newPosY = $(window).scrollTop(); $("#pts_review_product").css( "top", newPosY ); $("#pts_background").fadeIn(100, function() { $("#pts_review_product").fadeIn(100); }); } } function CloseReviewWindow(isSubmitFire) { InitModalVal(); $("#pts_review_product").fadeOut(100, function() { $("#pts_background").fadeOut(100); $("#item_drilldown_product_comments").hide(); if( isSubmitFire ) { location.reload(); } }); } function InitModalVal() { $(".item_drilldown_product_star").removeClass("item_drilldown_product_activestar"); var highestStar = $("#highestStar").val() * 1; for (var i = 0; i < highestStar; i ++) { $(".item_drilldown_product_star").eq(i).addClass("item_drilldown_product_activestar"); } $("#ProductRating").val("0"); $("#ProductHeading").val(""); $("#ProductComments").val(""); $("#item_drilldown_product_name").val(""); $("#item_drilldown_product_email").val(""); $("#item_drilldown_product_email_message").html(""); } // Write ReviewStar $(".item_drilldown_product_star").mouseover(function() { $(".item_drilldown_product_star").removeClass("item_drilldown_product_activestar"); var active_star = $(this).index(); for (var i = 0; i < active_star + 1; i ++) { $(".item_drilldown_product_star").eq(i).addClass("item_drilldown_product_activestar"); } }); $(".item_drilldown_product_star").mouseout(function() { $(".item_drilldown_product_star").removeClass("item_drilldown_product_activestar"); var active_star = $("#ProductRating").val(); for (var i = 0; i < active_star; i ++) { $(".item_drilldown_product_star").eq(i).addClass("item_drilldown_product_activestar"); } }); $(".item_drilldown_product_star").click(function() { $("#ProductRating").val($(this).index()+1); $("#item_drilldown_product_comments").slideDown(); }); // Submit Review function validateEmail(sEmail) { var filter = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/; if (filter.test(sEmail)) { return true; } else { return false; } } function ValidateForm() { if ($("#ProductHeading").val() == "") { return false; } if ($("#ProductComments").val() == "") { return false; } if ($("#item_drilldown_product_name").val() == "") { return false; } if ($("#item_drilldown_product_email").val() == "") { return false; } else { if (!validateEmail($("#item_drilldown_product_email").val())) { $("#item_drilldown_product_email_message").html("Please enter a valid email address."); return false; } } return true; } $("#pts_submit").click(function() { if (ValidateForm()) { var url = "/app/site/hosting/scriptlet.nl?script=372&deploy=1"; $.post(url, {itemId: $("#itemId").val(), displayName: storeDisplayName_A, starCount: $("#ProductRating").val(), headLine: $("#ProductHeading").val(), reviewDetail: $("#ProductComments").val(), shopperName: $("#item_drilldown_product_name").val(), shopperEmail: $("#item_drilldown_product_email").val(), accountEmail: customer_email}, function(result) { var retObj = JSON.parse(result); var chkArray = retObj.chkArray; if (chkArray.length > 0) { var reviewDate = chkArray[0].reviewDate; var msg = customer_email + " : You had already submitted a review in customer account with the email on " + reviewDate + ". So you can't submit another review again."; alert(msg); } else { CloseReviewWindow( true ); } }); } }); // Change sortVal function changeSort() { ReloadData(false, 1, 0, $("#item_drilldown_sort").val()); } ReloadData(true, 1, 0, $("#item_drilldown_sort").val()); /********** Review End **********/ //Manufacturer Hyphen var manufacturer = "Saunders Group".replace(/ /g,'-'); var newManu = "Saunders Group"; document.getElementById('manufacturer').innerHTML = newManu; //Thumbnail populate var storedisplayimage = "http://www.protherapysupplies.com/Saunders-Cervical-Traction-Device-with-Deluxe-Case6.jpg".replace('http', 'https'); var thumbnail1 = "/Saunders-Cervical-Traction-Device-with-Deluxe-Case1.jpg" || ''; var thumbnail2 = "/core/media/media.nl?id=8067362&c=671309&h=avgO3m_OGMJW6X_DVZMkarji7w-lJGqQSJIuLufVE0cTKpgq" || ''; var thumbnail3 = "/core/media/media.nl?id=8067363&c=671309&h=2B34F523vwwEOiFmHcnyr2gDUrFmm5l-J_20SJqWP1INd02x" || ''; var thumbnail4 = "/core/media/media.nl?id=8067364&c=671309&h=MnOsETOpB16SFtnqlYt-4Wh4qvi0eXb722Eh89BXKxA-eA0-" || ''; var thumbnail5 = "/core/media/media.nl?id=8067365&c=671309&h=uRvZ9cylKQAbx3PyHyRRMykfvNnbp3ahIRJ355vqwZw1M6jO" || ''; //Video Populate, Must be in Single Quotes due to value having HTML code var videoThumbnail = '' || ''; var thumbnailArray = [storedisplayimage,thumbnail1,thumbnail2,thumbnail3,thumbnail4,thumbnail5]; for (var i = 0; i < thumbnailArray.length; i++) { if (thumbnailArray[i] != "") { var populate = "

Saunders Home Cervical Neck Traction Device with Deluxe Case (20)

"; document.getElementById("thumbnails").innerHTML += populate; } } //If Video Exist, add Video if (videoThumbnail.length != 0) { var videoPopulate = "

Saunders Home Cervical Neck Traction Device with Deluxe Case (21)

"; document.getElementById("thumbnails").innerHTML += videoPopulate; //Attaches Event Listener to All Item Image Thumbnails //Once user clicks thumbnail after coming from video, the thumbnail will display var showImage = document.querySelectorAll('.showImage'); for (var show = 0; show < showImage.length;show++) { showImage[show].addEventListener("click", function() { document.getElementById("displaythumbnail").style.display = "block"; document.getElementById("videoExist").style.display="none"; }); } } //Thumbnail switch function changeImage(a) {document.getElementById("displaythumbnail").src=a;} //Video switch function changeVideo() { var video = document.getElementById("videoExist"); if (video.style.display == 'block' || video.style.display == '') { video.style.display="none"; document.getElementById("displaythumbnail").style.display="block"; } else { video.style.display="block"; document.getElementById("displaythumbnail").style.display="none"; } } //PTS SIZE CHART var sizeChart= "No"; if (sizeChart == 'Yes') { $('.SizeGuide').css({"display":"inline-block"}); } //Disclaimer var disclaimerTxt = "PRICE MATCH AVAILABLE - Chat Us"; if (disclaimerTxt != '') { $('#disclaimer').html(disclaimerTxt); $('#disclaimer').css({"border":"1px solid #ccc","padding":"5px","margin":"10px 0","color":"#AA1E00","font-size":"12px","font-weight":"bold"});if (disclaimerTxt == 'PRICE MATCH AVAILABLE - Chat Us') { $('#disclaimer').css({"display":"none"}); $('#disclaimer_link').css({"display":"block"}); $('#disclaimer_link').css({"border":"1px solid #ccc","padding":"5px","margin":"10px 0","color":"#AA1E00","font-size":"12px","font-weight":"bold","cursor":"pointer","text-decoration":"underline"}); }else{ $('#disclaimer_link').css({"display":"none"}); $('#disclaimer').html(disclaimerTxt); $('#disclaimer').css({"border":"1px solid #ccc","padding":"5px","margin":"10px 0","color":"#AA1E00","font-size":"12px","font-weight":"bold"});}} //Prescription Required var prescriptionRequired = "Yes"; if (prescriptionRequired == 'Yes') { $('#reqPresc').css({"display":"inline"}); } //Stamina Warning Required var staminaWarning = "No"; if (staminaWarning == 'Yes') { $('#reqStamina').css({"display":"block"}); }//Durable Required var durable= "No"; if (durable== 'Yes') { $('#reqDurable').css({"display":"block"}); } //Nontoxic badge var Nontoxic= "No"; if (Nontoxic== 'Yes') { $('#reqNontoxic').css({"display":"block"}); }//Hypoallergenic badge var Hypoallergenic= "No"; if (Hypoallergenic == 'Yes') { $('#reqHypo').css({"display":"block"}); } //FSA APPROVED var FSAapproved= "Yes"; if (FSAapproved == 'Yes') { $('#reqFSA').css({"display":"block"}); } //HSA APPROVED var HSAapproved= "Yes"; if (HSAapproved == 'Yes') { $('#reqHSA').css({"display":"block"}); } //FREE RETURN LABEL var FRL= "Yes"; if (FRL == 'Yes') { $('#reqFRL').css({"display":"block"}); } //NO RESTOCKING FEES var NRF = "Yes"; if (NRF == 'Yes') { $('#reqNRF').css({"display":"block"}); } //LIFETIME WARRANT var LW = "No"; if (LW == 'Yes') { $('#reqLW').css({"display":"block"}); } //60 day return var DayReturn = "Yes"; if (DayReturn == 'Yes') { $('#reqDayReturn').css({"display":"block"}); } //Extended Warranty var ExtendedWarranty = "No"; if (ExtendedWarranty == 'Yes') { $('#reqEW').css({"display":"block"}); } //White Glove Delivery var WGD = "No"; if (WGD== 'Yes') { $('#reqWGD').css({"display":"block"}); } //90 days free trial var DFT = "No"; if (DFT== 'Yes') { $('#reqDFT').css({"display":"block"}); } //made in USA var USA = "No"; if (USA == 'Yes') { $('#reqUSA').css({"display":"block"}); }var FSBadge= "No"; if (FSBadge== 'Yes') { $('#expressShippingOverlay').css({"display":"block"}); } // Shipping and Handling Functionality var handlingtime = "1 business day" || "5~6 business days"; var Day2nd = "No"; var shippingMessage = document.getElementById("shippingMessage"); var isdropshipitem = "No"; var clearanceItem = ""; var leadTime = "1" || 1; var outofStock = $('div#outStock').find('span').text(); var extendedBO = "No"; //alert('leadTime - ' + leadTime); var checkParent = ""; //returns PARENT if item is matrix var mustShipToday = "No"; var date = new Date(); var formatHour = date.toLocaleTimeString('en-US', {hour: 'numeric'}); var getHour = formatHour.split(' ')[0]; var formatMinute = date.toLocaleTimeString('en-US', {minute: 'numeric'}); var getMinute = formatMinute.split(' ')[0]; var formatSecond = date.toLocaleTimeString('en-US', {second: 'numeric'}); var getSecond = formatSecond.split(' ')[0]; var formatMonth = date.toLocaleTimeString('en-US', {month: 'short'}); var getMonth = formatMonth.split(',')[0]; var formatYear = date.toLocaleTimeString('en-US', {year: 'numeric'}); var getYear = formatYear.split(',')[0]; var formatTodayDate = date.toLocaleDateString('en-US', {date: 'numeric'}); var getTodayDate = formatTodayDate.split('/')[1]; //Get the day to. Shows the full day text example: Monday, Tuesday var formatDay = date.toLocaleTimeString('en-US', {weekday: 'long'}); var getDay = formatDay.split(' ')[0]; //If Location Available is less than 0 AND not dropship, then display lead time message. //ONLY SINGLE ITEMS FOR NOW, SO NEED TO DO A CHECK IF ITS SINGLE ITEM if (!checkParent) { var locationAvailiable = "583"; if (locationAvailiable < 1 && isdropshipitem == 'No') { if (extendedBO == 'Yes') { shippingMessage.innerHTML = ''; } else if (handlingtime== '0' && leadTime == '0') { shippingMessage.innerHTML = "Out of Stock"; }else { shippingMessage.innerHTML = "Ships within " + handlingtime; } } //Item is dropship else if (isdropshipitem == 'Yes') { shippingMessage.innerHTML = "Ships within " + handlingtime; } //has Quantity else if(locationAvailiable > 0) {if(handlingtime == "TODAY (weekend exceptions)"){ var ESTFormathour = new Date().toLocaleTimeString('en-US', {hour12: false}) var ESThour = ESTFormathour.split(':')[0]; var currentDate = getMonth+' '+getDay+', '+getYear; var currentTime = ESThour+':'+getMinute+':'+getSecond; var endTime = "16:00:00"; var startDate = new Date(currentDate+' '+currentTime); var endDate = new Date(currentDate+' '+endTime); var timeDiff = Math.abs(startDate.getTime() - endDate.getTime());if(getHour > 12){ var hh = Math.floor(timeDiff / 1000 / 60 / 60); hh = ('12' + hh).slice(-2) timeDiff -= hh * 1000 * 60 * 60; var mm = Math.floor(timeDiff / 1000 / 60); mm = ('0' + mm).slice(-2) timeDiff -= mm * 1000 * 60; var ss = Math.floor(timeDiff / 1000); ss = ('0' + ss).slice(-2)}else{ var hh = Math.floor(timeDiff / 1000 / 60 / 60); hh = ('0' + hh).slice(-2) timeDiff -= hh * 1000 * 60 * 60; var mm = Math.floor(timeDiff / 1000 / 60); mm = ('0' + mm).slice(-2) timeDiff -= mm * 1000 * 60; var ss = Math.floor(timeDiff / 1000); ss = ('0' + ss).slice(-2)} if(hh >= 4 && hh <= 16 ) { var getMonth = new Array(); getMonth[0] = "January"; getMonth[1] = "February"; getMonth[2] = "March"; getMonth[3] = "April"; getMonth[4] = "May"; getMonth[5] = "June"; getMonth[6] = "July"; getMonth[7] = "August"; getMonth[8] = "September"; getMonth[9] = "October"; getMonth[10] = "November"; getMonth[11] = "December"; var getMonth = getMonth[date.getMonth()]; shippingMessage.innerHTML = "Fastest delivery: "+getDay+", "+getMonth+" "+getTodayDate; shippingMessage1.innerHTML = "SHIPPING TODAY Order within "+hh+" hrs and "+mm+" mins"+ "
"+"Details"; } else { shippingMessage.innerHTML = "Order will ship tomorrow"; }}else if (locationAvailiable > 0 && handlingtime== '0' && leadTime == '0') { shippingMessage.innerHTML = "Order will ship within 24 Hours"; }else//If 2nd Day Shipping, Display Free 2nd Day Express if (Day2nd == 'Yes') { shippingMessage.innerHTML = "Free 2nd Day Express Shipping"; $('#expressShippingOverlay').css({"display":"block"}); } else { if (mustShipToday == 'Yes') { //If Order comes in before 2PM EST and not weekend, then show order will ship next business day if(getHour < 2 && getDay != 'Saturday' && getDay != 'Sunday') { shippingMessage.innerHTML = "Order usually ships by today"; } else { shippingMessage.innerHTML = "Order will ship next business day"; } } else { shippingMessage.innerHTML = "Order will ship within 24 Hours"; } } } } else { //MATRX ITEMS if(isdropshipitem == 'Yes') { shippingMessage.innerHTML = "Ships within " + handlingtime; } else if (extendedBO == 'Yes') { shippingMessage.innerHTML == ''; } else if (leadTime == 1) { //If Order comes in before 2PM EST and not weekend, then show order will ship next business day if(mustShipToday == 'Yes') { //If Order comes in before 2PM EST and not weekend, then show order will ship next business day if(getHour < 2 && getDay != 'Saturday' && getDay != 'Sunday') { shippingMessage.innerHTML = "Order usually ships by today"; } else { shippingMessage.innerHTML = "Order will ship next business day"; } } else { shippingMessage.innerHTML = "Order will ship within 24 Hours"; } } else { shippingMessage.innerHTML = "Item will ship after " + leadTime + " business days."; } } //Hide BadgeContainer Div when there is no badges if ($("#badgeContainer .badgeWidth").length == 0) { if (prescriptionRequired == 'No' && staminaWarning == 'No') { document.getElementById("badgeContainer").style.height="0" } } // Display Badges under the handling time var freeReturnLabel = "Yes" //badge = 0 var noRestockingFee = "Yes" //badge = 1 var lifetimeWarranty = "No" //badge = 2 var return60day = "Yes" //badge = 3 var extendedwarranty = "No" //badge = 4 var whiteglovedelivery = "No" //badge = 5 var freetrial90day = "No" //badge = 6 var madeUSA = "No" //badge = 7//Durable Requiredvar durableBadge= "No";//Nontoxic badgevar nontoxicBadge= "No";//Hypoallergenic badgevar hypoallergenicBadge = "No"; var badgeArray = [freeReturnLabel,noRestockingFee,lifetimeWarranty,return60day,extendedwarranty,whiteglovedelivery,freetrial90day,madeUSA,durableBadge,nontoxicBadge,hypoallergenicBadge]; //Creates the badge and hover elements for (var badgeCreate = 0; badgeCreate < badgeArray.length; badgeCreate++) { if (badgeArray[badgeCreate] == "Yes") { var badgeContainer = document.getElementById('badgeContainer').style.height="56px"; } } //Related Items var relHTML = ""; var relImgs = document.getElementById("relTbl2").getElementsByClassName("relImg"); var relRatings = document.getElementsByClassName("relatedItemRating"); var relH3s = document.getElementById("relTbl2").getElementsByTagName("h3"); var relPrice = document.getElementById("relTbl2").getElementsByTagName("p"); var startRel = 0; var endRel = relImgs.length -1; if (relImgs.length > 0) { // item has related items for (var i = startRel; i <= endRel; i++) { relHTML = relHTML + "

"; relHTML = relHTML + "" +relImgs[i].innerHTML+ ""; relHTML = relHTML + "

" + relRatings[i].innerHTML + "

"; relHTML = relHTML + "

" +relH3s[i].innerHTML+ "

"; relHTML = relHTML + "

" +relPrice[i].innerHTML+ "

"; relHTML = relHTML + "

"; } document.getElementById("relItmsDiv2").innerHTML = relHTML; document.getElementById("relItmsDiv2").className = "show"; document.getElementById("relatedTitle").style.display = "block"; } else {document.getElementById("descriptionContainer").style.margin = "19px 0px 0px 0px"} // If a feature is empty, then its not displayed for (var fcounter = 1; fcounter <= 10; fcounter++) { var featuresInfo = document.getElementById("features" + fcounter); if (featuresInfo.innerHTML == "") { featuresInfo.style.display="none"; } } // If there is no main description in store tab, display the detailed in custom tab var storeDetail = document.getElementById("storeDetail"); var hideDetails = document.getElementById("hideDetails"); var mainDescription = document.getElementById("mainDescription"); if (mainDescription.innerHTML.length == 0) { storeDetail.style.display = 'block'; hideDetails.style.display = 'none'; } //Non returnable item var nonReturnable = "No" if(nonReturnable == "Yes") { document.getElementById("nonReturnableMsg").style.display='block'; } // Satisfaction Guaranteed Item var satisGuarantee = "Yes" if(satisGuarantee == "Yes") { document.getElementById("satisGuaranteeMsg").style.display='block'; } // If Item is Insurance Button Show, Display the Health Button Form var isHealthForm = "Yes" if(isHealthForm == "Yes") { $('#healthButton').css({"display":"inline-block"}); $('#healthButton').css({"width":"50%"}); $('#healthButton').css({"margin-top":"0px"}); $('#healthInsuranceOverlay').css({"display":"inline-block"});$('#healthButton1').css({"display":"inline-block"}); $('#healthButton1').css({"width":"100%"}); $('#healthButton1').css({"margin-top":"0px"}); } else { $('#purchaseOrders').css({"width":"100%"}); $('#purchaseOrders').css({"padding":"10px"}); $('#purchaseOrders').css({"font-size":"16px"}); } // If Item is Billable, Hide Price and Cart Information var isBillable = "No" var displayName = "Saunders Cervical Traction Device with Deluxe Case (E0849)"; var cleanDisplayName = displayName.replace("'", ""); //Display New and Used Price var openboxURL = "" var openboxPrice = "" if (openboxURL != "" && openboxPrice != "") { var openboxUsed = "Open Box Price: $"+openboxPrice+""; document.getElementById("itmPrcUsed").innerHTML = openboxUsed; } // end if //Adds Login for Price if ("No" == "Yes" && cID == "") { $('#itemPrc').html('LOGIN TO VIEW PRICE'); $('#itmInfoBox #itmAddToCart').css({"display":"none"}) } //Hide Tier if customer not logged in if ("No" == "Yes" && cID == "") { var listingID = "249297" // if(listingID == "251851" || listingID == "11700") { var tierOverridePrice = "$379.00"; $('#itemPrc').html('

Price:'+tierOverridePrice+'
Click to view tier pricing

'); // } } console.log(cID); function showPricing() { document.getElementById('itemPrc').innerHTML = "

Price:$379.00

"; // document.getElementById('priceHidePop').style.display='block'; // document.getElementById('fade').style.display='block'; } function monthlyPaymentButton() { //price1 is if itemprice+id exist. //price2 is if itmPriceSpan only exist. var getPrice1 = document.getElementById('itemprice'+ 249297); //console.log(getPrice1); var getPrice2 = document.getElementById('itmPriceSpan'); //console.log(getPrice2); if (getPrice1 != null) { var formattedPrice = getPrice1.innerHTML.replace('$', ''); } else { var formattedPrice = getPrice2.innerHTML.replace('$', ''); } var itemFeatures = ''; var itemSpecs = document.querySelectorAll('option:checked').length-1; for (var getSpecs = 0; getSpecs < itemSpecs; getSpecs++) { itemFeatures = itemFeatures + document.querySelectorAll('option:checked')[getSpecs].innerHTML + '-'; console.log(itemFeatures); } window.open('https://www.protherapysupplies.com/monthlyCalculator.html?displayname=249297-Saunders Cervical Traction Device with Deluxe Case (E0849)-'+itemFeatures+'&itemprice='+formattedPrice,'_blank'); } function checkRegexp(o, regexp) { if (!(regexp.test(o.val()))) { o.addClass("ui-state-error"); return false; } else { return true; } } var emailRegex = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/; var modal = document.getElementById('dialog'); window.onclick = function(event) { if (event.target == modal) { modal.style.display = "none"; } } function displayLog() { modal.style.display = "block"; } function reloadPage( response ) { url = window.location.href; url = url.replace( "#", "" ); url = url.substring( 0, url.indexOf("?") ); url += response; window.location.href = url; } function signin() { email = $("#email"); password = $("#password"); if (!checkRegexp(email, emailRegex)) { alert("email addr is invalid"); return; } var obj = new Object(); obj.email = email.val(); obj.password = password.val(); $(".modal-content button").replaceWith('Saunders Home Cervical Neck Traction Device with Deluxe Case (22)'); $.ajax({ context: this, contentType: "application/json; charset=utf-8", url: "/app/site/hosting/scriptlet.nl?script=304&deploy=1&compid=671309&h=52e5673d12147b4b880a", data: { "email": obj.email, "password": obj.password }, success: function (response) { if (response) { var json_data = JSON.parse(response); if (typeof(Storage) !== "undefined") { localStorage.setItem("customer_name", json_data.name); localStorage.setItem("customer_email", json_data.email); } if (g_reviewDetailIdx) { if (g_comment != "") { // Comment Post var url = "/app/site/hosting/scriptlet.nl?script=375&deploy=1"; $.post(url, {reviewDetailIdx: g_reviewDetailIdx, displayName:json_data.name, comment: g_comment}, function(result) { reloadPage(json_data.url); }); } else { // Helpful Post var url = "/app/site/hosting/scriptlet.nl?script=373&deploy=1"; $.post(url, {reviewDetailIdx: g_reviewDetailIdx, accountEmail: customer_email}, function(result) { reloadPage(json_data.url); }); } } else { reloadPage(json_data.url); } } else { alert("Please try again with valid credential"); $(".modal-content img").replaceWith(''); } } }); } $( document ).ready(function() { $("#contDiv").show(); });

Saunders Cervical Traction Device with Deluxe Case (E0849)

Price:$379.00

Item #:199594

Use code "SAUNDERS2022" for 7% OFF

Lead Time Details

Saunders Home Cervical Neck Traction Device with Deluxe Case (6)

Features

  • Saunders Cervical Traction Device requires no assembly!
  • This Saunders Cervical Home traction unit offers up to 50 pounds of force.
  • Operates from the supine position.
  • It has 3 different setting angles to choose from.
  • This Saunders traction equipment includes a gauge for accurate force readings.
  • Deluxe travel carrying case is included.

Cervical traction is a therapy that is used to treat neck pain. The goal of this therapy is to stretch the muscles and soft tissues in the neck. This is achieved by gently pulling on the head while the individual is lying down. The goal of cervical traction is to relieve pain, muscle tension, and stiffness in the neck.Cervical traction feels simple to perform and usually, it works effectively to provide pain relief. People who benefit most from cervical traction typically notice an instantaneous change in neck pain after only a few treatments. Some of the most common positives include a reduction of discomfort, a reduced amount of stiffness, and a minimized amount of muscle tension.

Neck Traction for home use: safe and effective

  • Scientific evidence has proven the Saunders Cervical Traction unit to be more effective than surgery for some patients.
  • Traction forces are directed at the back of the head to relieve pressure on the TMJ.
  • A user-friendly pressure gauge allows you to control the operation of the device at all times
  • The blow-off valve controls the amount of pressure that can be applied

The Saunders Cervical Traction Device provides effective therapy

  • An affordable medical option for continuous care
  • The equipment's innovative design mirrors medical practice and enhances consistency in treatment methods
  • The doctor can select the best treatment strategy for the patient using various available methods
  • An extremely safe pneumatic system is used to ensure precise force distribution

Saunders Neck Traction is easy to operate

  • A therapy method that substantially improves patient evaluation and patient satisfaction.
  • The self-adjusting neck wedges in the Saunders Cervical Home Traction ensure a snug fit.
  • The pump's design incorporates a "click in place" mechanism.
  • Setting up a home recovery system can be performed without a lot of additional help through a straightforward setup process

What are the advantages of using a Saunders cervical traction device?

  • Cervical traction devices are neck supports that are used to apply traction to the cervical spine. There are many different types of cervical traction devices, but the Saunders cervical traction device is one of the most popular. The Saunders cervical traction device is a simple, lightweight device that can be easily adjusted to provide the desired amount of traction. The device works by gently pulling on the head and neck, which helps to decompress the discs and vertebrae. There are many advantages to using this device, including the fact that it is easy to use, it is comfortable, and it is affordable. Additionally, the Saunders cervical traction device is clinically proven to be effective in treating neck pain.

How should you use the Saunders Cervical Traction Unit?

1. Set it on top of a carpeted or flat surface. Check to ensure the bottom of the unit does not pinch the air hose. Make sure you have sufficient room to lie down comfortably.
2. Separate the wedges by rotating one knob on each wedge so the Saunders Cervical Traction device's neck strap fits between the wedges. You may need to adjust the strap's settings after you lie down on the device. Note: Over-rotating adjustment knobs can cause serious damage to the internal gear.
3. Loosen the adjustable head strap.
4. Ensure the device is in the proper starting position - the headrest should be touching the base. If not, turn the thrust arms to the Release position.
5. Use your healthcare provider's recommendation to set the Saunders Cervical Traction profile by turning the angles on both sides of the Angle Adjuster, and then pressing until it locks into place.
6. Position the pump where you can easily reach it during treatment.
7. Set a timer for the length of treatment. You are ready to use the Saunders Cervical Traction device now.

  • Angle Adjuster Positions:.
  • Top = 15 degrees.Middle = 20 degrees.Bottom = 25 degrees.

Note: If your healthcare provider does not include the angle of measurement, keep the Angle Adjuster in its top position..

Applying Traction with Saunders Cervical Home Traction Device

1. Lie on your back, positioning your body so the neck wedge cradles the middle of your neck or your preferred headstone and your head nestles on the headrest. The neck wedges should rest between the tips of your ears and your shoulders.
2. Turn on the knobs on either of the adjusting poles until the front edges have firmly pressed against both sides of the neck.
3. As you settle into this position, the neck blocks may occasionally self-adjust to accommodate your body's contour. You may also manually rotate the blocks as required to establish a stable fit.
4. Secure a strap just above your brow line to keep your head back. The strap should fasten securely.
5. Use the pump to apply traction.

What does the Saunders Traction Device include?

  • Saunders Cervical Hand Pump
  • Angle Adjuster
  • Headstrap and Pads
  • Portable Carrying Case
  • User’s Manual

How to clean Saunders Neck Traction Unit?

  • All surfaces of the Saunders Cervical Traction Device should be cleaned with a light detergent or disinfectant, without submerging the unit in water. If the device changes hands, it is important to thoroughly disinfect all surfaces and to focus on those areas that come into direct contact with the body. It is recommended to always use a new headrest.

Saunders Home Cervical Neck Traction Device with Deluxe Case (12)

Easy-to-use:
Patented pump design incorporates a
"click-in-place" mechanism for pumping, sustaining
and releasing the traction.

Saunders Home Cervical Neck Traction Device with Deluxe Case (13)

Effective:
3 adjustable angles ensure results
within days of use.

Saunders Home Cervical Neck Traction Device with Deluxe Case (14)

Comfortable:
Self-adjusting neck wedge and head strap
ensure a perfect fit.

Saunders Home Cervical Neck Traction Device with Deluxe Case (15)

Portable:
No assembly required due to the
device’s integrated design.

Customer Questions

Have a question about this item? Want to get insights from others who bought it? Ask here!
You'll be notified by email when someone's answered your question

300/300 characters

Ask

Cancel

Oops! There was an issue submitting your question. We apologize for this inconvenience.

Please Log In or Create An Account to post a question.

Thanks for the question! We're on it! We just need to do a quick review to make sure it adheres to ourcontent guidelines. If your question is accepted, we'll email you!

Customer Reviews

$379.00

Forgot Password?Close

New to PTS? Sign Up Here

Delivery Guarantees

We offer guaranteed delivery on certain delivery speeds and select products. When guaranteed delivery is available on an order, we'll state this on the checkout page, with the associated delivery date and cost. If we provide a guaranteed delivery date and a delivery attempt isn't made by this date, we'll refund any shipping fees associated with that order.


The order within countdown timer provides the window of time in which you must place the order to receive your delivery by the date shown. The delivery day may become unavailable within that timeframe due to changes in inventory or delivery capacity before you place your order.

See our Guaranteed Delivery Terms and Conditions for more details.

'; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; if ("bestAnswer" in result) { quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; } if (result.answerAllCount > 1) { quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; } quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += '
'; quetsionHtml += '

QUESTION

'; quetsionHtml += '

"' + result.question + '"

'; quetsionHtml += '
'; quetsionHtml += '

NEWEST ANSWER

'; quetsionHtml += '

' + result.bestAnswer.answer; quetsionHtml += '

' + result.bestAnswer.answererName + ' on ' + result.bestAnswer.answerDate + '

'; quetsionHtml += '

'; quetsionHtml += ''+ result.bestAnswer.helpfulCount + ''; quetsionHtml += ' people found this answer helpful. '; quetsionHtml += ''; quetsionHtml += 'Did you?'; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += '

'; quetsionHtml += '

'; quetsionHtml += '
'; quetsionHtml += ''; quetsionHtml += 'See All Answers (' + (result.answerAllCount - 1) + ')'; quetsionHtml += ''; quetsionHtml += '
'; quetsionHtml += ''; quetsionHtml += '
'; quetsionHtml += ''; quetsionHtml += ''; quetsionHtml += '300/300 characters'; quetsionHtml += ''; quetsionHtml += '

Submit

'; quetsionHtml += '

Cancel

'; quetsionHtml += '

Oops! There was an issue submitting your answer. We apologize for this inconvenience.

'; quetsionHtml += '

'; quetsionHtml += 'Please Log In or Create An Account to post a question.'; quetsionHtml += '

'; quetsionHtml += '

'; quetsionHtml += 'Thanks for answering this question! You\'re the best! We just need to do a quick review to make sure it adheres to our content guidelines.'; quetsionHtml += '

'; quetsionHtml += '
'; quetsionHtml += '
Saunders Home Cervical Neck Traction Device with Deluxe Case (2024)
Top Articles
Latest Posts
Recommended Articles
Article information

Author: Arielle Torp

Last Updated:

Views: 5347

Rating: 4 / 5 (61 voted)

Reviews: 92% of readers found this page helpful

Author information

Name: Arielle Torp

Birthday: 1997-09-20

Address: 87313 Erdman Vista, North Dustinborough, WA 37563

Phone: +97216742823598

Job: Central Technology Officer

Hobby: Taekwondo, Macrame, Foreign language learning, Kite flying, Cooking, Skiing, Computer programming

Introduction: My name is Arielle Torp, I am a comfortable, kind, zealous, lovely, jolly, colorful, adventurous person who loves writing and wants to share my knowledge and understanding with you.