Но почему-то этого не происходит. Помогите найти ошибку.
Код: Выделить всё
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script>
var SH = 0; SW = 0;
function checkClientWidth()
{
SH = window.screen.height;
SW = window.screen.width;
var SS = setInterval('checkClientWidth2()',10);
}
function checkClientWidth2()
{
if (SH < widow.screen.height || SW < window.screen.width)
anotherChangePaddings();
SH = window.screen.height;
SW = window.screen.width;
}
function anotherChangePaddings()
{
alert('!!!')
}
</script>
</head>
<body onload ="checkClientWidth();">
</body>
</html>