-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
324 lines (271 loc) · 19.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
<!DOCTYPE HTML>
<html>
<head>
<title>ISACC CARING CONTACTS</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="shortcut icon" type="./image/x-icon" href="./images/Icon.png"/>
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=MuseoModerno">
<script src="https://kit.fontawesome.com/0fbfe3d2f7.js" crossorigin="anonymous"></script>
<noscript><link rel="stylesheet" href="assets/css/noscript.css" /></noscript>
<style>
.resource {
color: #b292c8;
}
.faq {
color: #efc542;
}
.story {
color: #96cfcf;
}
.clip-spacer {
clip-path: polygon(100% 0%, 0% 0%, 0% 65%, 1% 64.95%, 2% 64.8%, 3% 64.59999999999999%, 4% 64.3%, 5% 63.9%, 6% 63.45%, 7% 62.9%, 8% 62.25%, 9% 61.55%, 10% 60.8%, 11% 59.95%, 12% 59.05%, 13% 58.1%, 14% 57.1%, 15% 56.05%, 16% 55%, 17% 53.9%, 18% 52.8%, 19% 51.65%, 20% 50.5%, 21% 49.35%, 22% 48.2%, 23% 47.05%, 24% 45.9%, 25% 44.8%, 26% 43.75%, 27% 42.75%, 28% 41.75%, 29% 40.8%, 30% 39.9%, 31% 39.1%, 32% 38.35%, 33% 37.65%, 34% 37.05%, 35% 36.5%, 36% 36.05%, 37% 35.65%, 38% 35.35%, 39% 35.15%, 40% 35.05%, 41% 35%, 42% 35.05%, 43% 35.2%, 44% 35.45%, 45% 35.75%, 46% 36.15%, 47% 36.65%, 48% 37.2%, 49% 37.85%, 50% 38.55%, 51% 39.35%, 52% 40.2%, 53% 41.1%, 54% 42.05%, 55% 43.05%, 56% 44.1%, 57% 45.15%, 58% 46.3%, 59% 47.4%, 60% 48.55%, 61% 49.7%, 62% 50.85%, 63% 52%, 64% 53.15%, 65% 54.25%, 66% 55.35%, 67% 56.4%, 68% 57.45%, 69% 58.4%, 70% 59.35%, 71% 60.2%, 72% 61.05%, 73% 61.8%, 74% 62.45%, 75% 63.05%, 76% 63.6%, 77% 64.05%, 78% 64.40000000000001%, 79% 64.7%, 80% 64.84999999999999%, 81% 65%, 82% 65%, 83% 64.90000000000001%, 84% 64.75%, 85% 64.5%, 86% 64.2%, 87% 63.75%, 88% 63.25%, 89% 62.7%, 90% 62.05%, 91% 61.3%, 92% 60.5%, 93% 59.65%, 94% 58.75%, 95% 57.8%, 96% 56.8%, 97% 55.75%, 98% 54.65%, 99% 53.55%, 100% 52.4%);
background: #f3eefa;
min-height: 48px;
margin-top: -48px;
transform: rotate(180deg);
position: relative;
top: 120px;
}
h1 {
font-weight: 900;
font-family: 'MuseoModerno', serif;
letter-spacing: 0.4rem;
font-size: 5em; }
h2 {
font-family: 'MuseoModerno', serif;
}
h3 {
font-weight: 100;
}
#mybutton {
position: fixed;
top: 4px;
right: 10px;
z-index: 1;
}
</style>
<script type="text/javascript">
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
</script>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper" class="divided">
<!-- One -->
<section class="banner style2 orient-left content-align-left image-position-center">
<div class="content">
<h1><img src="images/Icon (big).png" style="height: 0.75em;">
<span style="color: #34A9C7;">ISACC</span>
</h1>
<h3>Informatics Supported Authorship of Caring Contacts</h3>
<!--<p></p><span class="image fit"><img src="images/frame 70.png"></span>-->
<ul class="actions">
<li><a href="#first" class="button wide small smooth-scroll-middle">Learn About Caring Contacts <i class="fa fa-caret-down"></i> </a></li>
<li><a href="#demo" class="button small wide smooth-scroll-middle">Learn About the Project <i class="fa fa-caret-down"></i> </a></li>
</ul>
</div>
<div class="image">
<img src="images/Frame 64.png" alt="" />
</div>
</section>
<section class="spotlight style1 orient-right content-align-left image-position-left">
<div class="content">
<h2 id="first">What are Caring Contacts?</h2>
<p>Caring Contacts are brief, periodic messages sent over 1-2 years that express unconditional care and concern. They have reduced suicide, suicide attempts, and suicide ideation, are cost-effective, are recommended by multiple clinical practice guidelines, and have the potential to scale up to a single individual intervening with hundreds of suicidal individuals. However, despite this strong support, few health systems are using Caring Contacts and many who have made maladaptive adaptations that weaken core Caring Contacts principles. These maladaptive modifications occur largely because Caring Contacts activities fall outside of established workflows. Intervention administration can also be too time consuming for clinic staff or service organizations for whom valuable clinical and volunteer time should be spent with people, not paperwork. Thus, many organizations express excitement about Caring Contacts, but implementation falters in the face of what can appear to be insurmountable coordination and risk management complexities.</p>
<ul class="actions stacked">
<!--<li><a href="https://demo.takeontransplant.org/users/login" target="_blank" class="button big wide smooth-scroll-middle">Try the Demo Site <i class="fa fa-caret-right"></i> </a></li>
-->
<li><a href="https://www.mirecc.va.gov/visn19/cpg/recs/13/" class="button big wide smooth-scroll-middle" target="_blank"> More About Caring Contacts <i class="fa fa-caret-right"></i> </a></li>
</ul>
</div>
<div class="image">
<img src="images/priscilla-du-preez-aPa843frIzI-unsplash (1).jpg" alt="" />
</div>
</section>
<section class="wrapper style1 align-left">
<div class="inner">
<!--<h2>Features</h2>-->
<div class="items style3 medium onscroll-fade-in">
<section class="feature">
<i class="fas fa-book" style="color: #FE8F3E;"></i>
<h2 style="color:#FE8F3E;">Integration</h2>
<p>ISACC is highly usable and pilot tested and is a practical solution to the majority of reasons organizations don’t implement Caring Contacts or don’t implement them correctly. We currently offer regular training and consultation on Caring Contacts and incorporate ISACC into these trainings to increase the use of Caring Contacts.</p>
</section>
<section class="feature">
<i class="fas fa-users" style="color: #34A9C7;"></i>
<h2 style="color:#34A9C7;">Collaboration</h2>
<p>We've partnered with multiple clinics and community organizations to implement one- and two-way text message Caring Contacts. Additionally, we've developed ISACC to streamline the handling of postal mail Caring Contacts, thereby reducing staff workload. Our aim is to efficiently reach more individuals experiencing suicidal thoughts or behaviors and ensure that no one falls through the cracks.</p>
</section>
<section class="feature">
<i class="fas fa-comments" style="color: #7D8EED;"></i>
<h2 style="color: #7D8EED;">Research</h2>
<p>A practical and efficient method of sending Caring Contacts facilitates research with veterans and active-duty service members as well as native and rural communities by our center and other research teams to improve Caring Contacts impact and efficiency.</p>
</section>
</div>
</div>
</section>
<section class="spotlight style3 orient-left content-align-left image-position-center onscroll-image-fade-in">
<div class="content">
<h2 id="demo">Explore the ISACC System</h2>
<!--<p>Navigate through our demo site at your own pace to see how to register, take the initial My CF Stage survey, and view recommended content.</p>
<a href="https://demo.takeontransplant.org/users/login" target="_blank" class="button big wide smooth-scroll-middle">Try the Demo Site <i class="fa fa-caret-right"></i> </a>
-->
<div class="items style3 big onscroll-fade-in">
<section class="feature">
<i class="fas fa-book" style="color: #FE8F3E;"></i>
<p>Privacy and convenience for both the authors and the recipients</p>
</section>
<section class="feature">
<i class="fas fa-book" style="color: #FE8F3E;"></i>
<p>Caring Contacts Automated messages are prescheduled, personalized for each recipient and editable on demand</p>
</section>
<section class="feature">
<i class="fas fa-book" style="color: #FE8F3E;"></i>
<p>Customizable notifications to the author via email or text keep them in the loop on recipient replies</p>
</section>
<section class="feature">
<i class="fas fa-book" style="color: #FE8F3E;"></i>
<p>The <span style="font-family: 'MuseoModerno';">ISACC</span> system provides context to authors via notes and message history</p>
</section>
</div>
<ul class="actions">
<li><a href="" target="_blank" class="button small wide smooth-scroll-middle">Contact us to see the ISACC System <i class="fa fa-caret-right"></i> </a></li>
</ul>
<ul class="actions">
<li><a href="#first" class="button wide small smooth-scroll-middle">Learn About the Author Experience <i class="fa fa-caret-down"></i> </a></li>
<li><a href="#first" class="button wide small smooth-scroll-middle">Learn About the Recipient Experience <i class="fa fa-caret-down"></i> </a></li>
</ul>
</div>
<div class="image">
<img src="images/Lockscreen.png" alt="" />
</div>
</section>
<section class="wrapper style1 align-left">
<div class="inner">
<h2>Recipient Experience</h2>
<p>Feeling suicidal is so much about feeling alone and feeling this will never change. Caring Contacts arrive periodically - weekly, monthly - over a year or more showing continued care, interest, and support with no effort from the recipient.</p>
<p>Caring Contacts can be offered as aftercare following hospitalization or a safety plan and has been used successfully with recipients from a variety of backgrounds - military, veteran, youth, native communities, primary care and emergency departments, healthcare providers, etc. - from around the globe including the US, Australia, and Iran.</p>
<img src="images/Frame 65.png" class="image fit">
<div class="items style3 big onscroll-fade-in">
<section class="feature">
<p class="major">“I actually enjoyed it, because I knew it wasn't just a computer, it was an actual message.”</p>
</section>
<section class="feature">
<p class="major">“[The messages] made me value life more. Because life is valuable. It really is.”</p>
</section>
<section class="feature">
<p class="major">“It helped me boost my confidence. When I was feeling down, there was somebody thinking of me and it made me feel better about myself, made me move forward. That's what those messages helped me with, gave me strength.”</p>
</section>
<section class="feature">
<p class="major">“It was a good feeling to know that somebody is actually out there. Somebody thought about you today and decided to check on your wellbeing... it helped me to understand there are people that care out there. It's not just me by myself, that it's okay to talk to someone that I don't have to keep it all bottled up.”</p>
</section>
</div>
</section>
<section class="wrapper style1 align-left">
<div class="inner">
<h2>Author Experience</h2>
<img src="images/Frame 66.png" class="image fit">
<p>Our aim is to make sending Caring Contacts almost as effortless as receiving them. Though we may never fully achieve that, ISACC securely tracks all the necessary details, ensuring that the correct messages are sent to the appropriate individuals at the right moment. It alerts you with a secure link to key information to know what to do when someone responds. ISACC allows for secure replies from both phones and computers.</p>
<img src="images/Frame 67.png" class="image fit">
</div>
</section>
<!--<section class="wrapper style1 align-center" style="background: #F7F7F7; display: none;" id="video">
<div class="inner">
<iframe class='sproutvideo-player' src='https://videos.sproutvideo.com/embed/ea9ddbb9151fe4c163/4fb76d5c32d9cf9f?playerTheme=light' width='100%' height='400' frameboarder='0' allowfullscreen></iframe>
</div>
</section>-->
<section class="spotlight style1 orient-right content-align-left image-position-center">
<div class="content">
<h2>Why ISACC was developed</h2>
<p>The suicide rate has increased 28% over the past two decades while heart disease, diabetes, and cancer mortalities have declined. Since 2011, new standards have led to improved suicide risk screening and risk management. Treatment, however, has lagged because delivering most well-established psychotherapies at scale is infeasible. Thus, the need for suicide prevention has skyrocketed without available resources to meet demand. In addition, the COVID-19 pandemic has caused profound psychological and social effects and has exacerbated the demand for telehealth and technology-mediated communications. The necessity for an accelerated shift to highly scalable and technology-based solutions for suicide prevention will not be reversed. The suicide rate has increased 28% over the past two decades while heart disease, diabetes, and cancer mortalities have declined. Since 2011, new standards have led to improved screening and management of suicide risk. Treatment, however, has lagged because it's impractical to provide most widely recognized forms of psychotherapy on a large scale. Thus, the need for suicide prevention has skyrocketed without available resources to meet demand. In addition, the COVID-19 pandemic has caused profound psychological and social effects and has exacerbated the demand for telehealth and technology-mediated communications. There’s a pressing need to quickly adopt scalable, technology-driven approaches for preventing suicide. </p>
</div>
<div class="image">
<img src="images/rasheed-kemy-oqY09oVTa3k-unsplash.png" alt="" />
</div>
</section>
<section class="spotlight style1 orient-left content-align-left image-position-center">
<div class="content">
<h2>How ISACC was developed</h2>
<p>Based on our research, we have adapted Caring Contacts for text message and demonstrated its feasibility and acceptability in three studies. We have conducted a cultural adaptation of Caring Contacts for the military, native communities and a rural/frontier health system in Idaho. We have also seen Caring Contacts is both feasible and acceptable in five native communities when sent by lay members of the community who don’t have clinical training. While a licensed clinician was available, she was unneeded after the initial training period. To facilitate scaling of Caring Contacts, we have used biomedical informatics and software development methods including human-centered design, natural language processing, agile prototyping, and electronic health record integration, to design a web-based application “Informatics Supported Authorship of Caring Contacts” or ISACC that makes Caring Contacts usable for service organizations staffed by non-clinicians as well as clinical care.</p>
</div>
<div class="image">
<img src="images/christina-wocintechchat-com-rCyiK4_aaWw-unsplash.jpg" alt="" />
</div>
</section>
<section class="spotlight style1 orient-right content-align-left image-position-center">
<div class="content">
<h2>About Us</h2>
<p>The Center for Suicide Prevention and Recovery (CSPAR) teamed up with the Clinical Informatics Research Group (CIRG) and experts in Human Centered Design and clinical decision support tools to develop ISACC.</p>
<p><b>The Center for Suicide Prevention and Recovery</b> promotes the recovery of individuals experiencing suicidal thoughts and behavior and the effectiveness and resilience of the clinical staff and families who care for them through
<ul>
<li>conducting rigorous and ecologically valid research</li>
<li>developing innovative interventions</li>
<li>improving policies, systems and environments of care</li>
<li>providing expert training and consultation</li>
<li>listening to and understanding the lived experience of those we serve</li></ul></p>
<p><b>The Clinical Informatics Research Group</b> designs, develops, builds, and operates information systems that securely manage health information for projects in the Clinical, Public Health, and Global Health Informatics domains.</p>
<p>Support for the development of ISACC came from the <a href="https://gibhs.psychiatry.uw.edu/">Garvey Institute for Brain Health Solutions</a> and the <a href="https://wefacethefight.org/">Face the Fight™</a>.</p>
<h2>Project Team</h2>
<h3>Center for Suicide Prevention and Recovery</h3>
<h4><a href="https://www.uwcspar.org/kate-comtois.html" target="_blank">Kate Comtois, Director</a></h4>
<h4>Barbara Wright</h4>
<h4>Anna Evanson</h4>
<h3>Clinical Informatics Research Group</h3>
<h4>William Lober, Director</h4>
<h4>Justin McReynolds</h4>
<h4>Amy Chen</h4>
<h4>Sierramatice Karras</h4>
</div>
<div class="image">
<img src="images/hannah-busing-Zyx1bK9mqmA-unsplash.jpg" alt="" />
</div>
</section>
<span class="clip-spacer"></span>
<!-- Seven -->
<section class="wrapper style1 align-center" style="background: #E3F1F1;">
<div class="inner medium">
<div class="items style3 medium">
<section>
<a href="https://www.washington.edu/" target="_blank"><img src="images/uwLogo-transparentbg.png" class="image fit" alt="UW logo" /></a>
</section>
<section>
<a href="https://www.cirg.washington.edu/" target="_blank"><img src="images/CIRG_logo.png" class="image fit" style="padding: 3em;" alt="CIRG logo" /></a>
</section>
<section>
<a href="https://www.uwcspar.org/" target="_blank"><img src="images/CSPAR-logo-4-10-20-for-light-background.png" class="image fit" alt="CSPAR foundation logo" /></a>
</section>
</div>
</div>
</section>
<!-- Footer -->
<footer class="wrapper style1 align-center" style="background-color: #34A9C7 !important; color: #ffffff !important;">
<div class="inner">
<h2 style="color: #ffffff;">Contact Us!</h2>
<hr/>
<ul class="icons">
<li>email: isaccsupport@uw.edu</li>
<!--<li>phone: ---</li>-->
</ul>
<p>© 2024 University of Washington All rights reserved</p>
</div>
</footer>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.scrollex.min.js"></script>
<script src="assets/js/jquery.scrolly.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>