(url, base_query, formName)
| 397 | |
| 398 | |
| 399 | function page_back(url, base_query, formName) { |
| 400 | if (PAGING_CLICK_WAIT) { |
| 401 | return false; |
| 402 | } |
| 403 | |
| 404 | PAGE = PAGE - 1; |
| 405 | if (PAGE < 1) { |
| 406 | PAGE = 1; |
| 407 | } |
| 408 | refresh(url, base_query, formName); |
| 409 | } |
| 410 | |
| 411 | |
| 412 | function page_forward(url, base_query, formName) { |
no test coverage detected