| 44 | <script type="text/javascript"> |
| 45 | <!-- |
| 46 | function checkvalues() |
| 47 | { |
| 48 | if ((document.mainform.format.value == "cups") && (document.mainform.datatype.value != "history")) |
| 49 | { |
| 50 | alert("Output format and data type are incompatible."); |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | if (document.mainform.sum.checked && (document.mainform.datatype.value != "payments") && (document.mainform.datatype.value != "history")) |
| 55 | { |
| 56 | alert("Summarize is only possible for History and Payments."); |
| 57 | return false; |
| 58 | } |
| 59 | |
| 60 | if (document.mainform.sum.checked && (document.mainform.format.value == "cups")) |
| 61 | { |
| 62 | alert("Summarize is not possible with CUPS' page_log format."); |
| 63 | return false; |
| 64 | } |
| 65 | |
| 66 | return true; |
| 67 | } |
| 68 | //--> |
| 69 | </script> |