1 | function scr_plot_check |
2 | { |
3 | var __plot = arg0; |
4 | if (__plot > 0) |
5 | { |
6 | if (global.plot >= __plot) |
7 | return true; |
8 | else |
9 | return false; |
10 | } |
11 | else if (global.plot < __plot) |
12 | { |
13 | return true; |
14 | } |
15 | else |
16 | { |
17 | return false; |
18 | } |
19 | } |