<%
calcurl="teen_suicide.html"
calctitle="Teen Suicide Risk Calculator"
calctease="Is your teen contemplating suicide?"
calname="teen_suicide"
strFinal = Request.QueryString("Final")
%>

<HTML>
<HEAD>
<TITLE>Health Calc: Teen Suicide Risk Calculator</TITLE>

<!-- #include virtual="/SCRIPTS/pagesetup.html" -->

<meta name="viewport" content="width=device-width, initial-scale=1">
</HEAD>
<!-- BEGIN the real content of the Calculatoring experience -->
<center>

<!-- #include virtual="/SCRIPTS/calcimages.html" -->

<!-- New Header Stuff -->

<!-- End new header block -->
<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" WIDTH="505"> 
   <TR VALIGN="MIDDLE" ALIGN="LEFT">
      <TD BGCOLOR="#FFFFFF" WIDTH=267 align=left valign=top>
         <TABLE CELLPADDING=5 BORDER=0 CELLSPACING=0>
            <TR>
               <TD><P><B><FONT FACE="helvetica, arial, sans-serif" COLOR="#003366"><!-- BEGIN Calculator headline and text --><B><%=calctease%></B><!-- END Calculator headline and text --></FONT></B></TD>
            </TR>
         </TABLE>              
      </TD>
      <!-- #include virtual="/SCRIPTS/1x1image.html" -->
      
      <TD BGCOLOR="#FFFFFF" WIDTH=237 align=left valign=top>      
        <TABLE CELLPADDING=5 BORDER=0 CELLSPACING=0>
           <TR>
              <TD>
<P><B><FONT FACE="helvetica, arial, sans-serif" COLOR="#003366">
<!-- BEGIN results title -->
<%nextQuestion = Request.form("nextQuestion")
If nextQuestion >= 9 Or strFinal = "true" then
   %>
	Your results:
<% elseif nextQuestion < 9 then
%>
	Begin here:

<% else %>
Your Results:
<% end if
%>	
<!-- END results title --></FONT></B></TD>
            </TR>
         </TABLE>         
      </TD>
   </TR>
   <TR VALIGN="TOP">
      <TD BGCOLOR="#FFFFFF" WIDTH=267>
         <TABLE CELLPADDING=5 CELLSPACING=0 BORDER=0>
            <TR>
               <TD>
<FONT FACE="helvetica, arial, sans-serif" SIZE="-1">

<!-- BEGIN Calculator headline and text -->
<%
nextQuestion = Request.form("nextQuestion")
strAnswer = Request.form("Answer")
If strAnswer = "" then
   Error = "Please select yes or no."
Else
   Error = "None"   
End If
If (nextQuestion >= 9 AND Error = "None") or strFinal = "true" then%>
<P>Thank you for using our Teen Suicide Risk Calculator.</P>
<P>The most important thing a parent can do to decrease the likelihood that their teen might contemplate suicide is to develop a close and caring relationship with him or her. 
Teens who feel valued by family members are less likely to think about suicide. The presence of parents at key times during the day (at waking, after school, at dinner, at bedtime) 
and through shared activities reduce the likelihood of abuse.</P>
</FONT></TD></TR>
<%Else%>
<P>In a study of 11,426 teens, 10 percent of the girls and 8 percent of the boys thought about suicide during the past year, and 3.6 percent said they had attempted suicide.</P>
<p>Many parents find these statistics alarming.  Our teen suicide risk calculator can help you assess your teen's likelihood of contemplating suicide.  The result can help you understand some of the reasons why teens have suicidal thoughts.</p><p>
This test should be used only as a guideline and is based on information found in the National Longitudinal Study on Adolescent Health.
</FONT></TD></TR>
<%End If%>
<!-- END Calculator headline and text -->
         </TABLE>
      </TD>      
      <!-- #include virtual="/SCRIPTS/1x1image.html" -->
      
      <TD BGCOLOR="#FFFFFF">
         <TABLE CELLPADDING=5 BORDER=0 CELLSPACING=0>
            <TR>
               	<TD><FONT FACE="helvetica, arial, sans-serif">
				<!-- BEGIN Calculator form -->
				<P><%
Dim Answer , intAnswer , NextQuestion, Error, strGrade, numResult
strFinal = Request.QueryString("Final")
Error =""

If Request.ServerVariables("REQUEST_METHOD") = "POST" then
	
	NextQuestion = Request.Form("NextQuestion")
	if Request.Form("Grade") <> "" then

		strGrade = Request.Form("Grade")
	end if
	If Request.Form("Answer") = "" then
	   Error = "Please select yes or no."
	 	numResult = CSng(Request.Form("Result"))
	else
		intAnswer = int(Request.Form("Answer"))
	End If
   
	If Error = "" then
		if NextQuestion  < 2 then
		numResult = 0.0 ' first time initialize to send it through form
		else
		numResult = CSng(Request.Form("Result"))
		end if
		if NextQuestion = 2 then
			if strGrade = "1" then
				numResult = numResult + (-.17 * intAnswer)
			elseif strGrade = "2" then
				numResult = numResult + (-.24 * intAnswer)
			end if
		elseif NextQuestion = 3 then
			if strGrade = "1" then
				numResult = numResult 
			elseif strGrade = "2" then
				numResult = numResult + (.13 * intAnswer)
			end if			
		elseif NextQuestion = 4 then
			if strGrade = "1" then
				numResult = numResult + (-.17 * intAnswer)
			elseif strGrade = "2" then
				numResult = numResult + (-.18 * intAnswer)
			end if
		elseif NextQuestion = 5 then
			if strGrade = "1" then
				numResult = numResult 
			elseif strGrade = "2" then
				numResult = numResult + (-.21 * intAnswer)
			end if
		elseif NextQuestion = 6 then
			if strGrade = "1" then
				numResult = numResult + (.08 * intAnswer)
			elseif strGrade = "2" then
				numResult = numResult + (.06 * intAnswer)
			end if
		elseif NextQuestion = 7 then
			if strGrade = "1" then
				numResult = numResult + (.12 * intAnswer)
			elseif strGrade = "2" then
				numResult = numResult 		
			end if
		elseif NextQuestion = 8 then
			if strGrade = "1" then
				numResult = numResult 
			elseif strGrade = "2" then
				numResult = numResult + (.27 * intAnswer)
			end if
		elseif NextQuestion = 9 then
			if strGrade = "1" then
				numResult = numResult + (-.12 * intAnswer)
			elseif strGrade = "2" then
				numResult = numResult 
			end if
		end if
		NextQuestion = NextQuestion + 1
	End If
 End If
%>
 
<%If Not NextQuestion >=10 and strFinal <> "true" then%>
	<TABLE BORDER = "0" CELLSPACING = "0" CELLPADDING ="0">
      <% If NextQuestion < 10 then%>
		<%If Error >"" Then%>
		<TR>
			<TD COLSPAN=2 ALIGN ="LEFT"><FONT FACE= "arial, helvetica, sans-serif" SIZE = 2 Color ="#ff0000"><i><%= Error%></i></FONT>
			</TD>
		</TR>
	 <%Else%>
		<TR>
			<TD COLSPAN =2 ALIGN ="LEFT" VALIGN ="MIDDLE"><FONT FACE= "arial, helvetica, sans-serif" SIZE=2> <FONT face="arial, helvetica, sans-serif" size=2>Please select the appropriate response to the following 9 questions:<BR></FONT>
			</TD>
		</TR>
   	   <%End if%>
          
        
		<%End If%>
		<TR>
			<TD COLSPAN =2 ALIGN ="LEFT" VALIGN="TOP">
		<form method="post" action="<%=Request.ServerVariables("SCRIPT_NAME")%>"><INPUT TYPE="hidden" NAME="Result" VALUE="<%=numResult%>">
		<%if NextQuestion >= 2 then%>
		<INPUT TYPE="hidden" NAME="Grade" VALUE="<%=strGrade%>">
		<%end if%>
		<BR></TD></TR><TR><TD COLSPAN=2 ALIGN="LEFT"><FONT FACE="arial, helvetica, sans-serif" SIZE=2><BR>
		<%If not NextQuestion>=2 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE =1><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B>Question 1 of 9:</B><BR><BR> Select your teen's grade-level in school (if your teen is not currently enrolled, please pick the grade your teen would be in if he were in school): </font></BR>
			<INPUT TYPE ="hidden" NAME="Answer" VALUE = "0">
			<br><select name="Grade" size="1"> 
			<option value="1">7-8
			<option value="2">9-12
			</select>
		<%ElseIf NextQuestion=2 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE =2><FONT FACE= "arial, helvetica, sans-serif" SIZE=2><B>Question 2 of 9:</B><BR><BR> Would you characterize your relationship with your teen as close and caring (i.e. satisfactory relationship with mother and/or father)? </FONT>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=3 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE =3><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B>Question 3 of 9:</B><BR><BR> Are there guns in your house?</FONT>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=4 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE=4><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B>Question 4 of 9:</B><BR><BR> Does your teen have a good experience at school (such as associates with friends, feels teachers are fair, likes going to school)?</FONT>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=5 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE=5><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B>Question 5 of 9:</B><BR><BR> Does your teen have good self-esteem (i.e. a lot to be proud of, likes self and his or her accomplishments)?</Font>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=6 then%>
			<INPUT TYPE="hidden" NAME="nextQuestion" VALUE=6><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B>Question 6 of 9:</B><BR><BR> Does your teen mention being at risk for an untimely death?</FONT>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=7 then%>
			<INPUT TYPE = "hidden" NAME="nextQuestion" VALUE=7><FONT FACE="arial, helvetica, sans-serif" size=2><B>Question 7 of 9:</B><BR><BR> Have there been any recent suicide attempts in your family?</FONT>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=8 then%>
			<INPUT TYPE = "hidden" NAME="nextQuestion" VALUE=8><FONT FACE="arial, helvetica, sans-serif" size=2><B>Question 8 of 9:</B><BR><BR> Does your teen appear older than most teens of the same age?</font>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		<%ElseIf NextQuestion=9 then%>
			<INPUT TYPE = "hidden" NAME="nextQuestion" VALUE=9><FONT FACE="arial, helvetica, sans-serif" size=2><B>Question 9 of 9:</B><BR><BR> Does your teen get good grades?</font>
			<BR><BR><INPUT TYPE ="radio" NAME="Answer" VALUE ="1">Yes <INPUT TYPE ="radio" NAME = "Answer" VALUE="0">No
		
		<%End If%>
		
			</FONT></TD></TR>

			
		<TR>
			<TD COLSPAN=2 ALIGN="LEFT" VALIGN="MIDDLE"><BR><INPUT TYPE ="Submit" NAME="Submit" VALUE="Submit"></form></TD>
		</TR>
	</TABLE>
<%Else%>
	
	<%numResult = Round(numResult * 100, 0)%>
	<TABLE BORDER = "0" CELLSPACING="0" CELLPADDING ="0">
	<% if strFinal = "" then
		strFinal = "true"%> 

		
		<%If numResult < 0 then 
			if numResult < -100 then
				numResult = -100
			end if%>
		<TR>
			<TD COLSPAN=2 ALIGN= "LEFT" VALIGN ="MIDDLE"><FONT FACE = "arial, helvetica, sans-serif" size=2><B> Based on your responses, your teen is <%=numResult*-1%> percent <u>less</u> likely to contemplate suicide when compared to other teens of similar age.</B><BR><BR>  This answer is only a guideline to help you recognize what factors increase the likelihood that your teen will think about suicide before the end of high school. <BR></FONT></TD>
		</TR>
		
		<%ElseIf numResult > 0  then%>
		<TR>
			<TD COLSPAN=2 ALIGN="LEFT" VALIGN="MIDDLE"><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B> Based on your responses, your teen is <%=numResult%> percent <u>more</u> likely to think about suicide when compared to similar aged teens.</B><BR><BR> This answer is only a guideline to help you recognize what factors increase your teen's likelihood of that your teen will think about suicide before the end of high school. <BR></FONT></TD>
		</TR>
		<%ElseIf numResult = 0  then%>
		<TR>
			<TD COLSPAN=2 ALIGN="LEFT" VALIGN="MIDDLE"><FONT FACE="arial, helvetica, sans-serif" SIZE=2><B> Based on your responses, your teen is <u>no more</u> likely to contemplate suicide than similarly aged teens.</B><BR><BR> This answer is only a guideline to help you recognize what factors increase your teen's likelihood to have sex before the end of high school. <BR></FONT></TD>
		</TR>
		<%End If%>
		<TR>
			<TD COLSPAN=2 ALIGN="LEFT" VALIGN="MIDDLE"><FONT FACE="arial, helvetica, sans-serif" SIZE=2><BR> <a href="<%=Request.ServerVariables("SCRIPT_NAME")%>?Final=<%=strFinal%>">What factors increase suicide risk?</a><BR></FONT></TD>
		</TR>
		
	<% else %>
		<TR>
			<TD COLSPAN=2 ALIGN="LEFT" VALIGN="MIDDLE"><FONT FACE="arial, helvetica, sans-serif" SIZE=2> The following factors increase the likelihood that teens will contemplate suicide:<BR>
			<ul>
			<li>Poor family relationships</li>
			<li>Recent suicide attempts in the family</li>
			<li>Household acces to guns
			<li>Poor school experience</li>
			<li>Low self-esteem</li>
			<li>Fear of dying</li>
			<li>Poor grades</li>
			</UL>
			</FONT></TD>
		</TR>
		
	 <% end if %>
	<!-- #include virtual="/SCRIPTS/close_button.html" -->

	</TABLE>
	<br>
	
	<!-- #include virtual="/SCRIPTS/copyrightinfo.html" -->
	
<%End If%>

	<!-- #include virtual="/SCRIPTS/disclaimer.html" -->



				<!-- END Calculator form -->
   <!-- END the real content of the Calculatoring experience -->

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-47063811-22"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'UA-47063811-22');
</script>
</body>
</HTML>











