function addMasker() { _root.createEmptyMovieClip("masker", -2); with (masker) { lineStyle(1, 13421772, 100); beginFill(0, 100); moveTo(sideDisWidth, sideDisHeight); lineTo(sideDisWidth + sceneWidth, sideDisHeight); lineTo(sideDisWidth + sceneWidth, sideDisHeight + sceneHeight); lineTo(sideDisWidth, sideDisHeight + sceneHeight); endFill(); } // End of with createSnow(); } // End of the function function createSnow() { var _l1 = 0; while (_l1 < snowNum) { var _l2 = snowSpace.createEmptyMovieClip("s" + _l1, _l1); var _l3 = Math.random() * 3; drawSnow(_l2, _l3); _l1++; } // end while } // End of the function function drawSnow(snow, radius) { var p = radius * 0.900000; with (snow) { colors = [13421772, 16777215];