ну дальше то идет - count=2 (т.е. глобальная). Даю весь код:
<html>
<head>
<title>Count</title>
</head>
<body>
<script type="text/javascript">
function selectAllp() {
if (count === null) var count =1;
if (count%2 !== 0){var pList = document.getElementsByTagName("p");
for (var i = 0; i < pList.length; i++) {
pList[i].setAttribute("style", "color:red");
}
count=2;
return
}
else if (count%2 == 0){var pList = document.getElementsByTagName("p");
for (var i = 0; i < pList.length; i++) {
pList[i].setAttribute("style", "color:black");
}
}
count=1;
}
</script>
<p>Привет, медвед0!</p>
<p>Привет, медвед1!</p>
<p>Привет, медвед2!</p>
<p>Привет, медвед3!</p>
<input type="button" onclick="selectAllp()" style="width: 210px;" value="Выбрать все параграфы" />
</body>
</html>