ksa,
Где же он работает, когда все время 100, а должно уменьшаться
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'>
function Rectangle(w) {
this.width = w;
var that = this;
this.downShow = function() {
that.width = that.width - 1;
document.write(rect1.width + " ");
}
}
var rect1 = new Rectangle(100);
setInterval(rect1.downShow, 200);
</script>
</head>
<body>
</body>
</html>