Addiction and Treatment Statistics for Onalaska, Wisconsin
Updated on November 28, 2018
Onalaska, Wisconsin Alcohol And Drug Rehab Centers
The Mississippi River flows through Lake Onalaska, which makes up the widest part of the 2,348-mile long river. The city of Onalaska is home to more than 18,000 people as well as a variety of wildlife and waterfowl.
Despite the peaceful natural environment in small Wisconsin cities like Onalaska, some individuals in the area struggle with drug abuse and addiction. There are three Onalaska alcohol and drug rehab centers that address these issues and aim to make the city a safer and healthier place to live.
Introducing
virtual care
Get treatment when
and how you need it.
Alcohol And Drug Rehab Centers Near Onalaska
La Crosse County and the city of La Crosse offer various addiction treatment programs to Onalaska residents. Since Onalaska is near the Minnesota border, some people may travel across state lines to seek treatment. Most facilities offer two different levels of care for recovering individuals.
Outpatient programs involve the family in treatment, educating them and helping them support their loved one in recovery. Rehab facilities also offers dual diagnosis treatment and aftercare services.
Substance Abuse In Onalaska And La Crosse County
Similar to other parts of Wisconsin, La Crosse County has a higher-than-average number of methamphetamine cases each year. It also had multiple large drug busts in 2018, including:
- In October, A man from La Crosse was arrested for selling cocaine out of his home. Police found 44 g of crack cocaine and 10.2 g of powdered cocaine in his possession.
- During a traffic stop in March, police found 103 g of methamphetamine, 30 g of powdered cocaine, 15 g of crack cocaine, 13 g of heroin, 9 g of marijuana, a handgun, and $4722 in Onalaska man’s car. Another 167 g of methamphetamine, 97 g of cocaine, and $25,792 were discovered in his girlfriend’s vehicle and home.
In the three years between 2014 and 2017, opioid overdose deaths in La Crosse County more than tripled. Half of the deaths in 2017 involved fentanyl, a potent opioid that is much stronger than heroin. Not every opioid overdose is fatal, though—hospitalization rates for overdose in La Crosse County are much higher than the death rate.
The county is working to improve access to Narcan (naloxone), which reverses an opioid overdose. Research shows, however, that while Narcan saves lives, it does not help people overcome addiction or encourage them to seek treatment.
Comparing Treatment Programs
Wisconsin has a wide range of alcohol and drug rehab centers that offer comprehensive care for addiction. Some programs are based on the 12 steps to recovery, while others take a less traditional approach. Some use evidence-based treatment methods as well as alternative therapies, while others only offer counseling and behavioral therapy.
Each program may be helpful to some individuals, but everyone’s needs are different. When comparing treatment programs, many people only consider those close to home, but the best program may require a person to travel.
Traveling can be a very good thing for the recovery process. Addiction treatment should be life-changing, and it can be hard to change in a familiar environment that reminds someone of their addiction. For many people, living somewhere new during treatment encourages growth and supports the healing process.
To compare more Wisconsin alcohol and drug rehab centers, reach out to a treatment specialist today.
where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>