Почему при нажатии на большинство элементов формы фокус становится на строке, это мешает и сбивает скролл страницы. В данном случае это происходит при клике на текст-подсказку.
<form name="analize">
<label for="youname">Ваше имя<label>
<input type="text" id="youname" />
<input type="checkbox" id="anonym" onclick="anon()"/>
<label for="anonym"> Аноним </label>
<div id="allparam">
<h3> Оцените свои параметры -50/+50</h3>
<div class="param">
<input id="health" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'health')" /> <input type="button" value="-5" onclick="counter1(-5, 'health')" />
<label for="health">Здоровье</label>
</div>
<div class="param">
<input id="beauty" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'beauty')" /> <input type="button" value="-5" onclick="counter1(-5, 'beauty')" />
<label for="beauty">Красота</label>
</div>
<div class="param">
<input id="streng" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'streng')" /> <input type="button" value="-5" onclick="counter1(-5, 'streng')" />
<label for="streng">Сила</label>
</div>
<div class="param">
<input id="education" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'education')" /> <input type="button" value="-5" onclick="counter1(-5, 'education')" />
<label for="education">Образованность</label>
</div>
<div class="param">
<input id="smart" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'smart')" /> <input type="button" value="-5" onclick="counter1(-5, 'smart')" />
<label for="smart">Интеллект</label>
</div>
<div class="param">
<input id="social" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'social')" /> <input type="button" value="-5" onclick="counter1(-5, 'social')" />
<label for="social">Социализированность</label>
</div>
<div class="param">
<input id="many" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'many')" /> <input type="button" value="-5" onclick="counter1(-5, 'many')" />
<label for="many">Финансы</label>
</div>
<div class="param">
<input id="luck" size="2" maxlength="2" value="0" readonly></label> <input type="button" value="+5" onclick="counter1(5, 'luck')" /> <input type="button" value="-5" onclick="counter1(-5, 'luck')" />
<label for="luck">Удачливость</label>
</div>
</form>