';
document.querySelector('#copytext').value = textContent;
modal.showModal();
});
// Modal close functionality
const modal = document.querySelector('.republish-modal');
const closeBtn = document.querySelector('.republish-modal-close');
// Close button click
closeBtn.addEventListener('click', function() {
modal.close();
});
// Close on backdrop click
modal.addEventListener('click', function(e) {
if (e.target === modal) {
modal.close();
}
});
// Close on ESC key (this is usually built-in, but adding for safety)
modal.addEventListener('keydown', function(e) {
if (e.key === 'Escape') {
modal.close();
}
});
// Copy text button functionality
document.querySelector('.copy-text-button').addEventListener('click', async function() {
const textarea = document.querySelector('#copytext');
const text = textarea.value;
try {
// Try modern Clipboard API first
if (navigator.clipboard && window.isSecureContext) {
await navigator.clipboard.writeText(text);
this.textContent = 'Copied!';
} else {
// Fallback for older browsers
textarea.select();
document.execCommand('copy');
this.textContent = 'Copied!';
}
// Reset button text after 2 seconds
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
} catch (err) {
console.error('Failed to copy text: ', err);
// Fallback to selection if copying fails
textarea.select();
this.textContent = 'Text selected';
setTimeout(() => {
this.textContent = 'Copy text';
}, 2000);
}
});
});
Washington state's largest Medicaid contractor, Molina Healthcare, has been marketing a not-yet-approved synthetic hormone shot to prevent recurring -- and grossly expensive -- premature deliveries, writes Kyung M. Song of The Seattle Times.InvestigateWest › Edit Post — WordPress
Preterm and complicated births, which are on the rise, have been identified as one of the healthcare company's largest expenses. For two years, Molina has been aggressively promoting 17P, a man-made injectable hormone that mimics a woman's natural progesterone and has been shown to decrease premature births by one-third, according to a National Institute of Child Health and Human Development study. While doctors can prescribe it, most health plans do not cover it, and it has not been approved by the U.S. Food and Drug Administration.
The efforts have been financially beneficial to the national company, which pays for more than 10,000 births each year in Washington state. Taxpayers may want to take notice, too, considering that the majority of the state's Molina clients are enrolled in Washington's Medicaid program, which provides health-related funding for low-income individuals and covers the costs of nearly half of Washington's births every year.