<script type="text/javascript">
function funcCalcScore()
{
Form = document.frmCalc;
var E = GetRBCheckedVal(Form.Eye) * 1;
var V = GetRBCheckedVal(Form.Verbal) * 1;
var M = GetRBCheckedVal(Form.Motor) * 1;
Score = E + V + M;
Form.Result.value = Round(Score, 2);
Form.Interpretation.value = 'GCS ' + Score + ' = E' + E + ' V' + V + ' M' + M + ' (at time of observation)';
}
</script>
GCS
- Glasgow Coma Scale |
|
<form action="get" name="frmCalc">
Best eye response |
<input type="radio" value="1" name="Eye" onclick="funcCalcScore();" onBlur="funcCalcScore();" checked>
No eye opening (+1)
<input type="radio" value="2" name="Eye" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Eye opening to pain (+2)
<input type="radio" value="3" name="Eye" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Eye opening to verbal command (+3)
<input type="radio" value="4" name="Eye" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Eyes open spontaneously (+4) |
Best verbal response |
<input type="radio" value="1" name="Verbal" checked>
No verbal response (+1)
<input type="radio" value="2" name="Verbal" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Incomprehensible sounds (+2)
<input type="radio" value="3" name="Verbal" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Inappropriate words (+3)
<input type="radio" value="4" name="Verbal" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Confused (+4)
<input type="radio" value="5" name="Verbal" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Oriented (+5) |
Best motor response |
<input type="radio" value="1" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();" checked>
No motor response (+1)
<input type="radio" value="2" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Extension to pain (+2)
<input type="radio" value="3" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Flexion to pain (+3)
<input type="radio" value="4" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Withdrawal from pain (+4)
<input type="radio" value="5" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();"> Localizes pain (+5)
<input type="radio" value="6" name="Motor" onclick="funcCalcScore();" onBlur="funcCalcScore();">Obeys commands (+6) |
GCS
Score |
<input type="text" name="Result" size="11" onClick="funcCalcScore();">
(points)
|
Score
Interpretation:
<textarea rows="5" name="Interpretation" cols="50" readonly="1"></textarea>
|
<input type="button" value="Calculate" name="btnCalc" onClick="funcCalcScore();"><input type="reset" value="Reset" name="B2">
</form>
|
Calculation(s) used
GCS scoring: A certain number of Points are given for each
category and the result is the total sum of
the points for each question.
|
Interpretation
GCS
score |
Classification
of
brain injury |
≥13 |
Minor/None |
9 - 12 |
Moderate |
≤8 |
Severe |
|
References
1.
|