Read Dr. Tennant's latest bulletin on the benefit of Ketorolac also known as Toradol.
Please note: Dr. Tennant incorrectly refers to Ketorolac as "K". Since Ketamine is commonly referred to as "K", I've asked that this be changed, so please disregard this in the bulletin.
// Open lightbox when URL has ?newsletter=open
import wixWindow from 'wix-window';
$w.onReady(function () {
const params = new URLSearchParams(window.location.search);
if (params.get('newsletter') === 'open') {
wixWindow.openLightbox('NewsletterSignupLightbox');
}
});
Comments