CINXE.COM
Home Page | Quackwatch
<!DOCTYPE html> <html class="no-js" lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="profile" href="https://gmpg.org/xfn/11" /> <link rel="pingback" href="https://quackwatch.org/xmlrpc.php" /> <link rel="stylesheet" href="https://use.typekit.net/lmm6ycy.css"> <link rel="apple-touch-icon" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-60x60.png"> <link rel="apple-touch-icon" sizes="60x60" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-76x76.png"> <link rel="apple-touch-icon" sizes="114x114" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-iphone-retina-120x120.png"> <link rel="apple-touch-icon" sizes="144x144" href="https://cdn.centerforinquiry.org/uploads/apple-icons/centerforinquiry/touch-icon-ipad-retina-152x152.png"> <!--wordpress head--> <title>Home Page | Quackwatch</title> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//centerforinquiry.org' /> <link rel='dns-prefetch' href='//www.googletagmanager.com' /> <link rel="alternate" type="application/rss+xml" title="Quackwatch » Feed" href="https://quackwatch.org/feed/" /> <link rel="alternate" type="application/rss+xml" title="Quackwatch » Comments Feed" href="https://quackwatch.org/comments/feed/" /> <link rel="alternate" type="application/rss+xml" title="Quackwatch » Home Page Comments Feed" href="https://quackwatch.org/quackwatch/feed/" /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/quackwatch.org\/wp-includes\/js\/wp-emoji.js?ver=6.6.2","twemoji":"https:\/\/quackwatch.org\/wp-includes\/js\/twemoji.js?ver=6.6.2"}}; /** * @output wp-includes/js/wp-emoji-loader.js */ /** * Emoji Settings as exported in PHP via _print_emoji_detection_script(). * @typedef WPEmojiSettings * @type {object} * @property {?object} source * @property {?string} source.concatemoji * @property {?string} source.twemoji * @property {?string} source.wpemoji * @property {?boolean} DOMReady * @property {?Function} readyCallback */ /** * Support tests. * @typedef SupportTests * @type {object} * @property {?boolean} flag * @property {?boolean} emoji */ /** * IIFE to detect emoji support and load Twemoji if needed. * * @param {Window} window * @param {Document} document * @param {WPEmojiSettings} settings */ ( function wpEmojiLoader( window, document, settings ) { if ( typeof Promise === 'undefined' ) { return; } var sessionStorageKey = 'wpEmojiSettingsSupports'; var tests = [ 'flag', 'emoji' ]; /** * Checks whether the browser supports offloading to a Worker. * * @since 6.3.0 * * @private * * @returns {boolean} */ function supportsWorkerOffloading() { return ( typeof Worker !== 'undefined' && typeof OffscreenCanvas !== 'undefined' && typeof URL !== 'undefined' && URL.createObjectURL && typeof Blob !== 'undefined' ); } /** * @typedef SessionSupportTests * @type {object} * @property {number} timestamp * @property {SupportTests} supportTests */ /** * Get support tests from session. * * @since 6.3.0 * * @private * * @returns {?SupportTests} Support tests, or null if not set or older than 1 week. */ function getSessionSupportTests() { try { /** @type {SessionSupportTests} */ var item = JSON.parse( sessionStorage.getItem( sessionStorageKey ) ); if ( typeof item === 'object' && typeof item.timestamp === 'number' && new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds. typeof item.supportTests === 'object' ) { return item.supportTests; } } catch ( e ) {} return null; } /** * Persist the supports in session storage. * * @since 6.3.0 * * @private * * @param {SupportTests} supportTests Support tests. */ function setSessionSupportTests( supportTests ) { try { /** @type {SessionSupportTests} */ var item = { supportTests: supportTests, timestamp: new Date().valueOf() }; sessionStorage.setItem( sessionStorageKey, JSON.stringify( item ) ); } catch ( e ) {} } /** * Checks if two sets of Emoji characters render the same visually. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.9.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} set1 Set of Emoji to test. * @param {string} set2 Set of Emoji to test. * * @return {boolean} True if the two sets render the same. */ function emojiSetsRenderIdentically( context, set1, set2 ) { // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set1, 0, 0 ); var rendered1 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); // Cleanup from previous test. context.clearRect( 0, 0, context.canvas.width, context.canvas.height ); context.fillText( set2, 0, 0 ); var rendered2 = new Uint32Array( context.getImageData( 0, 0, context.canvas.width, context.canvas.height ).data ); return rendered1.every( function ( rendered2Data, index ) { return rendered2Data === rendered2[ index ]; } ); } /** * Determines if the browser properly renders Emoji that Twemoji can supplement. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 4.2.0 * * @private * * @param {CanvasRenderingContext2D} context 2D Context. * @param {string} type Whether to test for support of "flag" or "emoji". * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {boolean} True if the browser can render emoji, false if it cannot. */ function browserSupportsEmoji( context, type, emojiSetsRenderIdentically ) { var isIdentical; switch ( type ) { case 'flag': /* * Test for Transgender flag compatibility. Added in Unicode 13. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (white flag emoji + transgender symbol). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width joiner sequence '\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for UN flag compatibility. This is the least supported of the letter locale flags, * so gives us an easy test for full support. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly ([U] + [N]). */ isIdentical = emojiSetsRenderIdentically( context, '\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points '\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space ); if ( isIdentical ) { return false; } /* * Test for English flag compatibility. England is a country in the United Kingdom, it * does not have a two letter locale code but rather a five letter sub-division code. * * To test for support, we try to render it, and compare the rendering to how it would look if * the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]). */ isIdentical = emojiSetsRenderIdentically( context, // as the flag sequence '\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F', // with each code point separated by a zero-width space '\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F' ); return ! isIdentical; case 'emoji': /* * Four and twenty blackbirds baked in a pie. * * To test for Emoji 15.0 support, try to render a new emoji: Blackbird. * * The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square., * * 0x1F426 (\uD83D\uDC26) == Bird * 0x200D == Zero-Width Joiner (ZWJ) that links the code points for the new emoji or * 0x200B == Zero-Width Space (ZWS) that is rendered for clients not supporting the new emoji. * 0x2B1B == Large Black Square * * When updating this test for future Emoji releases, ensure that individual emoji that make up the * sequence come from older emoji standards. */ isIdentical = emojiSetsRenderIdentically( context, '\uD83D\uDC26\u200D\u2B1B', // as the zero-width joiner sequence '\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space ); return ! isIdentical; } return false; } /** * Checks emoji support tests. * * This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing * scope. Everything must be passed by parameters. * * @since 6.3.0 * * @private * * @param {string[]} tests Tests. * @param {Function} browserSupportsEmoji Reference to browserSupportsEmoji function, needed due to minification. * @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification. * * @return {SupportTests} Support tests. */ function testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ) { var canvas; if ( typeof WorkerGlobalScope !== 'undefined' && self instanceof WorkerGlobalScope ) { canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement. } else { canvas = document.createElement( 'canvas' ); } var context = canvas.getContext( '2d', { willReadFrequently: true } ); /* * Chrome on OS X added native emoji rendering in M41. Unfortunately, * it doesn't work when the font is bolder than 500 weight. So, we * check for bold rendering support to avoid invisible emoji in Chrome. */ context.textBaseline = 'top'; context.font = '600 32px Arial'; var supports = {}; tests.forEach( function ( test ) { supports[ test ] = browserSupportsEmoji( context, test, emojiSetsRenderIdentically ); } ); return supports; } /** * Adds a script to the head of the document. * * @ignore * * @since 4.2.0 * * @param {string} src The url where the script is located. * * @return {void} */ function addScript( src ) { var script = document.createElement( 'script' ); script.src = src; script.defer = true; document.head.appendChild( script ); } settings.supports = { everything: true, everythingExceptFlag: true }; // Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired. var domReadyPromise = new Promise( function ( resolve ) { document.addEventListener( 'DOMContentLoaded', resolve, { once: true } ); } ); // Obtain the emoji support from the browser, asynchronously when possible. new Promise( function ( resolve ) { var supportTests = getSessionSupportTests(); if ( supportTests ) { resolve( supportTests ); return; } if ( supportsWorkerOffloading() ) { try { // Note that the functions are being passed as arguments due to minification. var workerScript = 'postMessage(' + testEmojiSupports.toString() + '(' + [ JSON.stringify( tests ), browserSupportsEmoji.toString(), emojiSetsRenderIdentically.toString() ].join( ',' ) + '));'; var blob = new Blob( [ workerScript ], { type: 'text/javascript' } ); var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojiSupports' } ); worker.onmessage = function ( event ) { supportTests = event.data; setSessionSupportTests( supportTests ); worker.terminate(); resolve( supportTests ); }; return; } catch ( e ) {} } supportTests = testEmojiSupports( tests, browserSupportsEmoji, emojiSetsRenderIdentically ); setSessionSupportTests( supportTests ); resolve( supportTests ); } ) // Once the browser emoji support has been obtained from the session, finalize the settings. .then( function ( supportTests ) { /* * Tests the browser support for flag emojis and other emojis, and adjusts the * support settings accordingly. */ for ( var test in supportTests ) { settings.supports[ test ] = supportTests[ test ]; settings.supports.everything = settings.supports.everything && settings.supports[ test ]; if ( 'flag' !== test ) { settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ test ]; } } settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag; // Sets DOMReady to false and assigns a ready function to settings. settings.DOMReady = false; settings.readyCallback = function () { settings.DOMReady = true; }; } ) .then( function () { return domReadyPromise; } ) .then( function () { // When the browser can not render everything we need to load a polyfill. if ( ! settings.supports.everything ) { settings.readyCallback(); var src = settings.source || {}; if ( src.concatemoji ) { addScript( src.concatemoji ); } else if ( src.wpemoji && src.twemoji ) { addScript( src.twemoji ); addScript( src.wpemoji ); } } } ); } )( window, document, window._wpemojiSettings ); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://quackwatch.org/wp-includes/css/dist/block-library/style.css?ver=6.6.2' type='text/css' media='all' /> <style id='wp-block-library-theme-inline-css' type='text/css'> .wp-block-audio :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-audio :where(figcaption){ color:#ffffffa6; } .wp-block-audio{ margin:0 0 1em; } .wp-block-code{ border:1px solid #ccc; border-radius:4px; font-family:Menlo,Consolas,monaco,monospace; padding:.8em 1em; } .wp-block-embed :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-embed :where(figcaption){ color:#ffffffa6; } .wp-block-embed{ margin:0 0 1em; } .blocks-gallery-caption{ color:#555; font-size:13px; text-align:center; } .is-dark-theme .blocks-gallery-caption{ color:#ffffffa6; } :root :where(.wp-block-image figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme :root :where(.wp-block-image figcaption){ color:#ffffffa6; } .wp-block-image{ margin:0 0 1em; } .wp-block-pullquote{ border-bottom:4px solid; border-top:4px solid; color:currentColor; margin-bottom:1.75em; } .wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{ color:currentColor; font-size:.8125em; font-style:normal; text-transform:uppercase; } .wp-block-quote{ border-left:.25em solid; margin:0 0 1.75em; padding-left:1em; } .wp-block-quote cite,.wp-block-quote footer{ color:currentColor; font-size:.8125em; font-style:normal; position:relative; } .wp-block-quote.has-text-align-right{ border-left:none; border-right:.25em solid; padding-left:0; padding-right:1em; } .wp-block-quote.has-text-align-center{ border:none; padding-left:0; } .wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{ border:none; } .wp-block-search .wp-block-search__label{ font-weight:700; } .wp-block-search__button{ border:1px solid #ccc; padding:.375em .625em; } :where(.wp-block-group.has-background){ padding:1.25em 2.375em; } .wp-block-separator.has-css-opacity{ opacity:.4; } .wp-block-separator{ border:none; border-bottom:2px solid; margin-left:auto; margin-right:auto; } .wp-block-separator.has-alpha-channel-opacity{ opacity:1; } .wp-block-separator:not(.is-style-wide):not(.is-style-dots){ width:100px; } .wp-block-separator.has-background:not(.is-style-dots){ border-bottom:none; height:1px; } .wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){ height:2px; } .wp-block-table{ margin:0 0 1em; } .wp-block-table td,.wp-block-table th{ word-break:normal; } .wp-block-table :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-table :where(figcaption){ color:#ffffffa6; } .wp-block-video :where(figcaption){ color:#555; font-size:13px; text-align:center; } .is-dark-theme .wp-block-video :where(figcaption){ color:#ffffffa6; } .wp-block-video{ margin:0 0 1em; } :root :where(.wp-block-template-part.has-background){ margin-bottom:0; margin-top:0; padding:1.25em 2.375em; } </style> <style id='pdfemb-pdf-embedder-viewer-style-inline-css' type='text/css'> .wp-block-pdfemb-pdf-embedder-viewer{max-width:none} </style> <link rel='stylesheet' id='awsm-ead-public-css' href='https://quackwatch.org/wp-content/plugins/embed-any-document/css/embed-public.min.css?ver=2.7.4' type='text/css' media='all' /> <link rel='stylesheet' id='jsforwphowto-blocks-css-css' href='https://quackwatch.org/wp-content/plugins/how-to-gutenberg-plugin-master/assets/css/blocks.style.css?ver=1660139606' type='text/css' media='all' /> <style id='classic-theme-styles-inline-css' type='text/css'> /** * These rules are needed for backwards compatibility. * They should match the button element rules in the base theme.json file. */ .wp-block-button__link { color: #ffffff; background-color: #32373c; border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */ /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */ box-shadow: none; text-decoration: none; /* The extra 2px are added to size solids the same as the outline versions.*/ padding: calc(0.667em + 2px) calc(1.333em + 2px); font-size: 1.125em; } .wp-block-file__button { background: #32373c; color: #ffffff; text-decoration: none; } </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--cfi-blue: #084d93;--wp--preset--color--cfi-orange: #ea5213;--wp--preset--color--cfi-gray: #dadada;--wp--preset--color--cfi-black: #333333;--wp--preset--color--cfi-tan: #dedbc3;--wp--preset--color--rdf-blue: #1f2b59;--wp--preset--color--csh-blue: #26a4dd;--wp--preset--color--csh-purple: #414a9c;--wp--preset--color--csi-green: #379944;--wp--preset--color--cfi-ig-blue: #4198f0;--wp--preset--color--poi-blue: #14325a;--wp--preset--color--poi-gold: #be9e50;--wp--preset--color--tp-orange: #c64417;--wp--preset--color--sr-red: #741e23;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='gutenberg-color-style-css' href='https://quackwatch.org/wp-content/plugins/cfi-colors/includes/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='ub-extension-style-css-css' href='https://quackwatch.org/wp-content/plugins/ultimate-blocks/src/extensions/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='search-filter-plugin-styles-css' href='https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/css/search-filter.min.css?ver=2.5.18' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-wp-main-css' href='https://quackwatch.org/wp-content/themes/quackwatch/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap4-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/css/bootstrap.min.css?ver=4.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-font-awesome5-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/fontawesome/css/all.min.css?ver=5.15.4' type='text/css' media='all' /> <link rel='stylesheet' id='bootstrap-basic4-main-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/css/main.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='newsletter-css' href='https://quackwatch.org/wp-content/plugins/newsletter/style.css?ver=8.5.5' type='text/css' media='all' /> <link rel='stylesheet' id='parent-style-css' href='https://quackwatch.org/wp-content/themes/bootstrap-basic4/style.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='cfi-style-css' href='https://quackwatch.org/wp-content/themes/css/style.css?ver=1703709909' type='text/css' media='all' /> <link rel='stylesheet' id='child-style-css' href='https://quackwatch.org/wp-content/themes/quackwatch/style.css?ver=1654895920' type='text/css' media='all' /> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/jquery.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/jquery-migrate.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/hooks.js?ver=2e6d63e772894a800ba8" id="wp-hooks-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/i18n.js?ver=2aff907006e2aa00e26e" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/development/react-refresh-runtime.js?ver=8f1acdfb845f670b0ef2" id="wp-react-refresh-runtime-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/development/react-refresh-entry.js?ver=7f2b9b64306bff9c719f" id="wp-react-refresh-entry-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/vendor/react.js?ver=18.3.1" id="react-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/vendor/react-dom.js?ver=18.3.1" id="react-dom-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/escape-html.js?ver=6f9dc571b7e633ab5cbb" id="wp-escape-html-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/element.js?ver=d7780f15e252c57e8726" id="wp-element-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/vendor/react-jsx-runtime.js?ver=18.3.1" id="react-jsx-runtime-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/autop.js?ver=5f6a2604c6641fff16b1" id="wp-autop-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/blob.js?ver=80e277c58e09d6b7e47b" id="wp-blob-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/block-serialization-default-parser.js?ver=1d1bef54e84a98f3efb9" id="wp-block-serialization-default-parser-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/deprecated.js?ver=1aa7a2722e5853bb3a37" id="wp-deprecated-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/dom.js?ver=3535f9fef866398881eb" id="wp-dom-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/is-shallow-equal.js?ver=e70dad7478a6d81b381b" id="wp-is-shallow-equal-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/keycodes.js?ver=bdac64cae9b64d2585cf" id="wp-keycodes-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/priority-queue.js?ver=0ac29e2c7d9453425a64" id="wp-priority-queue-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/compose.js?ver=5da03170a54cb446b827" id="wp-compose-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/private-apis.js?ver=53100b466d825a8b9022" id="wp-private-apis-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/redux-routine.js?ver=5f3792bc38d48a9d5db7" id="wp-redux-routine-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/data.js?ver=6f178ef23ef546c51cae" id="wp-data-js"></script> <script type="text/javascript" id="wp-data-js-after"> /* <![CDATA[ */ ( function() { var userId = 0; var storageKey = "WP_DATA_USER_" + userId; wp.data .use( wp.data.plugins.persistence, { storageKey: storageKey } ); } )(); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/html-entities.js?ver=0d1913e5b8fb9137bad2" id="wp-html-entities-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/dom-ready.js?ver=5b9fa8df0892dc9a7c41" id="wp-dom-ready-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/a11y.js?ver=e4f0f9508f80ce638f3d" id="wp-a11y-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/rich-text.js?ver=9988fecf32c29c7254e1" id="wp-rich-text-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/shortcode.js?ver=577c74513f927a05a979" id="wp-shortcode-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/blocks.js?ver=e7ff9693ca4887018781" id="wp-blocks-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/vendor/moment.js?ver=2.29.4" id="moment-js"></script> <script type="text/javascript" id="moment-js-after"> /* <![CDATA[ */ moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":0},"longDateFormat":{"LT":"g:i a","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} ); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/date.js?ver=dd508f9121b7db4da62d" id="wp-date-js"></script> <script type="text/javascript" id="wp-date-js-after"> /* <![CDATA[ */ wp.date.setSettings( {"l10n":{"locale":"en_US","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"meridiem":{"am":"am","pm":"pm","AM":"AM","PM":"PM"},"relative":{"future":"%s from now","past":"%s ago","s":"a second","ss":"%d seconds","m":"a minute","mm":"%d minutes","h":"an hour","hh":"%d hours","d":"a day","dd":"%d days","M":"a month","MM":"%d months","y":"a year","yy":"%d years"},"startOfWeek":0},"formats":{"time":"g:i a","date":"F j, Y","datetime":"F j, Y g:i a","datetimeAbbreviated":"M j, Y g:i a"},"timezone":{"offset":-5,"offsetFormatted":"-5","string":"America\/New_York","abbr":"EST"}} ); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/primitives.js?ver=b0b42d3e72e5c4ecd741" id="wp-primitives-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/warning.js?ver=6d61a5e89d39a08460ef" id="wp-warning-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/components.js?ver=54eab95952fe254d64e9" id="wp-components-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/underscore.min.js?ver=1.13.4" id="underscore-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/backbone.min.js?ver=1.5.0" id="backbone-js"></script> <script type="text/javascript" id="wp-api-request-js-extra"> /* <![CDATA[ */ var wpApiSettings = {"root":"https:\/\/quackwatch.org\/wp-json\/","nonce":"4330e14adf","versionString":"wp\/v2\/"}; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/api-request.js?ver=6.6.2" id="wp-api-request-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/wp-api.js?ver=6.6.2" id="wp-api-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/url.js?ver=bfd40019fbc498d38067" id="wp-url-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/api-fetch.js?ver=eb5e80d6477f0bc94063" id="wp-api-fetch-js"></script> <script type="text/javascript" id="wp-api-fetch-js-after"> /* <![CDATA[ */ wp.apiFetch.use( wp.apiFetch.createRootURLMiddleware( "https://quackwatch.org/wp-json/" ) ); wp.apiFetch.nonceMiddleware = wp.apiFetch.createNonceMiddleware( "4330e14adf" ); wp.apiFetch.use( wp.apiFetch.nonceMiddleware ); wp.apiFetch.use( wp.apiFetch.mediaUploadMiddleware ); wp.apiFetch.nonceEndpoint = "https://quackwatch.org/wp-admin/admin-ajax.php?action=rest-nonce"; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/keyboard-shortcuts.js?ver=3c4007037248f1a54578" id="wp-keyboard-shortcuts-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/commands.js?ver=31f33f4975f0bcc7a875" id="wp-commands-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/notices.js?ver=bb4dbe982e6a0739f30e" id="wp-notices-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/preferences-persistence.js?ver=2a0eed407631381ede85" id="wp-preferences-persistence-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/preferences.js?ver=ee011cd455649dac4293" id="wp-preferences-js"></script> <script type="text/javascript" id="wp-preferences-js-after"> /* <![CDATA[ */ ( function() { var serverData = false; var userId = "0"; var persistenceLayer = wp.preferencesPersistence.__unstableCreatePersistenceLayer( serverData, userId ); var preferencesStore = wp.preferences.store; wp.data.dispatch( preferencesStore ).setPersistenceLayer( persistenceLayer ); } ) (); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/style-engine.js?ver=bbed01376e4e96b0ec48" id="wp-style-engine-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/token-list.js?ver=9fb6d95fd24788d0ac39" id="wp-token-list-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/wordcount.js?ver=c67f865e3ce4abde9fdb" id="wp-wordcount-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/block-editor.js?ver=e078c055fa618731d37d" id="wp-block-editor-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/core-data.js?ver=1b304f4025915ff3c84b" id="wp-core-data-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/media-utils.js?ver=53965ea93ce50bae2cfe" id="wp-media-utils-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/patterns.js?ver=d5e34abedadac889e404" id="wp-patterns-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/plugins.js?ver=cd5358b6369eff6f7b85" id="wp-plugins-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/server-side-render.js?ver=3dce81021856a751c1dd" id="wp-server-side-render-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/viewport.js?ver=c65a5cb114e86d027c76" id="wp-viewport-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/dist/editor.js?ver=b92daa20720ed8e6de31" id="wp-editor-js"></script> <script type="text/javascript" id="wp-editor-js-after"> /* <![CDATA[ */ Object.assign( window.wp.editor, window.wp.oldEditor ); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/how-to-gutenberg-plugin-master/assets/js/frontend.blocks.js?ver=1649419826" id="jsforwphowto-blocks-frontend-js-js"></script> <script type="text/javascript" id="search-filter-plugin-build-js-extra"> /* <![CDATA[ */ var SF_LDATA = {"ajax_url":"https:\/\/quackwatch.org\/wp-admin\/admin-ajax.php","home_url":"https:\/\/quackwatch.org\/","extensions":[]}; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.min.js?ver=2.5.18" id="search-filter-plugin-build-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/search-filter-pro/public/assets/js/chosen.jquery.min.js?ver=2.5.18" id="search-filter-plugin-chosen-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/js/new/main_init.js?ver=6.6.2" id="general-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/wp-content/themes/quackwatch/js/copy-link-plugin/comp-copy-qw.js?ver=6.6.2" id="copy-js"></script> <script type="text/javascript" src="https://centerforinquiry.org/wp-content/themes/quackwatch/js/select-switch-plugin/selectSwitch-comp-qw.js?ver=6.6.2" id="navigation-js"></script> <script type="text/javascript" src="https://quackwatch.org/js/everyactionmembership.js?ver=1" id="custom_form_js-js"></script> <!-- Google tag (gtag.js) snippet added by Site Kit --> <!-- Google Analytics snippet added by Site Kit --> <script type="text/javascript" src="https://www.googletagmanager.com/gtag/js?id=GT-W6KCHQH" id="google_gtagjs-js" async></script> <script type="text/javascript" id="google_gtagjs-js-after"> /* <![CDATA[ */ window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);} gtag("set","linker",{"domains":["quackwatch.org"]}); gtag("js", new Date()); gtag("set", "developer_id.dZTNiMT", true); gtag("config", "GT-W6KCHQH"); /* ]]> */ </script> <!-- End Google tag (gtag.js) snippet added by Site Kit --> <link rel="https://api.w.org/" href="https://quackwatch.org/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://quackwatch.org/wp-json/wp/v2/pages/7243" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://quackwatch.org/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <link rel='shortlink' href='https://quackwatch.org/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://quackwatch.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fquackwatch.org%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://quackwatch.org/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fquackwatch.org%2F&format=xml" /> <meta name="generator" content="Site Kit by Google 1.135.0" /> <style></style> <!-- SEO meta tags powered by SmartCrawl https://wpmudev.com/project/smartcrawl-wordpress-seo/ --> <link rel="canonical" href="https://quackwatch.org/" /> <meta name="description" content="Quackwatch, which is operated by Stephen Barrett, M.D., is a network of Web sites and mailing lists maintained by the Center for Inquiry (CFI). The sites fo ..." /> <script type="application/ld+json">{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/quackwatch.org\/#schema-publishing-organization","url":"https:\/\/quackwatch.org","name":"Quackwatch","description":"Your Guide to Quackery, Health Fraud, and Intelligent Decisions"},{"@type":"WebSite","@id":"https:\/\/quackwatch.org\/#schema-website","url":"https:\/\/quackwatch.org","name":"Quackwatch","encoding":"UTF-8","potentialAction":{"@type":"SearchAction","target":"https:\/\/quackwatch.org\/search\/{search_term_string}\/","query-input":"required name=search_term_string"}},{"@type":"BreadcrumbList","@id":"https:\/\/quackwatch.org\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home"}]},{"@type":"Person","@id":"https:\/\/quackwatch.org\/author\/mkreidler\/#schema-author","name":"Marc kreidler","url":"https:\/\/quackwatch.org\/author\/mkreidler\/"},{"@type":"WebPage","@id":"https:\/\/quackwatch.org\/#schema-webpage","isPartOf":{"@id":"https:\/\/quackwatch.org\/#schema-website"},"publisher":{"@id":"https:\/\/quackwatch.org\/#schema-publishing-organization"},"url":"https:\/\/quackwatch.org\/"},{"@type":"Article","mainEntityOfPage":{"@id":"https:\/\/quackwatch.org\/#schema-webpage"},"author":{"@id":"https:\/\/quackwatch.org\/author\/mkreidler\/#schema-author"},"publisher":{"@id":"https:\/\/quackwatch.org\/#schema-publishing-organization"},"dateModified":"2023-12-10T19:55:35","datePublished":"2023-12-10T00:00:30","headline":"Home Page | Quackwatch","description":"Quackwatch, which is operated by Stephen Barrett, M.D., is a network of Web sites and mailing lists maintained by the Center for Inquiry (CFI). The sites fo ...","name":"Home Page"}]}</script> <meta property="og:type" content="website" /> <meta property="og:url" content="https://quackwatch.org/" /> <meta property="og:title" content="Home Page | Quackwatch" /> <meta property="og:description" content="Quackwatch, which is operated by Stephen Barrett, M.D., is a network of Web sites and mailing lists maintained by the Center for Inquiry (CFI). The sites fo ..." /> <meta property="og:image" content="https://www.free-website-hit-counter.com/c.php?d=8&id=121211&s=5" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:title" content="Home Page | Quackwatch" /> <meta name="twitter:description" content="Quackwatch, which is operated by Stephen Barrett, M.D., is a network of Web sites and mailing lists maintained by the Center for Inquiry (CFI). The sites fo ..." /> <meta name="twitter:image" content="https://www.free-website-hit-counter.com/c.php?d=8&id=121211&s=5" /> <!-- /SEO --> <!--end wordpress head--> <script src="https://kit.fontawesome.com/11edc66555.js" crossorigin="anonymous"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-102208537-17"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-102208537-17'); </script> </head> <body class="home page-template-default page page-id-7243 wp-embed-responsive"> <div id="top" class="wrapper"> <div class="container-fluid page-container blue d-block d-print-none" style="padding-left: 0px !important; padding-right: 0px !important;"> <header class="page-header page-header-sitebrand-topbar"> <nav class="navbar navbar-expand-lg navbar-dark row"> <div class="col-12 col-lg-8"> <a class="navbar-brand" href="https://quackwatch.org/" title="Quackwatch" rel="home"> <img src="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2019/12/22174957/quackwatch-duck-full.png" alt="quackwatch-duck" id="site-logo" /> <div> <h5>Quackwatch</h5> <p class="d-none d-md-block">Your Guide to Quackery, Health Fraud, and Intelligent Decisions</p> </div> </a> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarSupportedContent"> <ul id="menu-main" class="navbar-nav mr-lg-auto"><li id="menu-item-15567" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15567 nav-item"><a href="https://quackwatch.org/about/navigate/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Navigation Guide</a></li> <li id="menu-item-15574" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-15574 nav-item"><a href="https://quackwatch.org/about/chd/" class="nav-link menu-item menu-item-type-post_type menu-item-object-page">Newsletter</a></li> <li id="menu-item-15572" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15572 nav-item"><a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org" class="nav-link menu-item menu-item-type-custom menu-item-object-custom">Discussion List</a></li> </ul> <!--Search & Display for Mobile--> <div id="header-extras" class="d-flex flex-column align-items-center d-lg-none"> <a href="https://quackwatch.org/support-cfi/" style="text-decoration: none;"><button class="white-btn-on-red">Donate</button></a> <form class="form-inline my-3" method="get" action="https://quackwatch.org/"> <input class="form-control mr-2" type="search" name="s" value="" placeholder="Search" aria-label="Search"> <button class="btn btn-dark" type="submit">Search</button> </form> <select> <option value="#">Visit Our Affiliated Sites</option> <option value="quackwatch">Quackwatch</option> <option value="acupuncture">Acupuncture Watch</option> <option value="allergy">Allergy Watch</option> <option value="autism">Autism Watch</option> <option value="cancer">Cancer Treatment Watch</option> <option value="cases">Casewatch</option> <option value="chelation">Chelation Watch</option> <option value="chiro">Chirobase</option> <option value="credential">Credential Watch</option> <option value="dental">Dental Watch</option> <option value="device">Device Watch</option> <option value="diet">Diet Scam Watch</option> <option value="fibro">Fibromyalgia Watch</option> <option value="homeo">Homeowatch</option> <option value="info">Infomercial Watch</option> <option value="ihealth">Internet Health Pilot</option> <option value="mental">Mental Health Watch</option> <option value="mlm">MLM Watch</option> <option value="naturo">Naturowatch</option> <option value="ncahf">NCAHF</option> <option value="nccam">NCCAM Watch</option> <option value="nutrition">Nutriwatch</option> <option value="pharmacy">Pharmwatch</option> </select> </div> <!-- // --> </div> </div> <div class="col-12 col-lg-4 d-none d-lg-flex"> <!--Search & Select for Desktop--> <div id="header-extras"> <a href="https://quackwatch.org/support-cfi/" style="text-decoration: none;"><button class="white-btn-on-red">Donate</button></a> <form class="form-inline my-2" method="get" action="https://quackwatch.org/"> <input class="form-control mr-sm-2" type="search" name="s" value="" placeholder="Search" aria-label="Search"> <button class="btn btn-dark my-2 my-sm-0" type="submit">Search</button> </form> <!--<a href="https://quackwatch.org/?s&_sf_s=" style="text-decoration: none;"><button class="btn btn-dark my-2 my-sm-0">Search</button>--> <select> <option value="#">Visit Our Affiliated Sites</option> <option value="quackwatch">Quackwatch</option> <option value="acupuncture">Acupuncture Watch</option> <option value="allergy">Allergy Watch</option> <option value="autism">Autism Watch</option> <option value="cancer">Cancer Treatment Watch</option> <option value="cases">Casewatch</option> <option value="chelation">Chelation Watch</option> <option value="chiro">Chirobase</option> <option value="credential">Credential Watch</option> <option value="dental">Dental Watch</option> <option value="device">Device Watch</option> <option value="diet">Diet Scam Watch</option> <option value="fibro">Fibromyalgia Watch</option> <option value="homeo">Homeowatch</option> <option value="info">Infomercial Watch</option> <option value="ihealth">Internet Health Pilot</option> <option value="mental">Mental Health Watch</option> <option value="mlm">MLM Watch</option> <option value="naturo">Naturowatch</option> <option value="ncahf">NCAHF</option> <option value="nccam">NCCAM Watch</option> <option value="nutrition">Nutriwatch</option> <option value="pharmacy">Pharmwatch</option> </select> </div> <!-- // --> </div> </nav> </div><!--.main-navigation--> </header><!--.page-header--> </div> <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> <script src="https://unpkg.com/tippy.js@5"></script> <noscript> <div class="alert alert-danger center" role="alert"> <strong>Alert:</strong> This site works better with javascript. Enable javascript for your browser:<br /><a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-chrome.html" class="alert-link" target='_blank'>Chrome Instructions</a>, <a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-firefox.html" class="alert-link" target='_blank'>Firefox Instructions</a>, <a href="https://answers.microsoft.com/en-us/windows/forum/windows_10-networking/how-to-enable-javascript-in-microsoft-edge/ba12aa2e-6f2f-4d87-a990-5c1d2fd7036c" class="alert-link" target='_blank'>Edge Instructions</a>, <a href="http://aboutjavascript.com/en/how-to-enable-javascript-in-internet-explorer.html" class="alert-link" target='_blank'>Internet Explorer Instructions</a>, <a href="https://aboutjavascript.com/en/how-to-enable-javascript-in-safari.html" class="alert-link" target='_blank'>Safari Instructions</a>. </div> </noscript> <div class="container-fluid page-container white"> </div> <div id="content" class="site-content row"> <button id="sidebar-button" class="">+</button> <div id="content-wrapper" class=""> <main id="main" class="site-main dft-padding readability" role="main"> <article id="post-7243" class="post-7243 page type-page status-publish hentry category-home-pages"> <header class="entry-header"> <div class="clearfix"></div> </header><!-- .entry-header --> <div class="entry-content"> <p><span class="boldred">Quackwatch, which is operated by Stephen Barrett, M.D., is a network of Web sites and mailing lists maintained by the <a href="https://centerforinquiry.org/" target="_blank" rel="noopener noreferrer">Center for Inquiry</a> (CFI). The sites focus on health frauds, myths, fads, fallacies, and misconduct. Their main goal is to provide <a href="/01QuackeryRelatedTopics/quackdef.html">quackery</a>-related information that is difficult or impossible to get elsewhere. To help visitors with special areas of interest, there are sites that cover autism, chiropractic, dentistry, multilevel marketing, and many other problematic areas. The Internet Health Pilot site provides links to hundreds of reliable health sites. Casewatch contains a large library of legal cases, licensing board actions, government sanctions, and regulatory actions against questionable medical products. All of these can be accessed through the “Visit Our Affiliated Sites” drop-down menu above. Their contents can be searched all at once through our search page</span><span class="redbold"><em>. </em>We also offer a <a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org" target="_blank" rel="noopener noreferrer">Health Fraud Discussion List</a> with more than 550 members and <a href="http://www.quackwatch.org/00AboutQuackwatch/chd.html" target="_blank" rel="noopener noreferrer">Consumer Health Digest</a>, a free weekly e-mail newsletter that summarizes scientific reports, legislative developments, enforcement actions, and other information relevant to consumer protection and consumer decision-making. Its primary focus is on health, but occasionally it includes non-health scams.</span></p> <h5>About Quackwatch</h5> <ul> <li><a href="/about/mission/">Mission Statement</a></li> <li><a href="/00AboutQuackwatch/navigate.html">Tips for Navigating Our Web Sites</a></li> <li><a href="/00AboutQuackwatch/faq2.html">Frequently Asked Questions (FAQs)</a></li> <li><a href="/00AboutQuackwatch/funding.html">Who Funds Quackwatch</a>?</li> <li><a href="http://www.badcredit.org/news/quackwatch-acts-as-a-healthcare-watchdog-for-avoiding-costly-fads/">Quackwatch Acts as a Healthcare Watchdog</a> (badcredit.org)</li> <li><a href="https://www.datingnews.com/daters-pulse/quackwatch-debunks-health-related-frauds-impacting-couples/">Quackwatch Compiles Trustworthy Information</a> (DatingNews.com)</li> <li><a href="https://www.cardrates.com/news/quackwatch-protects-against-questionable-healthcare-claims-and-their-financial-implications/">Quackwatch: Vigilance Against Questionable Healthcare Claims and Their Financial Implications</a> (cardrates.com)</li> <li><a href="/09Advisors/advbd.html">How to Become a Quackwatch Advisor</a></li> <li><a href="/00AboutQuackwatch/Awards/awards.html">Honors and Awards (70+) Given to Quackwatch</a></li> <li><a href="/00AboutQuackwatch/comments.html">Cheers and Jeers from Quackwatch Visitors</a></li> <li><a href="/00AboutQuackwatch/nasty.html">More Nasty Comments Sent to Quackwatch</a></li> <li><a href="/00AboutQuackwatch/altseek.html">Special Message for Cancer Patients Seeking Alternative Treatment</a></li> <li><a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org">Join the Health Fraud Discussion List</a></li> <li><a href="http://www.sceptiques.qc.ca/quackwatch/">Quackwatch en Français</a></li> <li><a href="http://verificiencia.com/quackwatch.html"><span lang="es"><span title="">Índice de traducciones al español</span></span></a></li> </ul> <h5>About Dr. Barrett</h5> <ul> <li><a href="/bio/">Biographical Sketch and Contact Information</a></li> <li><a href="/10Bio/biovitae.html">Curriculum Vitae</a></li> <li><a href="/10Bio/biobooks.html">Books and Book Chapters</a></li> <li><a href="/about/faq/">Frequently Asked Questions (FAQs)</a></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/apa_news.pdf">Attacking ‘Health Robbers’ (American Psychiatric News, 1977)</a></li> <li><a href="/10Bio/psychiatric_times.html">Psychiatric Times article (1995)</a></li> <li><a href="/10Bio/biography.html">Biography Magazine Interview</a></li> <li><a href="/10Bio/medhunters.html">MEDHUNTERS magazine article</a></li> <li><a href="http://www.datingadvice.com/for-men/quackwatch-explains-how-health-misinformation-can-affect-relationships">DatingAdvice.com article</a></li> <li><a href="http://www.people.com/people/archive/article/0,,20127436,00.html">People Magazine article</a></li> <li><a href="http://www.time.com/time/magazine/article/0,9171,1101010430-107254,00.html">TIME Magazine article</a></li> <li><a href="http://paulgibbons.net/podcast/quackery-chiropractic-health-fraud/">Paul Gibbons Podcast Interview</a></li> <li><a href="http://skepticzone.libsyn.com/the-skeptic-zone-514-26august2018">Skeptics Zone Podcast Interview</a></li> <li><a href="https://quackwatch.org/bio/my-private-war-against-the-tobacco-industry/">Dr. Barrett’s “Private War” against the Tobacco Industry</a></li> </ul> <h5>General Observations</h5> <ul> <li class="feature2">Quackery <ul> <li><a href="/01QuackeryRelatedTopics/quackdef.html">How Should It Be Defined?</a> (updated 1/17/09)</li> <li><a href="/01QuackeryRelatedTopics/quacksell.html">How It Sells</a> (updated 1/20/05) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/spotquack.html">29 Ways to Spot It</a> (updated 1/14/22) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/harmquack.html">How It Harms Cancer Patients</a> (posted 5/29/97)</li> <li><a href="/01QuackeryRelatedTopics/hfreedom.html">“Health Freedom”</a> (updated 9/27/97)</li> <li><a href="/01QuackeryRelatedTopics/ploys.html">More Ploys That May Fool You</a> (updated 8/12/18)</li> <li><a href="https://quackwatch.org/the-semantics-of-quackery/">The Semantics of Quackery</a> (posted 7/28/22)</li> <li><a href="/06ResearchProjects/ploys.html">“Research” Associated with Promotion of Questionable Methods</a> (updated 1/31/08) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/signs.html">Seven Warning Signs of Bogus Science</a> (posted 3/5/03)</li> <li><a href="/01QuackeryRelatedTopics/miscon.html">Common Misconceptions</a> (updated 8/30/99)</li> <li><a href="/01QuackeryRelatedTopics/quackvul.html">Why People Are Vulnerable</a> (updated 1/16/19)</li> <li><a href="/01QuackeryRelatedTopics/ideomotor.html">How People Are Fooled by Ideomotor Action</a> (posted 8/26/03)</li> <li><a href="/01QuackeryRelatedTopics/endorsements.html">Endorsements Don’t Guarantee Reliability</a> (posted 2/12/03)</li> <li><a href="/04ConsumerEducation/coincidence.html">The Power of Coincidence</a> (posted 8/31/00)</li> <li><a href="/01QuackeryRelatedTopics/pseudo.html">Distinguishing Science and Pseudoscience</a> (posted 5/30/01)</li> <li><a href="/01QuackeryRelatedTopics/russian.html">Why Science Needs to Combat Pseudoscience</a> (posted 12/13/98)</li> <li><a href="/01QuackeryRelatedTopics/quackpro.html">Why Health Professionals Become Quacks</a> (posted 12/11/98)</li> <li><a href="/01QuackeryRelatedTopics/epidemic.html">Epidemic Quackery (James Harvey Young, 1978</a>) (posted 7/17/18)</li> <li><a href="/01QuackeryRelatedTopics/persistance.html">Why Quackery Persists</a> (posted 12/7/01)</li> <li><a href="/01QuackeryRelatedTopics/Victims/victims.html">Victim Case Reports (47)</a> <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/Nonvictims/nonvictims.html">Nonvictim Case Reports (4)</a></li> <li><a href="/01QuackeryRelatedTopics/avoid.html">Ten Ways to Avoid Being Quacked</a> (posted 4/24/97)</li> <li><a href="/04ConsumerEducation/BookContents/quackdevice.html">Signs of a Quack Device </a>(posted 9/23/00)</li> <li><a href="/01QuackeryRelatedTopics/quackweb.html">Signs of a “Quacky” Web Site</a> (updated 4/10/17)</li> <li><a href="/07PoliticalActivities/quacklaws.html">Pro-Quackery Legislation</a> (updated 5/16/01)</li> <li><a href="/01QuackeryRelatedTopics/misccomments.html">Incisive Comments</a> (updated 3/6/11)</li> <li><a href="/01QuackeryRelatedTopics/Hearing/witness.html">Senate Hearing on Anti-Aging Quackery</a> (updated 11/11/01)</li> <li><a href="/01QuackeryRelatedTopics/ota_myth.html">Debunking the Myth that “Only 10-20% of Medical Procedures Are Proved”</a> (posted 8/12/18)</li> <li><a href="/01QuackeryRelatedTopics/propa.html">Propaganda Techniques Related to Environmental Scares</a> (posted 3/10/98)</li> <li><a href="/04ConsumerEducation/placebo.html">Spontaneous Remission and the Placebo Effect </a>(posted 12/19/01)</li> <li><a href="https://quackwatch.org/how-to-become-a-successful-quack/">How to Become a Successful Quack</a> (posted 12/3/20)</li> <li><a href="/07PoliticalActivities/moore.html">Why Strong Laws Are Needed to Protect Us</a> (updated 11/15/98)</li> <li><a href="/01QuackeryRelatedTopics/science.html">Some Notes on the Nature of Science</a> (updated 6/22/01)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/savage.pdf">The Myth of the Healthy Savage</a> (posted 6/13/19)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/01QuackeryRelatedTopics/quackery_and_you.pdf">Quackery and You (booklet</a>)</li> <li><a href="https://quackwatch.org/related/treatmentindex/">Index of Questionable Treatments</a></li> </ul> </li> <li class="feature2">Historic Reports (Mostly Books) <ul> <li><a href="/13Hx/humbug.html">A Historian’s View of Quackery in 1974</a></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/health_frauds_and_quackery.pdf">Health Frauds and Quackery (1977 Interview of Dr. Barrett</a>)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/13Hx/quackery_unmasked.pdf">Quackery Unmasked (Dan King, MD, 1858</a>)</li> <li><a href="https://quackwatch.org/hx/american-quackery-how-the-sick-are-imposed-upon-ingenious-swindlers/">American Quackery: How the Sick Are Imposed Upon (1869</a>)</li> <li><a href="https://quackwatch.org/hx/ingenious-quackery/">Ingenious Quackery (1888)</a></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/nostrums_1b.pdf">Nostrums and Quackery, Volume I (AMA, 1912</a>)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/nostrums_2.pdf">Nostrums and Quackery Volume II, (AMA, 1921</a>)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/nostrums_3.pdf">Nostrums and Quackery and Pseudomedicine, Volume III</a> (AMA, 1936)</li> <li><a href="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2023/12/10195440/medical_follies.pdf">The Medical Follies</a> (AMA, 1925)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/hooker_delusions.pdf">Lessons from the History of Medical Delusions (Worthington Hooker, MD, 1850</a>)</li> <li><a href="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2021/02/22170721/third_national_congress_on_medical-quackery.pdf">Third National Congress on Medical Quackery (1966)</a></li> <li><a href="/hx/mm/mm/">The Medical Messiahs: A Social History of Quackery in 20th-Century America</a> <span class="feature">FEATURE</span></li> <li><a href="/hx/tm/tm/">The Toadstool Millionaires: Social History of Patent Medicines before Federal Regulation</a> <span class="feature">FEATURE</span></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/health_practices_and_opinions.pdf">FDA Survey of Health Practices and Opinions (1972)</a></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/13Hx/comstock_1972.pdf">History of the Comstock Patent Medicine Business and Dr. Morse’s Indian Root Pills</a></li> <li><span class="feature2">Quackery: A $10 Billion Scandal (1984)</span> <a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/pepper-report.pdf">[Report</a>] [<a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/pepper_hearing.pdf">Congressional Hearing</a>]</li> <li><a href="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/11/22170752/health_robbers_1976.pdf">The Health Robbers: How to Protect Your Money and Your Life (1976</a>)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/health_robbers_1980.pdf">The Health Robbers: How to Protect Your Money and Your Life (1980</a>)</li> <li><a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2595940/pdf/yjbm00123-0099.pdf">“The Foolmaster Who Fooled Them” (James Harvey Young, 1980</a>)</li> <li><a href="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2021/03/22170719/vitamins_and_health_foods.pdf">Vitamins and “Health” Foods: The Great American Hustle (1981</a>)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/health_robbers.pdf">The Health Robbers: A Close Look at Quackery in America (1993</a>) <span class="feature">FEATURE</span></li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/vitamin_pushers.pdf">The Vitamin Pushers: How the “Health Food” Industry Is Selling America a Bill of Goods (1994</a>) <span class="feature">FEATURE</span></li> <li><a href="/wp-content/uploads/sites/33/quackwatch/04ConsumerEducation/health_smarts.pdf">Health Smarts (1990</a>)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/13Hx/nutrition_cultism.pdf">Nutrition Cultism: Facts and Fictions (1983</a>)</li> </ul> </li> </ul> <h5>Questionable Products, Services, and Theories</h5> <ul> <li><a href="/01QuackeryRelatedTopics/acu.html">Acupuncture</a> (updated 12/6/22) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/aids.html">AIDS-Related Quackery and Fraud</a> (updated 12/5/01)</li> <li><a href="/01QuackeryRelatedTopics/algae.html">Algae Products: False Claims and Hype</a> (updated 1/14/07)</li> <li><a href="/01QuackeryRelatedTopics/Tests/allergytests.html">Allergies: Dubious Diagnosis and Treatment</a> (updated 1/17/08)</li> <li><span class="feature2">“Alternative,” “Complementary,” and “Integrative” Methods</span> <ul> <li><a href="/01QuackeryRelatedTopics/quackdef2.html">Important Definitions</a> (posted 1/3/01)</li> <li><a href="/01QuackeryRelatedTopics/altwary.html">Be Wary of “Alternative” “Complementary,” and “Integrative” Health Methods</a> (updated 4/17/17) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/altmini.html">Miniglossary of “Alternative” Methods</a> (updated 12/31/07)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/01QuackeryRelatedTopics/alternative_medicine.pdf">A Critical Review (W.T. Jarvis, 2000</a>) (posted 6/15/20)</li> <li><a href="/01QuackeryRelatedTopics/altmini.html">“Alternative Medicine as Self-Care</a> (posted 12/1/00)</li> <li><a href="/01QuackeryRelatedTopics/altmini.html">Commonly Publicized Methods</a> (updated 12/8/99)</li> <li><a href="/01QuackeryRelatedTopics/altbraid.html">The Braid of the ‘Alternative’ Medicine Movement</a> (posted 6/21/01)</li> <li><a href="/01QuackeryRelatedTopics/scivsalt.html">Science vs “Alternative” Methods</a> (posted 8/22/97)</li> <li><a href="/01QuackeryRelatedTopics/altmed.html">A Public Health Perspective</a> (updated 8/16/99)</li> <li><a href="/11Ind/eisenberg.html">The Eisenberg Data: Flawed and Deceptive</a> (posted 3/16/02)</li> <li><a href="/01QuackeryRelatedTopics/extraproof.html">Why Extraordinary Claims Demand Extraordinary Proof</a> (posted 12/26/98)</li> <li>“<a href="/01QuackeryRelatedTopics/altpsych.html">Alternative Medicine” and the Psychology of Belief</a> (posted 6/24/01)</li> <li><a href="/01QuackeryRelatedTopics/reality.html">“Postmodern” Attacks on Science and Reality</a> (posted 5/30/98)</li> <li><a href="/04ConsumerEducation/peer.html">Problems with “CAM” Peer Review and Accreditation</a> (revised 6/14/04)</li> <li><a href="/01QuackeryRelatedTopics/alteng.html">“Alternative Engineering”: A Postmodern Parable</a> (posted 1/4/00)</li> <li><a href="/01QuackeryRelatedTopics/altmc.html">Should Managed Care Companies Cover “Alternative Medicine”?</a> (posted 1/24/99)</li> <li><a href="/01QuackeryRelatedTopics/altview.html">Views of a Concerned Layperson</a> (posted 8/23/01)</li> <li><a href="/01QuackeryRelatedTopics/cam.html">Additional Thoughts about “CAM” Beliefs</a> (posted 7/24/02)</li> <li><a href="/04ConsumerEducation/newsweek.html">Newsweek’s Misleading Report</a> (revised 7/14/03)</li> <li><a href="/01QuackeryRelatedTopics/dictionary/md00.html">Definitions of 1,169 Methods</a> (130-page dictionary posted 5/27/97)</li> <li><a href="/01QuackeryRelatedTopics/whcpp.html">White House Commission on Complementary and Alternative Medicine Policy</a> (posted 3/4/02) <span class="feature">FEATURE</span></li> <li><a href="/07PoliticalActivities/whccamp3.html">Detailed Analysis of WHCCAMP Draft Report</a> (updated 3/4/02) <span class="feature">FEATURE</span></li> <li><a href="/07PoliticalActivities/iomreport.html">Institute of Medicine Publishes Dishonest “CAM” Report</a> (posted 1/12/05)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/antiagingpp.html">“Antiaging Medicine”</a> (posted 8/26/04)</li> <li><a href="/01QuackeryRelatedTopics/aroma.html">Aromatherapy: Making Dollars out of Scents</a> (updated 8/22/01)</li> <li><a href="/04ConsumerEducation/chopra.html">Ayurvedic Mumbo-Jumbo</a> (updated 7/14/12)</li> <li><a href="/pharmacy/strategy/bioidentical.shtml">“Bio-Identical” Hormones</a> (updated 1/19/08)</li> <li><a href="/00AboutQuackwatch/altseek.html">Cancer: Questionable Therapies</a> (index to many articles, updated 9/16/07) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/blockers.html">“Calorie-Blockers”</a> (posted 7/5/01)</li> <li><a href="/01QuackeryRelatedTopics/candida.html">“Candidiasis Hypersensitivity/Yeast Allergy”</a> (updated 10/8/05)</li> <li><a href="/01QuackeryRelatedTopics/cellulite.html">“Cellulite” Removers</a> (updated 8/10/00)</li> <li><a href="/01QuackeryRelatedTopics/chelation.html">Chelation Therapy</a> (updated 11/9/13) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/acu.html">Chinese Medicine</a> (updated 1/12/11)</li> <li><span class="feature2">Chiropractic</span>: <span class="feature">FEATURE TOPIC – <a href="/chiropractic/">ALSO VISIT CHIROBASE</a></span> <ul> <li><a href="/01QuackeryRelatedTopics/chiro.html">Don’t Be Fooled</a> (updated 7/31/98)</li> <li><a href="/01QuackeryRelatedTopics/chirostroke.html">Chiropractic’s Dirty Secret: Neck Manipulation and Strokes</a> (updated 11/26/16)</li> <li><a href="/01QuackeryRelatedTopics/chiroad.html">Advertising Gimmicks</a> (posted 5/20/97)</li> <li><a href="/01QuackeryRelatedTopics/chironutr.html">Steer Clear of Chiropractic Nutrition</a> (updated 2/28/15))</li> <li>“Chiropractic Pediatrics” (to be posted)</li> <li><a href="/01QuackeryRelatedTopics/chirosub.html">Subluxations: Chiropractic’s Elusive Buzzword</a> (updated 7/11/08)</li> <li><a href="/01QuackeryRelatedTopics/chiroinv.html">Undercover Investigations</a> (updated 12/12/03)</li> <li><a href="/01QuackeryRelatedTopics/chirosell.html">How Chiropractors Oversell Themselves</a> (updated 11/20/98)</li> <li><a href="/01QuackeryRelatedTopics/chirovisit.html">My Visit to a “Straight” Chiropractor</a> (updated 9/11/98)</li> <li><a href="/01QuackeryRelatedTopics/chiroasst.html">Inside View of a Chiropractic Office</a> (posted 7/14/97)</li> <li><a href="/01QuackeryRelatedTopics/Tests/ak.html">Applied Kinesiology</a> (updated 8/23/14)</li> <li><a href="/01QuackeryRelatedTopics/Tests/cra.html">Contact Reflex Analysis</a> (updated 8/27/09)</li> <li><a href="/chiropractic/07Strategy/goodchiro.html">What a Rational Chiropractor Can Do for You</a> (link to Chirobase)</li> <li><a href="/01QuackeryRelatedTopics/chiroeval.html">Does the Bad Outweigh the Good?</a> (posted 3/23/01)</li> <li><a href="/chiropractic/06DD/chirovet.html">“Veterinary Chiropractic”</a> (link to Chirobase)</li> <li><a href="/01QuackeryRelatedTopics/chirovic.html">Chiropractic Victim Support Group</a> (posted 6/13/98)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/DSH/colloidalminerals.html">Colloidal Minerals</a> (posted 12/11/98)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/silverad.html">Colloidal Silver</a> (updated 6/25/21)</li> <li><a href="/01QuackeryRelatedTopics/gastro.html">Colon Therapy and Related Quackery</a> (updated 8/4/10)</li> <li><a href="/01QuackeryRelatedTopics/cranial.html">Craniosacral Therapy</a> (updated 1/11/18)</li> <li><span class="feature2">Dentistry: Dubious Care</span> <ul> <li><a href="/01QuackeryRelatedTopics/holisticdent.html">“Holistic Dentistry” / “Biologic Dentistry”</a> (updated 8/1/18)</li> <li><a href="/01QuackeryRelatedTopics/mercury.html">The “Mercury Toxicity” Scam</a> (updated 6/1/18)</li> <li><a href="/01QuackeryRelatedTopics/cavitation.html">Neuralgia Inducing Cavitational Osteonecrosis (NICO)</a> (updated 7/15/18)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/detox_overview.html">“Detoxification” Schemes and Scams</a> (updated 6/11/11) <span class="feature">FEATURE</span></li> <li><a href="/related/dhea/">DHEA: Ignore the Hype</a> (updated 10/12/98)</li> <li><a href="/related/suppsherbs/">Dietary Supplements, Herbs, and Hormones</a> (index to many articles) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/Tests/tests.html">Dubious Diagnostic Tests</a> (index to many articles) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/candling.html">Ear Candling</a> (updated 4/15/05/03)</li> <li><a href="/01QuackeryRelatedTopics/electro.html">Electrodiagnostic Device Quackery</a> (updated 6/4/16) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/ergo.html">“Ergogenic Aids”</a> (updated 8/14/00)</li> <li><a href="/01QuackeryRelatedTopics/eyequack.html">Eye-Related Quackery</a> (updated 9/13/07)</li> <li><a href="/01QuackeryRelatedTopics/fadindex.html">Fad Diagnoses</a> (updated 3/28/19) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/faith.html">Faith Healing</a> (updated 12/27/09)</li> <li><a href="/01QuackeryRelatedTopics/Tests/genomics.html">Genetic Testing Scams</a> (updated 11/24/083)</li> <li><a href="/01QuackeryRelatedTopics/gerovital.html">Gerovital</a> (posted 2/24/11)</li> <li><a href="/01QuackeryRelatedTopics/DSH/glucosamine.html">Glucosamine and Chondroitin for Arthritis</a> (updated 12/14/08)</li> <li><a href="/01QuackeryRelatedTopics/ghb.html">Gamma-hydroxybutyric Acid: A Growing Danger</a> (posted 7/17/98)</li> <li><a href="/01QuackeryRelatedTopics/hgh.html">Growth Hormone Schemes and Scams</a> (updated 10/16/07)</li> <li><a href="/01QuackeryRelatedTopics/hair-2.html">Hair Analysis: A Cardinal Sign of Quackery</a> (updated 8/31/18)</li> <li><a href="/01QuackeryRelatedTopics/Hair/hairindex.html">Hair Removal Methods: What Works and What Doesn’t</a> (updated 8/21/01)</li> <li><span class="feature2">Herbal Practices and Products</span> <ul> <li><a href="/01QuackeryRelatedTopics/herbs.html">The Herbal Minefield</a> (updated 8/19/12)</li> <li><a href="/01QuackeryRelatedTopics/paraherbalism.html">Paraherbalism: Ten False Tenets</a> (posted 8/31/99)</li> <li><a href="/01QuackeryRelatedTopics/DSH/hm.html">“Natural Product” of the Month: Garcinia</a></li> </ul> </li> <li><span class="feature2">Homeopathy</span>: <span class="feature">FEATURE TOPIC – <a href="/homeopathy/">ALSO VISIT HOMEOWATCH</a></span> <ul> <li><a href="/01QuackeryRelatedTopics/homeo.html">The Ultimate Fake</a> (updated 8/25/16) <span class="feature">FEATURE</span></li> <li><a href="/01QuackeryRelatedTopics/holmes.html">Essay by Oliver Wendell Holmes (1842)</a> (posted 3/26/99)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/HBOT/hmindex.html">Hyperbaric Medicine: What Works and What Does Not</a>? (partially posted 4/21/01)</li> <li><a href="/02ConsumerProtection/insfraud.html">Insurance Fraud and Abuse</a> (updated 11/17/05)</li> <li><a href="/device/reports/aquadetox.shtml">Ionic Cleansing</a> (link to Device Watch)</li> <li><a href="/01QuackeryRelatedTopics/iridology.html">Iridology</a> (updated 3/28/08)</li> <li><a href="/mlm/04C/NSA/juiceplus.html">Juice Plus+</a><sup>®</sup> (link to MLM Watch)</li> <li><a href="/01QuackeryRelatedTopics/juicing.html">Juicing</a> (updated 9/7/99)</li> <li><a href="/08Misc/zamboni/overview.html">“Liberation Therapy” for Multiple Sclerosis</a> (posted 5/2/18)</li> <li><a href="https://quackwatch.org/hx/leifcort-for-arthritis-worthless-and-dangerous/">Liiefcort for Arthritis: Worthless and Dangerous</a> (posted 8/23/20)</li> <li><a href="/06ResearchProjects/lcd.html">Low-Carbohydrate Diets (including Atkins Diet)</a> (major update 7/13/08)</li> <li><a href="/01QuackeryRelatedTopics/lyme.html">Lyme Disease: Questionable Diagnosis and Treatment</a> (updated 3/12/07)</li> <li><a href="/01QuackeryRelatedTopics/kushi.html">Macrobiotics</a> (posted 9/27/01)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/magic_muiscle_pills.pdf">Magic Muscle Pills!!: Health and Fitness Quackery in Nutrition Supplements (1992</a>) (posted 5/24/18)</li> <li><a href="/01QuackeryRelatedTopics/mailquack.html">Mail-Order Quackery</a> (updated 7/11/01)</li> <li><a href="/04ConsumerEducation/QA/magnet.html">Magnet Therapy: A Skeptical View</a> (updated 6/29/08)</li> <li><a href="/01QuackeryRelatedTopics/massage.html">Massage Therapy: Riddled with Quackery</a> (updated 3/9/06)</li> <li><span class="feature2">Mental Help, Questionable Approaches</span> <ul> <li><a href="/01QuackeryRelatedTopics/feingold.html">Feingold Diet</a> (updated 3/11/02)</li> <li><a href="/01QuackeryRelatedTopics/down.html">Nutritional Supplements for Down Syndrome</a> (updated 10/18/98)</li> <li><a href="/01QuackeryRelatedTopics/ortho.html">Orthomolecular Therapy</a> (updated 7/12/00)</li> <li><a href="/01QuackeryRelatedTopics/mentserv.html">Procedures to Avoid</a> (updated 11/9/08)</li> <li><a href="/01QuackeryRelatedTopics/patterning.html">Psychomotor Patterning</a> (posted 7/6/01)</li> <li><a href="/01QuackeryRelatedTopics/mispsych.html">Psychotherapy Mismanagement</a> (updated 3/22/11)</li> <li><a href="/01QuackeryRelatedTopics/mentprod.html">Self-Help Products</a> (updated 8/18/04)</li> <li><a href="/01QuackeryRelatedTopics/mhindex.html">Index to Mental Help Topics</a> (updated 2/6/04)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/Cancer/manner.html">Metabolic Therapy</a> (posted 7/1/01)</li> <li><a href="/01QuackeryRelatedTopics/mcs.html">Multiple Chemical Sensitivity (MCS)</a> (updated 3/18/11)</li> <li><a href="/01QuackeryRelatedTopics/ms.html">Multiple Sclerosis “Cures”</a> (updated 8/1/16)</li> <li><a href="/01QuackeryRelatedTopics/mlm.html">Multilevel Marketing: Mostly a Mirage</a> (updated 5/4/14) <span class="feature"><a href="/mlm/">ALSO VISIT MLM WATCH</a></span></li> <li><a href="/01QuackeryRelatedTopics/natural_hygiene.html">Natural Hygiene: A Critical Look</a> (posted 12/31/07)</li> <li><span class="feature2">Naturopathy</span> <span class="feature"><a href="/naturopathy/">ALSO VISIT NATUROWATCH</a></span> <ul> <li><a href="/01QuackeryRelatedTopics/Naturopathy/naturopathy.html">A Close Look</a> (updated 1/4/12)</li> <li><a href="/01QuackeryRelatedTopics/Naturopathy/immu.html">Opposition to Immunization</a> (posted 12/29/01)</li> <li><a href="/01QuackeryRelatedTopics/Naturopathy/hew.html">HEW Report (1968)</a> (updated 8/30/99)</li> <li><a href="/related/naturopathy/nanp/nanp/">Medicare Testimony (1970)</a> (posted 5/25/99)</li> </ul> </li> <li><a href="/01QuackeryRelatedTopics/DSH/suppinsurance.html">Nutrition Insurance: A Skeptical View</a> (posted 12/12/01)</li> <li><a href="/01QuackeryRelatedTopics/organic.html">Organic Foods: Certification Does Not Protect Consumers</a> (updated 7/17/06)</li> <li><a href="/04ConsumerEducation/QA/osteo.html">Osteopathy’s Dubious Aspects</a> (updated 2/1/18)</li> <li><span class="feature2">Pharmacists</span> <ul> <li><a href="/01QuackeryRelatedTopics/pharm.html">Unethical and Ignorant Behavior</a> (major update 7/19/11)</li> <li><a href="/01QuackeryRelatedTopics/compounding.html">Misuse of Compounding</a> (updated 10/14/02)</li> </ul> </li> <li><a href="/06ResearchProjects/pnt.html">Pneumatic Trabeculoplasty (PNT) for Glaucoma</a> (updated 1/15/06)</li> <li><a href="/01QuackeryRelatedTopics/emf.html">Power Lines and Cancer: Nothing to Fear</a> (updated 5/17/01)</li> <li><a href="/01QuackeryRelatedTopics/psychic2.html">Psychic Practices (Astrology, Tarot, Palm Reading, Tarot, etc.</a>) (posted 5/1/03)</li> <li><a href="/01QuackeryRelatedTopics/acu.html">Qigong</a> (updated 7/30/99)</li> <li><a href="/01QuackeryRelatedTopics/reiki.html">Reiki is Nonsense</a> (updated 8/22/15)</li> <li><a href="/01QuackeryRelatedTopics/reflex.html">Reflexology: A Close Look </a>(updated 3/28/15)</li> <li><a href="/01QuackeryRelatedTopics/tt.html">Therapeutic Touch</a> (several articles, updated 2/3/08)</li> <li><a href="/01QuackeryRelatedTopics/fdatopfrauds.html">Top Health Frauds</a> (FDA list, updated 4/5/99)</li> <li><a href="/04ConsumerEducation/crhsurgery.html">Unnecessary Surgery</a> (posted 2/22/99)</li> <li><a href="/01QuackeryRelatedTopics/pauling.html">Vitamin C: The Dark Side of Linus Pauling’s Legacy</a> (updated 9/14/14)</li> <li><a href="/01QuackeryRelatedTopics/waterindex.html">Water-Related Frauds and Quackery </a>(index to several articles, posted 12/2/01)</li> <li><a href="/diet/slim/1999-2/">Weight Control Gimmicks and Fraud</a><a href="/diet/slim/1997-2/">s</a> (updated 2/7/99)</li> </ul> <h5>Questionable Advertisements</h5> <ul> <li><a href="/01QuackeryRelatedTopics/PhonyAds/antioxad.html">“80% of Doctors Take Antioxidants”</a> (updated 12/6/97)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/florsheim.html">Can Florsheim Shoes Cure Your Magnetic Deficiency</a>? (updated 8/8/00)</li> <li><a href="/chiropractic/04Ads/chirohealing.html">“Chiropractic Healing Successfully Treats Cancer”</a> (link to Chirobase)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/ghee.html">Clarified Butter (Ghee): Is It a health food</a>? (updated 9/1/98)</li> <li><a href="/15Ads/goodnighties.html">Dr. Oz Makes Wacky Claims for Pyjamas</a> (updated 7/26/12)</li> <li><a href="/ads/overview/">Dubious Claims Made for DZ10 Enzyme Supplement </a>(updated 7/26/15)</li> <li><a href="/12Web/eckerdtest.html">Eckerd Drugs’ “Personalized Vitamins”</a> (posted 7/4/01)</li> <li><a href="/02ConsumerProtection/enzyte.html">Enzyte Marketers Sued</a> (posted 9/28/04)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/mp.html">“Enzyme Deficiency”</a> (updated 3/11/03)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/braswell.html">Gero Vita, A. Glenn Braswell, and the ‘Journal’ of Longevity</a> (updated 2/6/06)</li> <li><a href="/01QuackeryRelatedTopics/homeopetition/homeoad.html">Homeopathic Hype</a> (posted 2/15/98)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/weightlossfraud.html">Impossible Weight-Loss Claims: Summary of an FTC Report</a> (posted 12/16/03)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/chidisc.html">Life Force Energy Discs</a> (posted 10/25/97)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/bracelet.html">Magnetic Bracelet</a> (posted 8/13/99)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/magnetad.html">Magnetize Your Beverages?</a> (posted 9/19/98)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/earshurt.html">“Mommy My Ears Hurt”</a> (updated 6/9/06)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/oxygencooler.html">“Oxygenated Water” Device</a> (updated 7/3/06)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/oxcgen.html">More Oxygen Hype:”Magnesium-Based Oxygen Therapy”</a> (posted 1/19/08)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/phytopharma.html">Phytopharma/Plant Macerat Weight-Loss Plan</a> (updated 9/14/01)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/centrum.html">“Recommend Centrum to Bridge Nutrition Gaps”</a> (updated 8/9/98)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/recovery.html">Recovery™: An “Amazing” Story</a> (posted 11/30/01)</li> <li><a href="/01QuackeryRelatedTopics/PhonyAds/reflex.html">Reflexology Steering Wheel Cover</a> (posted 9/16/97)</li> <li><a href="/related/phonyads/slim-slippers/">Slim Slippers: A Precautionary Tale</a> (posted 2/28/02)</li> <li><a href="/01QuackeryRelatedTopics/Tests/contour.html">“Free Preliminary Spinal Examination”</a> (posted 10/11/97)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/usps_media_guidelines.pdf">USPS Media Guidelines (1990</a>) (posted 7/19/18)</li> </ul> <h5>Nonrecommended Sources of Health Advice</h5> <ul> <li><a href="/04ConsumerEducation/nonrecbooks.html">Books</a> (updated 10/29/17)</li> <li><a href="/04ConsumerEducation/dm0.html">Degree Mills</a> (updated 6/2/00)</li> <li><a href="/01QuackeryRelatedTopics/hfsadvice.html">Health-Food-Store Advice: Don’t Trust It!</a> (updated 11/1/16)</li> <li><span class="feature2">Individuals</span> <ul> <li>Robert Atkins, MD</li> <li><a href="/01QuackeryRelatedTopics/DSH/coral.html">Robert Barefoot</a> (updated 6/13/03)</li> <li><a href="/11Ind/breggin.html">Peter R. Breggin, MD</a> (posted 9/12/02)</li> <li><a href="/04ConsumerEducation/bland.html">Jeffrey Bland, PhD</a> (updated 4/19/04)</li> <li><a href="/11Ind/bolen.html">Patrick T. “Tim” Bolen</a> (updated 7/3/13)</li> <li><a href="/01QuackeryRelatedTopics/Cancer/clark.html">Hulda Clark’s Bizarre Claims</a> (updated 10/23/09)</li> <li><a href="/04ConsumerEducation/davis.html">Adelle Davis</a> (updated 1/15/06)</li> <li><a href="/01QuackeryRelatedTopics/Cancer/day.html">Lorraine Day, MD</a> (updated 3/16/13)</li> <li><a href="/01QuackeryRelatedTopics/donsbach.html">Kurt W. Donsbach</a> (updated 4/17/11)</li> <li><a href="/11Ind/eisenberg.html">David Eisenberg, MD</a> (posted 3/16/02)</li> <li><a href="http://www.casewatch.net/foreign/gibson/gibson.shtml">Belle Gibson</a><span class="redbold">*</span></li> <li><a href="https://quackwatch.org/11ind/a-skeptical-look-at-simone-gold-and-americas-frontline-doctors/">Simone Gold, MD, JD</a> (updated 7/17/22)</li> <li><a href="/11Ind/gordon2.html">James S. Gordon, MD</a> (posted 2/14/02)</li> <li><a href="https://quackwatch.org/11ind/a-skeptical-look-at-dr-marty-hinz-and-his-views-of-neurotransmitter-related-diseases/">Marty Hinz, MD</a> (updated 8/17/21)</li> <li><a href="https://apnews.com/article/how-rfk-jr-built-anti-vaccine-juggernaut-amid-covid-4997be1bcf591fe8b7f1f90d16c9321e">Robert F. Kennedy, Jr</a>.</li> <li><a href="https://quackwatch.org/11ind/mercola/">Joseph Mercola, DO</a> (updated 7/25/21)</li> <li><a href="/04ConsumerEducation/NegativeBR/vbible.html">Earl Mindell</a> (posted 3/14/05)</li> <li><a href="/04ConsumerEducation/null.html">Gary Null</a> (updated 5/10/19)</li> <li><a href="https://sciencebasedmedicine.org/a-seal-of-approval/#more-18092">Memhet Oz, MD</a> (link to another site)</li> <li><a href="/11Ind/rowland.html">David W. Rowland</a> (updated 5/6/00)</li> <li><a href="/11Ind/rubin.html">Jordan S. Rubin</a> (posted 3/13/06)</li> <li><a href="http://www.salon.com/2010/10/13/vaccine_book_sears/">Robert Sears, MD</a> (link to another site)</li> <li><a href="/11Ind/weil.html">Andrew Weil, MD</a> (posted 3/10/02)</li> <li><a href="https://web.archive.org/web/20050209132314/http://www.acsh.org/healthissues/newsID.901/healthissue_detail.asp">Julian Whitaker, MD</a> (link to another site)</li> <li><a href="/11Ind/young3.html">Robert O. Young</a> (updated 8/10/22)</li> <li><a href="/11Ind/index.html">Other Nonrecommended Individuals (Index)</a> (updated 1/17/23)</li> </ul> </li> <li><a href="/04ConsumerEducation/nonrecorg.html">Questionable Organizations: An Overview</a> <ul> <li><a href="/04ConsumerEducation/Nonrecorg/aanc.html">American Association of Nutritional Consultants</a> (updated 10/18/05)</li> <li>Center for Medical Consumers</li> <li>Citizens for Health</li> <li>Council for Responsible Nutrition</li> <li><a href="/04ConsumerEducation/faim.html">Foundation for the Advancement of Innovative Medicine</a> (updated 9/21/99)</li> <li><a href="/04ConsumerEducation/Nonrecorg/nhf.html">National Health Federation</a> (posted 7/18/03)</li> <li><a href="/01QuackeryRelatedTopics/pms.html">People’s Medical Society</a> (updated 8/23/06)</li> <li><a href="http://www.ncahf.org/articles/o-r/pcrm.html">Physicians Committee for Responsible Medicine</a> (link to another site)</li> </ul> </li> <li><a href="/04ConsumerEducation/nonrecperiodicals.html">Periodicals</a> (updated 10/23/15)</li> <li><a href="/01QuackeryRelatedTopics/psychic.html">“Psychic” Advice by Mail or Telephone</a> (updated 8/2/01)</li> <li><span class="feature2">Publishers That Promote Quackery</span> <ul> <li>Avery Publishing Group</li> <li><a href="/infomercial/reports/treasury.shtml">Bottom Line Books</a></li> <li>EBSCO (Natural & Alternative Treatments Database)</li> <li>Future Medicine Publishing</li> <li>Keats Publishing</li> <li>Mary Ann Liebert, Inc.</li> <li>Rodale Press</li> </ul> </li> <li><a href="/web/#nonrecommendedsites">Nonrecommended Web Sites</a> (updated 2/22/20)</li> </ul> <h5>Consumer Protection</h5> <ul> <li><a href="/02ConsumerProtection/intell.html">Intelligent Consumer Behavior</a> (posted 5/1/97)</li> <li><a href="/02ConsumerProtection/commtips.html">Doctor-Patient Communication Tips</a> (updated 10/9/06)</li> <li><a href="/02ConsumerProtection/mill.html">How to Spot a Personal Injury Mill</a> (posted 7/25/02)</li> <li><a href="/01QuackeryRelatedTopics/altbelief.html">Why Bogus Therapies Often Seem to Work</a> (posted 9/2/97)</li> <li><a href="/04ConsumerEducation/BookContents/spotban.html">Fifteen Ways to Spot an Internet Bandit</a> (posted 12/29/96)</li> <li><a href="/02ConsumerProtection/conorgs.html">Antiquackery Organizations</a> (updated 4/29/07)</li> <li><a href="/02ConsumerProtection/complain.html">Where to Complain or Seek Help</a> (updated 1/30/20)</li> <li><a href="/02ConsumerProtection/onscam.html">Online Scams: A Message from the FTC</a> (posted 5/20/97)</li> <li><a href="/02ConsumerProtection/victims.html">Legal Help for Quackery Victims</a> (updated 3/23/10)</li> <li><a href="/07PoliticalActivities/telemarketers.html">Dealing with Telephone Pests</a> (posted 5/15/02)</li> <li><span class="feature2">Spam Messages</span> <ul> <li><a href="/02ConsumerProtection/spam.html">Some Strategies to Prevent Spams</a> (updated 10/29/02)</li> <li><a href="/02ConsumerProtection/spamscams.html">FTC Names “Dirty Dozen” Spam Scams</a> (posted 4/6/00)</li> </ul> </li> <li><a href="/02ConsumerProtection/laws.html">Strengths and Weaknesses of Our Laws</a> (updated 9/15/01)</li> <li><a href="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/12/22170729/charles_w_crawford.pdf">Charles W. Crawford, FDA Commssioner, 1951-1954</a></li> <li><a href="/02ConsumerProtection/dshea.html">How Congress Weakened the FDA in 1994</a> (updated 9/30/20)</li> <li><a href="/03HealthPromotion/gmo.html">Genetically Engineered Foods Should NOT Bear Special Labels</a> (posted 1/2/00)</li> <li><a href="/02ConsumerProtection/licensing.html">Why Nutritionist Licensing Is Important</a> (updated 8/16/11)</li> <li><a href="/02ConsumerProtection/doctorsales.html">AMA Discourages Product Sales in Medical Offices</a> (updated 11/23/99)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/nyc_hfs.pdf">NYC Dept. of Consumer Affairs Health Food Stores Investigation (1983</a>) (posted 11/29/14)</li> <li><a href="/02ConsumerProtection/viatical.html">Viatical Settlements</a> (posted 8/16/00)</li> <li><a href="/02ConsumerProtection/enforcement_priority.html">Why the FDA Should Use More Criminal Prosecutions</a> (posted 9/27/18)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/fda_regulatory_primer_1995.pdf">FDA Regulatory Primer (1995</a>) (posted 7/16/18)</li> <li><span class="feature2"><a href="/cases/">FDA Warning Letters</a></span><a href="/cases/"> (indexed by year on Casewatch</a>)</li> <li><a href="/02ConsumerProtection/FTCActions/ftc_food_advertising.html">Some Notes of the FTC’s Food Advertising Policy</a> (posted 4/3/19)</li> <li><a href="/13Hx/dr_rinse/background.html">The Dr. Rinse Case: An Inside Look at FDA Dietary Supplement Regulation in the 1980s</a> (posted 6/19/11)</li> <li><span class="feature2">Other Important Regulatory Actions</span> <ul> <li><a href="/02ConsumerProtection/enzymaticfdac.html">Enzymatic Therapy</a> (posted 8/15/00)</li> <li><a href="/02ConsumerProtection/gnc.html">General Nutrition</a> (updated 11/29/14)</li> <li><a href="/02ConsumerProtection/hsn.html">Home Shopping Network</a> (posted 4/17/99)</li> </ul> </li> </ul> <h5>Consumer Strategy: Health Promotion</h5> <ul> <li><a href="/03HealthPromotion/antioxidants.html">Antioxidants and other Phytochemicals: Current Scientific Perspective</a> (updated 6/2/18)</li> <li><span class="feature2">Cardiovascular Disease</span> <ul> <li><a href="/03HealthPromotion/cardiorisk.html">Risk Factors</a> (updated 12/20/00)</li> <li><a href="/03HealthPromotion/homocysteine.html">Does Lowering Homocysteine Prevent Cardiovascular Disease</a>? (updated 5/6/10)</li> </ul> </li> <li><a href="/03HealthPromotion/supplements.html">Dietary Supplements: Appropriate Use</a> (updated 11/12/10)</li> <li><a href="/03HealthPromotion/eqpt.html">Exercise: Choosing and Using Equipment</a> (posted 11/7/97)</li> <li><a href="/03HealthPromotion/fluoride.html">Fluoridation: Don’t Let the Poisonmongers Scare You!</a> (4 articles, updated 3/30/13)</li> <li><a href="https://www.acsh.org/search?search_api_views_fulltext=food+irradiation">Food Irradiation</a> (link to another site)</li> <li><a href="/03HealthPromotion/immu/immu00.html">Immunization: Common Misconceptions </a>(updated 4/20/13)</li> <li><a href="/03HealthPromotion/tobacco.html">Tobacco-Related News</a> (updated 4/7/00)</li> <li><a href="/03HealthPromotion/vegetarian.html">Vegetarianism: Healthful But Not Necessary</a> (updated 3/17/00)</li> <li><a href="/03HealthPromotion/k.html">Vitamin K Injections Needed to Prevent Bleeding in Infants</a> (posted 11/23/13)</li> </ul> <h5>Consumer Strategy: Tips for Provider Selection</h5> <ul> <li><a href="/04ConsumerEducation/dentalchoose.html">Choosing a Dentist </a>(posted 1/31/01)</li> <li><a href="/04ConsumerEducation/mentchoose.html">Where to Get Mental Help</a> (updated 11/14/02)</li> <li><a href="/04ConsumerEducation/nutritionist.html">Where to Get Professional Nutrition Advice</a> (updated 1/3/10)</li> <li><a href="/04ConsumerEducation/QA/osteo.html">Choosing an Osteopathic Physician</a> (updated 4/24/01)</li> <li><a href="/01QuackeryRelatedTopics/chirochoose.html">Choosing a Chiropractor</a> (updated 10/13/00)</li> <li><a href="/04ConsumerEducation/freefootexams.html">Be Wary of “Free Foot Exam” Ads</a> (updated 12/20/98)</li> <li><a href="/04ConsumerEducation/QA/board.html">Board Certification: What Does It Mean?</a> (updated 12/5/00)</li> <li><a href="/04ConsumerEducation/QA/mdcheck.html">How to Check a Physician’s Credentials</a> (updated 1/14/08)</li> <li><a href="/04ConsumerEducation/trainer.html">Choosing a Personal Trainer</a> (updated 7/30/08)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/health_club.pdf">Choosing a Health Club</a> (posted 1/2/17)</li> <li><a href="/04ConsumerEducation/pers.html">Personal Emergency Response Systems</a> (posted 4/20/02)</li> <li><a href="/01QuackeryRelatedTopics/facilityindex.html">Nonrecommended Treatment Facilities</a> (posted 4/13/02)</li> </ul> <h5>Consumer Strategy: Disease Management</h5> <ul> <li><span class="feature2">Drugs</span> <ul> <li><a href="/04ConsumerEducation/drugs.html">Tips for Prudent Use</a> (posted 10/25/99)</li> <li><a href="/04ConsumerEducation/generic.html">Generic Drugs: What You Need to Know</a> (posted 9/22/02)</li> <li><a href="/04ConsumerEducation/glaucomadrops.html">Glaucoma Patients: Don’t Waste Money on Overpriced Eyedrops</a> (posted 5/1/00)</li> </ul> </li> <li><a href="/03HealthPromotion/fibromyalgia/index.html">Fibromyalgia Strategies</a> (8 articles, updated 2/13/00)</li> <li><a href="/03HealthPromotion/ibs.html">Irritable Bowel Syndrome</a> (posted 6/7/00)</li> <li><a href="/03HealthPromotion/latex.html">Latex Allergy Epidemic</a> (updated 1/23/00)</li> <li><a href="/03HealthPromotion/lbp.html">Low Back Pain</a> (updated 5/18/99)</li> <li><a href="/03HealthPromotion/rk.html">Refractive Surgery</a> (updated 8/23/05)</li> <li><a href="/03HealthPromotion/scoliosis.html">Scoliosis: A Sensible Approach</a> (posted 1/14/98)</li> </ul> <h5>Education for Consumers and Health Professionals</h5> <ul> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/smoking_gun.pdf">A Smoking Gun: How the Tobacco Industry Gets Away with Murder (1984</a>) posted 11/3/13)</li> <li><a href="/04ConsumerEducation/chlibrary.html">Consumer Health Library: Recommended Reference Books</a> (updated 8/7/09)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/04ConsumerEducation/freireich.pdf">Evaluating Unproven Remedies (Freireich</a>) (posted 8/25/20)</li> <li><a href="/04ConsumerEducation/evidence.html">Evidence vs. Nonsense: A Guide to the Scientific Method</a> (posted 2/11/05)</li> <li><a href="/04ConsumerEducation/challenges.html">Handling Challenges to Skepticism</a> (posted 9/30/99)</li> <li><a href="/00AboutQuackwatch/honcode.html">HONcode Principles: What Do They Signify</a>? (updated 8/10/14)</li> <li><a href="/04ConsumerEducation/healthscares.html">Internet Health Scares</a> (posted 9/12/99)</li> <li><a href="/12Web/webfind.html">Internet Search Strategies</a> (posted 8/25/01)</li> <li><a href="/wp-content/uploads/sites/33/quackwatch/04ConsumerEducation/lying.pdf">Lying for Fun and Profit: The Truth about the Media</a> (posted 10/10/20)</li> <li><span class="feature2">Media Watch: Critiques of Prominent Articles and Broadcasts</span> <ul> <li><a href="/03HealthPromotion/cu.html">Consumer Reports’ Attack on Pesticides Criticized</a> (posted 4/30/99)</li> <li><a href="/03HealthPromotion/immu/autism.html">The Unfounded Vaccination/Autism Scare</a> (updated 11/17/02)</li> </ul> </li> <li><a href="/04ConsumerEducation/News/news.html">News Briefs</a> (many topics, updated 12/18/01)</li> <li><a href="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/nf_1984-2000.pdf">Nutrition Forum Newsletter 1984-200</a>0 (posted 6/14/18)</li> <li><a href="/04ConsumerEducation/QA/qa.html">Questions and Answers</a> (updated 3/31/03)</li> <li><a href="/04ConsumerEducation/iq.html">Quiz: What’s Your Consumer Health IQ</a>? (posted 9/19/97)</li> <li><a href="/04ConsumerEducation/org.html">Reliable Agencies and Organizations</a> (updated 1/15/09)</li> <li><a href="/04ConsumerEducation/urbanlegends.html">Urban Legends, Rumors, and Hoaxes</a> (updated 3/3/02)</li> <li><a href="/web/">Web Site Evaluations</a> (updated 3/18/04)</li> </ul> <h5>Legal and Political Activities</h5> <ul> <li><a href="/07PoliticalActivities/antiquackery.html">Fighting Quackery: Tips for Activists</a> (revised 3/11/04)</li> <li><a href="/02ConsumerProtection/activism.html">Scientific Activism for Cosmetic Chemists (and Others)</a> (posted 5/18/15)</li> <li><a href="/02ConsumerProtection/fca.html">Qui Tam Suits against Health Care Fraud</a> (posted 8/23/00)</li> <li><a href="/07PoliticalActivities/rxp1.html">Why Psychologists Should Not Be Licensed to Prescribe Psychiatric Drugs</a> (posted 4/15/02)</li> </ul> <h5>Recommended Links <i class="fas fa-arrow-alt-up"></i></h5> <ul> <li><a href="http://www.alsuntangled.com/">ALS Untangled</a> (Investigates clinics claiming to treat ALS)</li> <li><a href="http://mindblowingdecisions.com/">Alternative Medicine: A Mindblowing Mystery Tour</a></li> <li><a href="http://www.acsh.org/">American Council on Science and Health (ACSH)</a></li> <li><a href="http://www.chem1.com/CQ/johnellisbunk.html">Aquascams</a> (Water-related scams and quackery)</li> <li><a href="http://www.badscience.net/">Bad Science</a> (Ben Goldacre, M.D. blog)</li> <li><a href="http://www.badsceince.ca/">Bad Science Watch</a></li> <li><a href="http://www.sciencebasedhealthcare.org/">Campaign for Science-Based Healthcare</a></li> <li><a href="/chiropractic/">Chirobase</a> (Quackwatch’s skeptical guide to chiropractic history, theories, and current practices)</li> <li><a href="http://www.csicop.org/">Committee for Skeptical Inquiry</a></li> <li><a href="http://www.cinam.net/">Current Issues in Alternative Medicine (CINAM)</a> (Quackery viewed from a Christian perspective)</li> <li><a href="/dental/">Dental Watch</a> (Quackwatch’s guide to intelligent dental care)</li> <li><a href="http://www.ebm-first.com/">ebm-first.com</a> (What “alternative” medical practitioners might not tell you)</li> <li><a href="https://drbillsukala.com/">Dr. Bill Sukula</a></li> <li><a href="http://edzardernst.com/">Edzard Ernst’s CAM Blog</a> (scroll down to see articles)</li> <li><a href="https://americanloons.blogspot.com/">Encyclopedia of American Loons</a></li> <li><a href="http://www.scienceinmedicine.org.au/">Friends of Science in Medicine</a></li> <li><a href="http://genome.fieldofscience.com/">Genomics, Medicine, and Pseudoscience</a> (Steven Saltzberg’s blog)</li> <li><a href="http://www.chem1.com/CQ/index.html">H<sub>2</sub>O dot con</a> (water-related pseudoscience and quackery)</li> <li><a href="http://www.hairquackery.com/">Hair quackery.com</a></li> <li><a href="/homeopathy/">Homeowatch</a> (Quackwatch’s skeptical guide to homeopathy’s history, theories, and current practices)</li> <li><a href="https://web.randi.org/">James Randi Educational Foundation</a></li> <li><a href="https://lymescience.org">LymeScience</a></li> <li><a href="/mlm/">MLM Watch</a> (Quackwatch’s guide to multilevel marketing)</li> <li><a href="http://www.museumofquackery.com/">Museum of Questionable Medical Devices</a></li> <li><a href="http://www.nightingale-collaboration.org/">The Nightingale Collaboration</a> (consumer protection campaigns)</li> <li><a href="https://www.painscience.com/">PainScience.com </a>(science-based medicine for aches, pains, and injuries)</li> <li><a href="https://web.archive.org/web/20130307215950/http://www.quackfiles.com/">The Quack-Files (archived through 2013)</a></li> <li><a href="http://www.quackcast.com/">Quackcast</a> (skeptical evaluations of “alternative” medicine)</li> <li><a href="http://www.quackometer.net/">Quackometer</a> (efficient Web search for critical information)</li> <li><a href="https://quacktrack.org/">QuackTrack</a> (Indian anti-quackery site)</li> <li><a href="http://www.ratbags.com/">RatbagsDotCom</a> (fighting quackery with humor)</li> <li><a href="http://www.senseaboutscience.org/">Sense about Science</a></li> <li><a href="http://www.sciencebasedmedicine.org/">Science-Based Medicine</a> (antiquackery blog)</li> <li><a href="http://sbh.nz/">Society for Science-Based Healthcare</a> (New Zealand)</li> <li><a href="http://www.sfsbm.org/">Society for Science-Based Medicine</a> (United States)</li> <li><a href="/05Links/skepticsites.html">Skeptical Information Sources</a> (updated 4/11/07)</li> <li><a href="https://skepticscircle.blogspot.com/">Skeptics Circle Blogspot</a></li> <li><a href="http://skepdic.com/">Skeptics Dictionary</a> (over 400 topics)</li> <li><a href="http://www.skepticnorth.com/">Skeptic North</a></li> <li><a href="http://www.skepticzone.tv/">Skeptic Zone Podcasts</a></li> <li><a href="http://www.skepdoc.info/">The SkepDoc</a> (Harriet Hall, M.D.)</li> <li><a href="http://www.skeptvet.com/">The SkeptVet</a></li> <li><a href="http://whatstheharm.net/index.html">What’s the Harm</a>?</li> <li><a href="/05Links/othersites.html">Other Valuable Sites</a> (About 200 links, updated 11/18/17)</li> </ul> <h6 style="text-align: center">Quackwatch home page visitors since 1/4/97</h6> <p><a href="https://www.free-website-hit-counter.com/"><img decoding="async" class="aligncenter" title="free website hit counter" src="https://www.free-website-hit-counter.com/c.php?d=8&id=121211&s=5" border="0" /></a></p> <p>Our home-page hits reached 1 million in March 2000, 5 million on August 2004, 10 million in July 2009, and 15 million in December 2019.</p> <div class="clearfix"></div> </div><!-- .entry-content --> <footer class="entry-meta"> </footer> </article><!-- #post-## --> </main> </div> <div id="sidebar-wrapper" class=""> <div id="sidebar-right"> <!--<aside id="social-share" class="widget"> <h1 class="widget-title">Share this page:</h1> social_warfare removed </aside>--> <!--<aside id="email-subscribe" class="widget email-widget"> <h4>RECEIVE EMAILS FROM US</h4> </aside>--> <li id="media_image-2" class="widget widget_media_image"><a href="https://www.amazon.com/Consumer-Health-Guide-Intelligent-Decisions-ebook/dp/B07P7D6SQ5"><img width="234" height="300" src="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_-234x300.jpg" class="image wp-image-16122 attachment-medium size-medium" alt="" style="max-width: 100%; height: auto;" decoding="async" loading="lazy" srcset="https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_-234x300.jpg 234w, https://centerforinquiry.s3.amazonaws.com/wp-content/uploads/sites/33/2020/01/22174957/41a9x1s3uoL._SX388_BO1204203200_.jpg 390w" sizes="(max-width: 234px) 100vw, 234px" /></a></li><li id="text-7" class="widget widget_text"><h2 class="widgettitle">Consumer Health: A Guide to Intelligent Decisions</h2> <div class="textwidget"><p>This new edition of the most comprehensive text available in the field continues to provide a vast amount of information to enable consumers to make wise choices regarding health products and services. It offers a panoramic view of the health marketplace, while explaining the scientific methods that are essential for validating claims about how products and services affect health.</p> <p><a href="https://www.amazon.com/Consumer-Health-Guide-Intelligent-Decisions-ebook/dp/B07P7D6SQ5">Order on Amazon</a></p> </div> </li> <li id="text-3" class="widget widget_text"><h2 class="widgettitle">Hot Topics</h2> <div class="textwidget"><p><a href="https://quackwatch.org/consumer-protection/covid-19-consumer-protection/">COVID-19 Schemes, Scams, and Misinformation</a></p> <p><a href="https://quackwatch.org/ncahf/consumer-health-digest-index-of-covid-19-news-briefs/">COVID-19 News Briefs</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/altwary/">Be Wary of “Alternative” “Complementary,” and “Integrative” Health Methods</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/Tests/urine_toxic/">How “Provoked” Urine Metal Tests Are Used to Mislead Patients</a></p> <p><a href="https://quackwatch.org/11Ind/mercola/">FDA orders Dr. Joseph Mercola to stop making illegal claims</a></p> <p><a href="https://quackwatch.org/03HealthPromotion/immu/too_many/">Do Children Get Too Many Immunizations? The Answer Is No</a>.</p> <p><a href="https://quackwatch.org/04ConsumerEducation/null/">A Critical Look at Gary Null’s Activities and Credentials</a></p> <p><a href="https://quackwatch.org/11Ind/bolen/">The Libel Campaign against Quackwatch and Dr. Barrett</a></p> <p><a href="https://quackwatch.org/01QuackeryRelatedTopics/Cancer/day/">Stay Away from Lorraine Day</a></p> </div> </li><li id="text-2" class="widget widget_text"><h2 class="widgettitle">Links to Recommended Vendors</h2> <div class="textwidget"><p><a href="http://www.consumerlab.com/index.asp?claffid=101024">ConsumerLab.com</a>: Evaluates the quality of dietary supplement and herbal products.</p> <p><a href="https://www.pharmacychecker.com/?PCAffId=C52C071E-1222-424D-8D04-8D51BCD6EE13">PharmacyChecker.com</a>: Compare drug prices and save money at verified online pharmacies.</p> <p><a href="https://www.amazon.com/?_encoding=UTF8&tag=quackwatch00-20" target="_blank" rel="noopener" data-saferedirecturl="https://www.google.com/url?q=http://www.amazon.com/?_encoding%3DUTF8%26tag%3Dquackwatch00-20&source=gmail&ust=1576797583875000&usg=AFQjCNHIvs34vLLwKZ_RohX6Nz7g3JR2pQ">Amazon.com</a>: Discount prices, huge inventory, and superb customer service.</p> </div> </li> <aside id="support" class="widget"> <img class="programs" src="https://centerforinquiry.org/wp-content/uploads/sites/33/2019/12/quackwatch-duck-full.png" /> <p style="text-align:center;">Quackwatch is a program of the Center for Inquiry.</p> <a href="https://centerforinquiry.org/"><img class="programs" src="https://centerforinquiry.org/wp-content/uploads/2020/01/CFI2017.png" /></a> <a href="https://centerforinquiry.org/membership" style="text-decoration: none;"><h4 class="grey-button"><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-web-icons-member.png" />JOIN CFI</h4></a> <a href="https://centerforinquiry.org/donate/quackwatch/" style="text-decoration: none;"><h4 class="grey-button"><img src="https://cdn.centerforinquiry.org/img/wordpress/cfi-web-icons-donate.png" />DONATE</h4></a> </aside> </div> </div><!-- sidebar-wrapper --> </div><!--Site Content--> </div><!--.site-content--> </div><!--.page-container--> <div id="extras" class="container-fluid d-block d-print-none"> <div class="row"> <div id="hon-code" class="col-md-6"> <img src="https://centerforinquiry.org/wp-content/uploads/sites/33/quackwatch/hon.gif" /> <p>Quackwatch abides by the <a href="/about/honcode">HONcode principles</a> of the Health On the Net Foundation</p> </div> <div id="error-form" class="col-md-6"> <h5>Notice an error on this page?</h5> <p>We've recently redesigned this website, let us know if anything got lost or broken during the move.</p> <a href="#" data-toggle="modal" data-target="#feedbackModal"><button class="btn white-button-on-blue">Report an Issue</button></a> </div> </div> <div class="row"> <div id="disclaimer" class="col-md-12"> <p class="small">All articles on this Web site except government reports are copyrighted. Single copies can be downloaded for personal education; other uses without authorization are illegal.<br />"Quackwatch" and the duck picture are service-marked; their unauthorized use is illegal.</p> </div> </div> </div> <div class="modal fade" id="feedbackModal" tabindex="-1" role="dialog" aria-labelledby="feedbackModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="feedbackModalLabel">Quackwatch Feedback</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <noscript class="ninja-forms-noscript-message"> Notice: JavaScript is required for this content.</noscript> <div id="nf-form-2-cont" class="nf-form-cont" aria-live="polite" aria-labelledby="nf-form-title-2" aria-describedby="nf-form-errors-2" role="form"> <div class="nf-loading-spinner"></div> </div> <!-- That data is being printed as a workaround to page builders reordering the order of the scripts loaded--> <script>var formDisplay=1;var nfForms=nfForms||[];var form=[];form.id='2';form.settings={"objectType":"Form Setting","editActive":true,"title":"Quackwatch Feedback","created_at":"2019-11-11 10:41:52","form_title":"Feedback","default_label_pos":"above","show_title":0,"clear_complete":"1","hide_complete":"1","logged_in":"0","wrapper_class":"","element_class":"","key":"","add_submit":"1","currency":"","unique_field_error":"A form with this value has already been submitted.","not_logged_in_msg":"","sub_limit_msg":"The form has reached its submission limit.","calculations":[],"formContentData":["post_title_1573487572912","post_url_1573487578465","what_best_describes_the_error_on_this_page_1573487059894","please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","submit_1523909373360"],"drawerDisabled":false,"allow_public_link":0,"embed_form":"","changeEmailErrorMsg":"Please enter a valid email address!","changeDateErrorMsg":"Please enter a valid date!","confirmFieldErrorMsg":"These fields must match!","fieldNumberNumMinError":"Number Min Error","fieldNumberNumMaxError":"Number Max Error","fieldNumberIncrementBy":"Please increment by ","formErrorsCorrectErrors":"Please correct errors before submitting this form.","validateRequiredField":"This is a required field.","honeypotHoneypotError":"Honeypot Error","fieldsMarkedRequired":"Fields marked with an <span class=\"ninja-forms-req-symbol\">*<\/span> are required","repeatable_fieldsets":"","conditions":[{"collapsed":false,"process":1,"connector":"all","when":[{"connector":"AND","key":"what_best_describes_the_error_on_this_page_1573487059894","comparator":"contains","value":"broken-link-s","type":"field","modelType":"when"},{"connector":"OR","key":"what_best_describes_the_error_on_this_page_1573487059894","comparator":"contains","value":"spelling-mistake-s","type":"field","modelType":"when"}],"then":[{"key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","trigger":"show_field","value":"","type":"field","modelType":"then"}],"else":[{"key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","trigger":"hide_field","value":"","type":"field","modelType":"else"}]}],"form_title_heading_level":"3","ninjaForms":"Ninja Forms","fieldTextareaRTEInsertLink":"Insert Link","fieldTextareaRTEInsertMedia":"Insert Media","fieldTextareaRTESelectAFile":"Select a file","formHoneypot":"If you are a human seeing this field, please leave it empty.","fileUploadOldCodeFileUploadInProgress":"File Upload in Progress.","fileUploadOldCodeFileUpload":"FILE UPLOAD","currencySymbol":false,"thousands_sep":",","decimal_point":".","siteLocale":"en_US","dateFormat":"m\/d\/Y","startOfWeek":"0","of":"of","previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"weekdaysMin":["Su","Mo","Tu","We","Th","Fr","Sa"],"recaptchaConsentMissing":"reCaptcha validation couldn't load.","recaptchaMissingCookie":"reCaptcha v3 validation couldn't load the cookie needed to submit the form.","recaptchaConsentEvent":"Accept reCaptcha cookies before sending the form.","currency_symbol":"","beforeForm":"","beforeFields":"","afterFields":"","afterForm":""};form.fields=[{"objectType":"Field","objectDomain":"fields","editActive":false,"order":1,"idAttribute":"id","type":"hidden","label":"Post Title","key":"post_title_1573487572912","default":"{wp:post_title}","admin_label":"","drawerDisabled":false,"id":14,"beforeField":"","afterField":"","value":"Home Page","label_pos":"above","parentType":"hidden","element_templates":["hidden","input"],"old_classname":"","wrap_template":"wrap-no-label"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":2,"idAttribute":"id","type":"hidden","label":"Post URL","key":"post_url_1573487578465","default":"{wp:post_url}","admin_label":"","drawerDisabled":false,"id":12,"beforeField":"","afterField":"","value":"https:\/\/quackwatch.org\/","label_pos":"above","parentType":"hidden","element_templates":["hidden","input"],"old_classname":"","wrap_template":"wrap-no-label"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":3,"idAttribute":"id","type":"listcheckbox","label":"What best describes the error on this page?","key":"what_best_describes_the_error_on_this_page_1573487059894","label_pos":"above","required":1,"options":[{"errors":[],"max_options":0,"label":"Spelling Mistake(s)","value":"spelling-mistake-s","calc":"","selected":0,"order":0,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Broken Link(s)","value":"broken-link-s","calc":"","selected":0,"order":1,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}},{"errors":[],"max_options":0,"label":"Missing Image(s)","value":"missing-image-s","calc":"","selected":0,"order":2,"settingModel":{"settings":false,"hide_merge_tags":false,"error":false,"name":"options","type":"option-repeater","label":"Options <a href=\"#\" class=\"nf-add-new\">Add New<\/a> <a href=\"#\" class=\"extra nf-open-import-tooltip\"><i class=\"fa fa-sign-in\" aria-hidden=\"true\"><\/i> Import<\/a>","width":"full","group":"","value":[{"label":"One","value":"one","calc":"","selected":0,"order":0},{"label":"Two","value":"two","calc":"","selected":0,"order":1},{"label":"Three","value":"three","calc":"","selected":0,"order":2}],"columns":{"label":{"header":"Label","default":""},"value":{"header":"Value","default":""},"calc":{"header":"Calc Value","default":""},"selected":{"header":"<span class=\"dashicons dashicons-yes\"><\/span>","default":0}}}}],"container_class":"","element_class":"","admin_label":"","help_text":"","desc_text":"<p>Check all that apply.<\/p>","drawerDisabled":false,"id":13,"beforeField":"","afterField":"","value":"","parentType":"list","element_templates":["listcheckbox","input"],"old_classname":"list-checkbox","wrap_template":"wrap"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":4,"idAttribute":"id","label":"Please be specific. If there is a broken link please supply the link.","type":"textarea","key":"please_be_specific_if_there_is_a_broken_link_please_supply_the_link_1692724793760","label_pos":"above","required":1,"default":"","placeholder":"","container_class":"","element_class":"","input_limit":"","input_limit_type":"characters","input_limit_msg":"Character(s) left","manual_key":false,"admin_label":"","help_text":"","textarea_rte":"","disable_rte_mobile":"","textarea_media":"","value":"","drawerDisabled":false,"id":15,"beforeField":"","afterField":"","parentType":"textarea","element_templates":["textarea","input"],"old_classname":"","wrap_template":"wrap"},{"objectType":"Field","objectDomain":"fields","editActive":false,"order":5,"idAttribute":"id","type":"submit","label":"Submit","processing_label":"Processing","container_class":"","element_class":"","key":"submit_1523909373360","field_label":"Submit","field_key":"submit_1523909373360","id":11,"beforeField":"","afterField":"","value":"","label_pos":"above","parentType":"textbox","element_templates":["submit","button","input"],"old_classname":"","wrap_template":"wrap-no-label"}];nfForms.push(form);</script> </div> </div> </div> </div> <div class="container-fluid blue d-block d-print-none"> <footer id="site-footer" class="site-footer page-footer" role="contentinfo"> <div id="footer-row" class="row contain-text m-5 mx-auto justify-content-center"> <div class="col-md-4 col-12 footer-left mr-4"> <a href="https://quackwatch.org"><img src="https://cdn.centerforinquiry.org/img/CFImark2017-on-blue.png" class="d-md-none footer-logo mb-3" /></a> <h3>Quick Links</h3> <hr class="mb-4" /> <div class="clearfix"></div> <ul class="navbar-nav"> <div class="footer-menu"><ul id="menu-footer" class="menu"><li id="menu-item-16039" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-7243 current_page_item menu-item-16039"><a href="https://quackwatch.org/" aria-current="page">Quackwatch Home</a></li> <li id="menu-item-16034" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16034"><a href="https://quackwatch.org/about/navigate/">Navigation Guide</a></li> <li id="menu-item-16035" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16035"><a href="https://quackwatch.org/about/chd/">Newsletter</a></li> <li id="menu-item-16036" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16036"><a href="http://lists.quackwatch.org/mailman/listinfo/healthfraud_lists.quackwatch.org">Discussion List</a></li> </ul></div> </ul> </div> <div style="border-left: 3px solid #FFF; height:400px;" class="d-none d-md-block mr-4"> </div> <div class="col-md-4 col-12 footer-right"> <a href="https://quackwatch.org"><img src="https://cdn.centerforinquiry.org/img/wordpress/CFI2017-on-blue.png" class="d-none d-md-block footer-logo mb-4" /></a> <span class="d-md-none"><hr /></span> <h6><strong>Center for Inquiry – Headquarters</strong></h6> <p>PO Box 741<br /> Amherst, NY 14226<br /> <a href="tel:7166364869">(716) 636-4869</p></a> <br /> <h6><strong>Center for Inquiry – Executive Office</strong></h6> <p>1012 14th Street, NW, Suite 205<br /> Washington, DC 20005</p> <p><a href="https://quackwatch.org/terms-of-service/">Terms</a> · <a href="https://quackwatch.org/privacy/">Privacy Statement</a><br /> <a href="https://quackwatch.org">Center for Inquiry, Inc</a> © 2024 · All Rights Reserved.<br /> Registered 501(c)(3). EIN: 22-2306795</p> </div> </div> </footer><!--.page-footer--> </div> <!--wordpress footer--> <script type="text/javascript">function showhide_toggle(e,t,r,g){var a=jQuery("#"+e+"-link-"+t),s=jQuery("a",a),i=jQuery("#"+e+"-content-"+t),l=jQuery("#"+e+"-toggle-"+t);a.toggleClass("sh-show sh-hide"),i.toggleClass("sh-show sh-hide").toggle(),"true"===s.attr("aria-expanded")?s.attr("aria-expanded","false"):s.attr("aria-expanded","true"),l.text()===r?(l.text(g),a.trigger("sh-link:more")):(l.text(r),a.trigger("sh-link:less")),a.trigger("sh-link:toggle")}</script> <script type="text/javascript">!function(t,e){"use strict";function n(){if(!a){a=!0;for(var t=0;t<d.length;t++)d[t].fn.call(window,d[t].ctx);d=[]}}function o(){"complete"===document.readyState&&n()}t=t||"docReady",e=e||window;var d=[],a=!1,c=!1;e[t]=function(t,e){return a?void setTimeout(function(){t(e)},1):(d.push({fn:t,ctx:e}),void("complete"===document.readyState||!document.attachEvent&&"interactive"===document.readyState?setTimeout(n,1):c||(document.addEventListener?(document.addEventListener("DOMContentLoaded",n,!1),window.addEventListener("load",n,!1)):(document.attachEvent("onreadystatechange",o),window.attachEvent("onload",n)),c=!0)))}}("wpBruiserDocReady",window); (function(){var wpbrLoader = (function(){var g=document,b=g.createElement('script'),c=g.scripts[0];b.async=1;b.src='https://quackwatch.org/?gdbc-client=3.1.43-'+(new Date()).getTime();c.parentNode.insertBefore(b,c);});wpBruiserDocReady(wpbrLoader);window.onunload=function(){};window.addEventListener('pageshow',function(event){if(event.persisted){(typeof window.WPBruiserClient==='undefined')?wpbrLoader():window.WPBruiserClient.requestTokens();}},false);})(); </script><link rel='stylesheet' id='dashicons-css' href='https://quackwatch.org/wp-includes/css/dashicons.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='nf-display-css' href='https://quackwatch.org/wp-content/plugins/ninja-forms/assets/css/display-opinions-light.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='nf-font-awesome-css' href='https://quackwatch.org/wp-content/plugins/ninja-forms/assets/css/font-awesome.min.css?ver=6.6.2' type='text/css' media='all' /> <style id='core-block-supports-inline-css' type='text/css'> /** * Core styles: block-supports */ </style> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/embed-any-document/js/pdfobject.min.js?ver=2.7.4" id="awsm-ead-pdf-object-js"></script> <script type="text/javascript" id="awsm-ead-public-js-extra"> /* <![CDATA[ */ var eadPublic = []; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/embed-any-document/js/embed-public.min.js?ver=2.7.4" id="awsm-ead-public-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/ui/core.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/jquery/ui/datepicker.js?ver=1.13.3" id="jquery-ui-datepicker-js"></script> <script type="text/javascript" id="jquery-ui-datepicker-js-after"> /* <![CDATA[ */ jQuery(function(jQuery){jQuery.datepicker.setDefaults({"closeText":"Close","currentText":"Today","monthNames":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthNamesShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"nextText":"Next","prevText":"Previous","dayNames":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"dayNamesShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"dayNamesMin":["S","M","T","W","T","F","S"],"dateFormat":"MM d, yy","firstDay":0,"isRTL":false});}); /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/clipboard.js?ver=2.0.11" id="clipboard-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-includes/js/comment-reply.js?ver=6.6.2" id="comment-reply-js" async="async" data-wp-strategy="async"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/js/bootstrap.bundle.min.js?ver=4.6.2" id="bootstrap4-bundle-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/themes/bootstrap-basic4/assets/js/main.js?ver=6.6.2" id="bootstrap-basic4-main-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms/assets/js/min/front-end-deps.js?ver=3.8.17" id="nf-front-end-deps-js"></script> <script type="text/javascript" id="nf-front-end-js-extra"> /* <![CDATA[ */ var nfi18n = {"ninjaForms":"Ninja Forms","changeEmailErrorMsg":"Please enter a valid email address!","changeDateErrorMsg":"Please enter a valid date!","confirmFieldErrorMsg":"These fields must match!","fieldNumberNumMinError":"Number Min Error","fieldNumberNumMaxError":"Number Max Error","fieldNumberIncrementBy":"Please increment by ","fieldTextareaRTEInsertLink":"Insert Link","fieldTextareaRTEInsertMedia":"Insert Media","fieldTextareaRTESelectAFile":"Select a file","formErrorsCorrectErrors":"Please correct errors before submitting this form.","formHoneypot":"If you are a human seeing this field, please leave it empty.","validateRequiredField":"This is a required field.","honeypotHoneypotError":"Honeypot Error","fileUploadOldCodeFileUploadInProgress":"File Upload in Progress.","fileUploadOldCodeFileUpload":"FILE UPLOAD","currencySymbol":"","fieldsMarkedRequired":"Fields marked with an <span class=\"ninja-forms-req-symbol\">*<\/span> are required","thousands_sep":",","decimal_point":".","siteLocale":"en_US","dateFormat":"m\/d\/Y","startOfWeek":"0","of":"of","previousMonth":"Previous Month","nextMonth":"Next Month","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"weekdaysMin":["Su","Mo","Tu","We","Th","Fr","Sa"],"recaptchaConsentMissing":"reCaptcha validation couldn't load.","recaptchaMissingCookie":"reCaptcha v3 validation couldn't load the cookie needed to submit the form.","recaptchaConsentEvent":"Accept reCaptcha cookies before sending the form."}; var nfFrontEnd = {"adminAjax":"https:\/\/quackwatch.org\/wp-admin\/admin-ajax.php","ajaxNonce":"e46e11ffa0","requireBaseUrl":"https:\/\/quackwatch.org\/wp-content\/plugins\/ninja-forms\/assets\/js\/","use_merge_tags":{"user":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"post":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"system":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"fields":{"address":"address","textbox":"textbox","button":"button","checkbox":"checkbox","city":"city","confirm":"confirm","date":"date","email":"email","firstname":"firstname","html":"html","hidden":"hidden","lastname":"lastname","listcheckbox":"listcheckbox","listcountry":"listcountry","listimage":"listimage","listmultiselect":"listmultiselect","listradio":"listradio","listselect":"listselect","liststate":"liststate","note":"note","number":"number","password":"password","passwordconfirm":"passwordconfirm","product":"product","quantity":"quantity","recaptcha":"recaptcha","recaptcha_v3":"recaptcha_v3","repeater":"repeater","shipping":"shipping","spam":"spam","starrating":"starrating","submit":"submit","terms":"terms","textarea":"textarea","total":"total","unknown":"unknown","zip":"zip","hr":"hr"},"calculations":{"html":"html","hidden":"hidden","note":"note","unknown":"unknown"}},"opinionated_styles":"light","filter_esc_status":"false","nf_consent_status_response":[]}; var nfInlineVars = []; /* ]]> */ </script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms/assets/js/min/front-end.js?ver=3.8.17" id="nf-front-end-js"></script> <script type="text/javascript" src="https://quackwatch.org/wp-content/plugins/ninja-forms-conditionals/assets/js/min/front-end.js?ver=6.6.2" id="nf-cl-front-end-js"></script> <script id="tmpl-nf-layout" type="text/template"> <span id="nf-form-title-{{{ data.id }}}" class="nf-form-title"> {{{ ( 1 == data.settings.show_title ) ? '<h' + data.settings.form_title_heading_level + '>' + data.settings.title + '</h' + data.settings.form_title_heading_level + '>' : '' }}} </span> <div class="nf-form-wrap ninja-forms-form-wrap"> <div class="nf-response-msg"></div> <div class="nf-debug-msg"></div> <div class="nf-before-form"></div> <div class="nf-form-layout"></div> <div class="nf-after-form"></div> </div> </script> <script id="tmpl-nf-empty" type="text/template"> </script> <script id="tmpl-nf-before-form" type="text/template"> {{{ data.beforeForm }}} </script><script id="tmpl-nf-after-form" type="text/template"> {{{ data.afterForm }}} </script><script id="tmpl-nf-before-fields" type="text/template"> <div class="nf-form-fields-required">{{{ data.renderFieldsMarkedRequired() }}}</div> {{{ data.beforeFields }}} </script><script id="tmpl-nf-after-fields" type="text/template"> {{{ data.afterFields }}} <div id="nf-form-errors-{{{ data.id }}}" class="nf-form-errors" role="alert"></div> <div class="nf-form-hp"></div> </script> <script id="tmpl-nf-before-field" type="text/template"> {{{ data.beforeField }}} </script><script id="tmpl-nf-after-field" type="text/template"> {{{ data.afterField }}} </script><script id="tmpl-nf-form-layout" type="text/template"> <form> <div> <div class="nf-before-form-content"></div> <div class="nf-form-content {{{ data.element_class }}}"></div> <div class="nf-after-form-content"></div> </div> </form> </script><script id="tmpl-nf-form-hp" type="text/template"> <label id="nf-label-field-hp-{{{ data.id }}}" for="nf-field-hp-{{{ data.id }}}" aria-hidden="true"> {{{ nfi18n.formHoneypot }}} <input id="nf-field-hp-{{{ data.id }}}" name="nf-field-hp" class="nf-element nf-field-hp" type="text" value="" aria-labelledby="nf-label-field-hp-{{{ data.id }}}" /> </label> </script> <script id="tmpl-nf-field-layout" type="text/template"> <div id="nf-field-{{{ data.id }}}-container" class="nf-field-container {{{ data.type }}}-container {{{ data.renderContainerClass() }}}"> <div class="nf-before-field"></div> <div class="nf-field"></div> <div class="nf-after-field"></div> </div> </script> <script id="tmpl-nf-field-before" type="text/template"> {{{ data.beforeField }}} </script><script id="tmpl-nf-field-after" type="text/template"> <# /* * Render our input limit section if that setting exists. */ #> <div class="nf-input-limit"></div> <# /* * Render our error section if we have an error. */ #> <div id="nf-error-{{{ data.id }}}" class="nf-error-wrap nf-error" role="alert"></div> <# /* * Render any custom HTML after our field. */ #> {{{ data.afterField }}} </script> <script id="tmpl-nf-field-wrap" type="text/template"> <div id="nf-field-{{{ data.id }}}-wrap" class="{{{ data.renderWrapClass() }}}" data-field-id="{{{ data.id }}}"> <# /* * This is our main field template. It's called for every field type. * Note that must have ONE top-level, wrapping element. i.e. a div/span/etc that wraps all of the template. */ #> <# /* * Render our label. */ #> {{{ data.renderLabel() }}} <# /* * Render our field element. Uses the template for the field being rendered. */ #> <div class="nf-field-element">{{{ data.renderElement() }}}</div> <# /* * Render our Description Text. */ #> {{{ data.renderDescText() }}} </div> </script> <script id="tmpl-nf-field-wrap-no-label" type="text/template"> <div id="nf-field-{{{ data.id }}}-wrap" class="{{{ data.renderWrapClass() }}}" data-field-id="{{{ data.id }}}"> <div class="nf-field-label"></div> <div class="nf-field-element">{{{ data.renderElement() }}}</div> <div class="nf-error-wrap"></div> </div> </script> <script id="tmpl-nf-field-wrap-no-container" type="text/template"> {{{ data.renderElement() }}} <div class="nf-error-wrap"></div> </script> <script id="tmpl-nf-field-label" type="text/template"> <div class="nf-field-label"> <# if ( data.type === "listcheckbox" || data.type === "listradio" ) { #> <span id="nf-label-field-{{{ data.id }}}" class="nf-label-span {{{ data.renderLabelClasses() }}}"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} {{{ ( 'undefined' != typeof data.required && 1 == data.required ) ? '<span class="ninja-forms-req-symbol">*</span>' : '' }}} {{{ data.maybeRenderHelp() }}} </span> <# } else { #> <label for="nf-field-{{{ data.id }}}" id="nf-label-field-{{{ data.id }}}" class="{{{ data.renderLabelClasses() }}}"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} {{{ ( 'undefined' != typeof data.required && 1 == data.required ) ? '<span class="ninja-forms-req-symbol">*</span>' : '' }}} {{{ data.maybeRenderHelp() }}} </label> <# } #> </div> </script> <script id="tmpl-nf-field-error" type="text/template"> <div class="nf-error-msg nf-error-{{{ data.id }}}">{{{ data.msg }}}</div> </script><script id="tmpl-nf-form-error" type="text/template"> <div class="nf-error-msg nf-error-{{{ data.id }}}">{{{ data.msg }}}</div> </script><script id="tmpl-nf-field-input-limit" type="text/template"> {{{ data.currentCount() }}} {{{ nfi18n.of }}} {{{ data.input_limit }}} {{{ data.input_limit_msg }}} </script><script id="tmpl-nf-field-null" type="text/template"> </script><script id="tmpl-nf-field-hidden" type="text/template"> <input type="hidden" id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" type="text" value="{{{ _.escape( data.value ) }}}" {{{ data.renderPlaceholder() }}}> </script> <script id='tmpl-nf-field-input' type='text/template'> <input id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" aria-invalid="false" aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" type="text" value="{{{ _.escape( data.value ) }}}" {{{ data.renderPlaceholder() }}} {{{ data.maybeDisabled() }}} aria-labelledby="nf-label-field-{{{ data.id }}}" {{{ data.maybeRequired() }}} > </script> <script id="tmpl-nf-field-listcheckbox" type="text/template"> <ul aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}"> {{{ data.renderOptions() }}} </ul> </script> <script id='tmpl-nf-field-listcheckbox-option' type='text/template'> <# if ( ! data.visible ) { return '' } #> <li> <input type="checkbox" id="nf-field-{{{ data.fieldID }}}-{{{ data.index }}}" name="nf-field-{{{ data.fieldID }}}" class="{{{ data.classes }}} nf-element {{{ ( data.isSelected ) ? ' nf-checked' : '' }}}" value="{{{ data.value }}}" {{{ ( data.isSelected ) ? 'checked="checked"' : '' }}} aria-labelledby="nf-label-field-{{{ data.fieldID }}}-{{{ data.index }}}" <# if( data.required ) { #> required aria-required="true" <# } #> > <label for="nf-field-{{{ data.fieldID }}}-{{{ data.index }}}" id="nf-label-field-{{{ data.fieldID }}}-{{{ data.index }}}" class="{{{ ( data.isSelected ) ? 'nf-checked-label' : '' }}}">{{{ data.label }}}</label> </li> </script> <script id='tmpl-nf-field-listcheckbox-other' type='text/template'> <li {{{ ( ! data.visible ) ? 'style="display:none"' : '' }}}> <input type="checkbox" id="nf-field-{{{ data.fieldID }}}-other" name="nf-field-{{{ data.fieldID }}}" class="{{{ data.classes }}} nf-element" value="nf-other" {{{ ( ! data.valueFound ) ? 'checked="checked"' : '' }}} aria-labelledby="nf-label-field-{{{ data.fieldID }}}-other" <# if( data.required ) { #> required aria-required="true" <# } #> > <label id="nf-label-field-{{{ data.fieldID }}}-other">Other {{{ data.renderOtherText() }}} </label> </li> </script> <script id='tmpl-nf-field-listcheckbox-other-text' type='text/template'> <input type="text" name="nf-field-{{{ data.fieldID }}}" class="nf-element" value="{{{ data.currentValue }}}"> </script> <script id="tmpl-nf-field-textarea" type="text/template"> <textarea id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" aria-invalid="false" aria-describedby="nf-error-{{{ data.id }}} nf-description-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element" {{{ data.renderPlaceholder() }}} {{{ data.maybeDisabled() }}} {{{ data.maybeDisableAutocomplete() }}} {{{ data.maybeInputLimit() }}} aria-labelledby="nf-label-field-{{{ data.id }}}" {{{ data.maybeRequired() }}} >{{{ _.escape( data.value ) }}}</textarea> </script> <!-- Rich Text Editor Templates --> <script id="tmpl-nf-rte-media-button" type="text/template"> <span class="dashicons dashicons-admin-media"></span> </script> <script id="tmpl-nf-rte-link-button" type="text/template"> <span class="dashicons dashicons-admin-links"></span> </script> <script id="tmpl-nf-rte-unlink-button" type="text/template"> <span class="dashicons dashicons-editor-unlink"></span> </script> <script id="tmpl-nf-rte-link-dropdown" type="text/template"> <div class="summernote-link"> URL <input type="url" class="widefat code link-url"> <br /> Text <input type="url" class="widefat code link-text"> <br /> <label> <input type="checkbox" class="link-new-window"> {{{ nfi18n.fieldsTextareaOpenNewWindow }}} </label> <input type="button" class="cancel-link extra" value="Cancel"> <input type="button" class="insert-link extra" value="Insert"> </div> </script> <script id="tmpl-nf-field-submit" type="text/template"> <# let myType = data.type if('save'== data.type){ myType = 'button' } #> <input id="nf-field-{{{ data.id }}}" class="{{{ data.renderClasses() }}} nf-element " type="{{{myType}}}" value="{{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}}" {{{ ( data.disabled ) ? 'aria-disabled="true" disabled="true"' : '' }}}> </script><script id='tmpl-nf-field-button' type='text/template'> <button id="nf-field-{{{ data.id }}}" name="nf-field-{{{ data.id }}}" class="{{{ data.classes }}} nf-element"> {{{ ( data.maybeFilterHTML() === 'true' ) ? _.escape( data.label ) : data.label }}} </button> </script> <!--end wordpress footer--> </div><!--Wrapper--> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script type="text/javascript" src="https://centerforinquiry.org/js/new/main_init.js"></script> </body> </html>