summaryrefslogtreecommitdiff
path: root/FS-Test/share/output/browse/part_pkg.cgi/active=1
blob: 2b3e34555f8c830558779e87cf99b78d7e608b4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416

            <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
  <HEAD>
    <TITLE>
      Package Definitions
    </TITLE>
    <!-- per RT, to prevent IE compatibility mode -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <!-- The X-UA-Compatible <meta> tag above must be very early in <head> -->
    <META HTTP-Equiv="Cache-Control" Content="no-cache">
    <META HTTP-Equiv="Pragma" Content="no-cache">
    <META HTTP-Equiv="Expires" Content="0"> 

    <script type="text/javascript" src="http://localhost/freeside/elements/cssexpr.js"></script>


  <script type="text/javascript" src="http://localhost/freeside/elements/xmenu.top.js"></script>
  <link href="http://localhost/freeside/elements/xmenu.top.css" type="text/css" rel="stylesheet">


  <link href="http://localhost/freeside/elements/freeside.css" type="text/css" rel="stylesheet">
  <link href="http://localhost/freeside/elements/freeside-print.css" type="text/css" rel="stylesheet" media="print">
<link href="http://localhost/freeside/elements/freeside-menu.css" type="text/css" rel="stylesheet">

<SCRIPT TYPE="text/javascript">

  function about_freeside() {
    overlib( OLiframeContent('http://localhost/freeside/docs/about.html', 300, 375, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'About', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#7e0079', CGCOLOR, '#7e0079', CLOSETEXT, 'Close'); 
  }

  webfxMenuImagePath      = "http://localhost/freeside/images/";
  webfxMenuUseHover       = 1;
  webfxMenuShowTime       = 300;
  webfxMenuHideTime       = 500;

  var myBar = new WebFXMenuBar;

    
          myBar.add(new WebFXMenuButton('Billing Main', "http://localhost/freeside/", 'Billing start page' ));

    
          myBar.add(new WebFXMenuButton('Ticketing Main', "http://localhost/freeside/rt/", 'Ticketing start page' ));

    
          myBar.add(new WebFXMenuButton('New prospect', "http://localhost/freeside/edit/prospect_main.html", 'Add a new prospect' ));

    
          myBar.add(new WebFXMenuButton('New customer', "http://localhost/freeside/edit/cust_main.cgi", 'Add a new customer' ));


          var myMenu0 = new WebFXMenu;
myMenu0.emptyText = '';
var myMenu1 = new WebFXMenu;
myMenu1.emptyText = '';
myMenu1.add(new WebFXMenuItem("List prospects", "http://localhost/freeside/search/prospect_main.html", "" ));
myMenu1.add(new WebFXMenuItem("Advanced prospect reports", "http://localhost/freeside/search/report_prospect_main.html", "" ));
myMenu1.add(new WebFXMenuSeparator());
myMenu1.add(new WebFXMenuItem("Prospect contacts", "http://localhost/freeside/search/report_contact.html?link=prospect_main", "" ));
myMenu1.width = 256;

myMenu0.add(new WebFXMenuItem("Prospects", null, "Prospect reports", myMenu1 ));
var myMenu2 = new WebFXMenu;
myMenu2.emptyText = '';
myMenu2.add(new WebFXMenuItem("List quotations", "http://localhost/freeside/search/quotation.html", "" ));
myMenu2.add(new WebFXMenuItem("Advanced quotation reports", "http://localhost/freeside/search/report_quotation.html", "" ));
myMenu2.width = 256;

myMenu0.add(new WebFXMenuItem("Quotations", null, "Quotation reports", myMenu2 ));
var myMenu3 = new WebFXMenu;
myMenu3.emptyText = '';
var myMenu4 = new WebFXMenu;
myMenu4.emptyText = '';
myMenu4.add(new WebFXMenuItem("by customer number", "http://localhost/freeside/search/cust_main.cgi?browse=custnum", "" ));
myMenu4.add(new WebFXMenuItem("by last name", "http://localhost/freeside/search/cust_main.cgi?browse=last", "" ));
myMenu4.add(new WebFXMenuItem("by company name", "http://localhost/freeside/search/cust_main.cgi?browse=company", "" ));
myMenu4.add(new WebFXMenuItem("by active trouble tickets", "http://localhost/freeside/search/cust_main.cgi?browse=tickets", "" ));
myMenu4.width = 256;

myMenu3.add(new WebFXMenuItem("List customers", null, "List customers", myMenu4 ));
myMenu3.add(new WebFXMenuItem("Zip code distribution", "http://localhost/freeside/search/report_cust_main-zip.html", "Zip codes by number of customers" ));
myMenu3.add(new WebFXMenuItem("Customer signup report", "http://localhost/freeside/graph/report_cust_signup.html", "New customer signups by date" ));
myMenu3.add(new WebFXMenuItem("Customer churn report", "http://localhost/freeside/graph/report_cust_churn.html", "New customers, suspensions, and cancellations summary" ));
myMenu3.add(new WebFXMenuItem("Signup date report", "http://localhost/freeside/graph/report_signupdate.html", "Signup date report (by date of signup)" ));
myMenu3.add(new WebFXMenuItem("Advanced customer reports", "http://localhost/freeside/search/report_cust_main.html", "by status, signup date, agent, etc." ));
myMenu3.add(new WebFXMenuSeparator());
myMenu3.add(new WebFXMenuItem("Customer contacts", "http://localhost/freeside/search/report_contact.html?link=cust_main", "" ));
myMenu3.width = 256;

myMenu0.add(new WebFXMenuItem("Customers", null, "Customer reports", myMenu3 ));
var myMenu5 = new WebFXMenu;
myMenu5.emptyText = '';
var myMenu6 = new WebFXMenu;
myMenu6.emptyText = '';
myMenu6.add(new WebFXMenuItem("All open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN_date", "All invoices with an unpaid balance" ));
myMenu6.add(new WebFXMenuItem("15 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN15_date", "Invoices 15 days or older with an unpaid balance" ));
myMenu6.add(new WebFXMenuItem("30 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN30_date", "Invoices 30 days or older with an unpaid balance" ));
myMenu6.add(new WebFXMenuItem("60 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN60_date", "Invoices 60 days or older with an unpaid balance" ));
myMenu6.add(new WebFXMenuItem("90 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN90_date", "Invoices 90 days or older with an unpaid balance" ));
myMenu6.add(new WebFXMenuItem("120 day open invoices", "http://localhost/freeside/search/cust_bill.html?OPEN120_date", "Invoices 120 days or older with an unpaid balance" ));
myMenu6.width = 256;

myMenu5.add(new WebFXMenuItem("Open invoices", null, "Open invoices", myMenu6 ));
myMenu5.add(new WebFXMenuItem("All invoices", "http://localhost/freeside/search/cust_bill.html?date", "List all invoices" ));
myMenu5.add(new WebFXMenuItem("Advanced invoice reports", "http://localhost/freeside/search/report_cust_bill.html", "by agent, date range, etc." ));
myMenu5.add(new WebFXMenuSeparator());
myMenu5.add(new WebFXMenuItem("Line items", "http://localhost/freeside/search/report_cust_bill_pkg.html", "Individual line item detail" ));
myMenu5.add(new WebFXMenuItem("Voided invoices", "http://localhost/freeside/search/report_cust_bill_void.html", "Search for voided invoices" ));
myMenu5.width = 256;

myMenu0.add(new WebFXMenuItem("Invoices", null, "Invoice reports", myMenu5 ));
var myMenu7 = new WebFXMenu;
myMenu7.emptyText = '';
myMenu7.add(new WebFXMenuItem("Discount graph", "http://localhost/freeside/graph/report_cust_bill_pkg_discount.html", "Discount overview per month" ));
myMenu7.add(new WebFXMenuItem("Discount detail", "http://localhost/freeside/search/report_cust_bill_pkg_discount.html", "Discount report (by employee and/or date range)" ));
myMenu7.add(new WebFXMenuItem("Package discounts", "http://localhost/freeside/search/report_cust_pkg_discount.html", "Active/inactive discounts by package" ));
myMenu7.width = 256;

myMenu0.add(new WebFXMenuItem("Discounts", null, "Discount reports", myMenu7 ));
var myMenu8 = new WebFXMenu;
myMenu8.emptyText = '';
myMenu8.add(new WebFXMenuItem("Payments", "http://localhost/freeside/search/report_cust_pay.html", "Payment report (by type and/or date range)" ));
myMenu8.add(new WebFXMenuItem("Payment application detail", "http://localhost/freeside/search/report_cust_bill_pay_pkg.html", "Line item application detail" ));
myMenu8.add(new WebFXMenuItem("Pending Payments", "http://localhost/freeside/search/cust_pay_pending.html?magic=_date;statusNOT=done", "Pending real-time payments" ));
myMenu8.add(new WebFXMenuItem("Unapplied Payments", "http://localhost/freeside/search/report_cust_pay.html?unapplied=1", "Unapplied payment report (by type and/or date range)" ));
myMenu8.add(new WebFXMenuItem("Voided Payments", "http://localhost/freeside/search/report_cust_pay.html?void=1", "Voided payment report (by type and/or date range)" ));
myMenu8.add(new WebFXMenuItem("Unapplied Payment Aging", "http://localhost/freeside/search/report_unapplied_cust_pay.html", "Unapplied payment aging report" ));
myMenu8.width = 256;

myMenu0.add(new WebFXMenuItem("Payments", null, "Payment reports", myMenu8 ));
var myMenu9 = new WebFXMenu;
myMenu9.emptyText = '';
myMenu9.add(new WebFXMenuItem("Package definitions (by # active)", "http://localhost/freeside/browse/part_pkg.cgi?active=1", "Package definitions by number of active packages" ));
myMenu9.add(new WebFXMenuItem("Package costs", "http://localhost/freeside/graph/report_cust_pkg_cost.html", "Package setup and recurring costs graph" ));
myMenu9.add(new WebFXMenuSeparator());
myMenu9.add(new WebFXMenuItem("Package churn", "http://localhost/freeside/graph/report_cust_pkg.html", "Orders, suspensions and cancellations summary graph" ));
myMenu9.add(new WebFXMenuSeparator());
myMenu9.add(new WebFXMenuItem("All customer packages", "http://localhost/freeside/search/cust_pkg.cgi?pkgnum", "List all customer packages" ));
myMenu9.add(new WebFXMenuItem("Package summary", "http://localhost/freeside/search/cust_pkg_summary.html", "Show package sales summary" ));
myMenu9.add(new WebFXMenuItem("Suspended customer packages", "http://localhost/freeside/search/cust_pkg.cgi?magic=suspended", "List suspended packages" ));
myMenu9.add(new WebFXMenuItem("Suspension summary", "http://localhost/freeside/search/cust_pkg_susp.html", "Show suspension activity" ));
myMenu9.add(new WebFXMenuItem("Customer packages with unconfigured services", "http://localhost/freeside/search/cust_pkg.cgi?APKG_pkgnum", "List packages which have provisionable services" ));
myMenu9.add(new WebFXMenuItem("Advanced package reports", "http://localhost/freeside/search/report_cust_pkg.html", "by agent, date range, status, package definition" ));
myMenu9.width = 256;

myMenu0.add(new WebFXMenuItem("Packages", null, "Package reports", myMenu9 ));
var myMenu10 = new WebFXMenu;
myMenu10.emptyText = '';
myMenu10.add(new WebFXMenuItem("Service definitions", "http://localhost/freeside/browse/part_svc.cgi?orderby=active", "Service definitions by number of active packages" ));
myMenu10.add(new WebFXMenuSeparator());
myMenu10.add(new WebFXMenuItem("Unprovisioned services", "http://localhost/freeside/search/report_unprovisioned_services.html", "Unprovisioned services" ));
myMenu10.add(new WebFXMenuSeparator());
var myMenu11 = new WebFXMenu;
myMenu11.emptyText = '';
myMenu11.add(new WebFXMenuItem("All accounts by Username", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=username", "" ));
myMenu11.add(new WebFXMenuItem("All accounts by UID", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=uid", "" ));
myMenu11.add(new WebFXMenuItem("All accounts with Time Remaining", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=seconds", "" ));
myMenu11.add(new WebFXMenuItem("All accounts by Last login", "http://localhost/freeside/search/svc_acct.cgi?magic=all;sortby=last_login", "" ));
myMenu11.add(new WebFXMenuItem("All accounts never logged in", "http://localhost/freeside/search/svc_acct.cgi?magic=nologin;sortby=svcnum", "" ));
myMenu11.add(new WebFXMenuItem("Advanced account reports", "http://localhost/freeside/search/report_svc_acct.html", "" ));
myMenu11.width = 256;

myMenu10.add(new WebFXMenuItem("Accounts", null, "Access accounts and mailboxes", myMenu11 ));
var myMenu12 = new WebFXMenu;
myMenu12.emptyText = '';
myMenu12.add(new WebFXMenuItem("All domains", "http://localhost/freeside/search/svc_domain.cgi?magic=all;sortby=domain", "" ));
myMenu12.width = 256;

myMenu10.add(new WebFXMenuItem("Domains", null, "Domains", myMenu12 ));
var myMenu13 = new WebFXMenu;
myMenu13.emptyText = '';
myMenu13.add(new WebFXMenuItem("All certificates", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cert;magic=all;sortby=svcnum", "" ));
myMenu13.width = 256;

myMenu10.add(new WebFXMenuItem("Certificates", null, "Example services", myMenu13 ));
var myMenu14 = new WebFXMenu;
myMenu14.emptyText = '';
myMenu14.add(new WebFXMenuItem("All mail forwards", "http://localhost/freeside/search/svc_forward.cgi?magic=all;sortby=svcnum", "" ));
myMenu14.width = 256;

myMenu10.add(new WebFXMenuItem("Mail forwards", null, "Mail forwards", myMenu14 ));
var myMenu15 = new WebFXMenu;
myMenu15.emptyText = '';
myMenu15.add(new WebFXMenuItem("All mailing lists", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_mailinglist;magic=all;sortby=svcnum", "" ));
myMenu15.width = 256;

myMenu10.add(new WebFXMenuItem("Mailing lists", null, "Mailing lists", myMenu15 ));
var myMenu16 = new WebFXMenu;
myMenu16.emptyText = '';
myMenu16.add(new WebFXMenuItem("All virtual hosting services", "http://localhost/freeside/search/svc_www.cgi?magic=all;sortby=svcnum", "" ));
myMenu16.width = 256;

myMenu10.add(new WebFXMenuItem("Virtual hosting services", null, "Virtual hosting services", myMenu16 ));
var myMenu17 = new WebFXMenu;
myMenu17.emptyText = '';
myMenu17.add(new WebFXMenuItem("All wireless broadband services", "http://localhost/freeside/search/svc_broadband.cgi?magic=all;sortby=svcnum", "" ));
myMenu17.add(new WebFXMenuItem("Advanced wireless broadband reports", "http://localhost/freeside/search/report_svc_broadband.html", "" ));
myMenu17.width = 256;

myMenu10.add(new WebFXMenuItem("Wireless broadband services", null, "Fixed wireless broadband services", myMenu17 ));
var myMenu18 = new WebFXMenu;
myMenu18.emptyText = '';
myMenu18.add(new WebFXMenuItem("All cable subscribers by Service", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=svcnum", "" ));
myMenu18.add(new WebFXMenuItem("All cable subscribers by Serial number", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=serialnum", "" ));
myMenu18.add(new WebFXMenuItem("All cable subscribers by MAC address", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_cable;magic=all;sortby=mac_addr", "" ));
myMenu18.width = 256;

myMenu10.add(new WebFXMenuItem("Cable Subscribers", null, "Cable Subscribers", myMenu18 ));
var myMenu19 = new WebFXMenu;
myMenu19.emptyText = '';
myMenu19.add(new WebFXMenuItem("All DSLs", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_dsl;magic=all;sortby=phonenum", "" ));
myMenu19.add(new WebFXMenuItem("Qualifications", "http://localhost/freeside/search/qual.cgi", "" ));
myMenu19.width = 256;

myMenu10.add(new WebFXMenuItem("DSLs", null, "DSLs", myMenu19 ));
var myMenu20 = new WebFXMenu;
myMenu20.emptyText = '';
myMenu20.add(new WebFXMenuItem("All dish services", "http://localhost/freeside/search/svc_dish.cgi?magic=all;sortby=svcnum", "" ));
myMenu20.width = 256;

myMenu10.add(new WebFXMenuItem("Dish services", null, "Dish services", myMenu20 ));
var myMenu21 = new WebFXMenu;
myMenu21.emptyText = '';
myMenu21.add(new WebFXMenuItem("All hardware", "http://localhost/freeside/search/svc_hardware.cgi?magic=all;sortby=svcnum", "" ));
myMenu21.add(new WebFXMenuItem("Advanced hardware reports", "http://localhost/freeside/search/report_svc_hardware.html", "" ));
myMenu21.width = 256;

myMenu10.add(new WebFXMenuItem("Hardware", null, "Hardware", myMenu21 ));
var myMenu22 = new WebFXMenu;
myMenu22.emptyText = '';
myMenu22.add(new WebFXMenuItem("All phone numbers", "http://localhost/freeside/search/svc_phone.cgi?magic=all;sortby=phonenum", "" ));
myMenu22.add(new WebFXMenuItem("Phone numbers' total usage by time period", "http://localhost/freeside/search/report_svc_phone_usage.html", "Total usage (minutes, and amount billed) for the specified time period, per phone number." ));
myMenu22.add(new WebFXMenuItem("Phone numbers by state", "http://localhost/freeside/search/phone_state.html", "Current or historical phone services broken down by state." ));
myMenu22.add(new WebFXMenuItem("Advanced phone number reports", "http://localhost/freeside/search/report_svc_phone.html", "" ));
myMenu22.add(new WebFXMenuItem("Phone number (DID) availability", "http://localhost/freeside/search/report_phone_avail.html", "" ));
myMenu22.add(new WebFXMenuItem("Inventory/Provisioning Status", "http://localhost/freeside/search/phone_inventory_provisioned.html", "" ));
myMenu22.width = 256;

myMenu10.add(new WebFXMenuItem("Phone numbers", null, "Phone numbers", myMenu22 ));
var myMenu23 = new WebFXMenu;
myMenu23.emptyText = '';
myMenu23.add(new WebFXMenuItem("All PBXs", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_pbx;magic=all;sortby=svcnum", "" ));
myMenu23.width = 256;

myMenu10.add(new WebFXMenuItem("PBXs", null, "PBXs", myMenu23 ));
var myMenu24 = new WebFXMenu;
myMenu24.emptyText = '';
myMenu24.add(new WebFXMenuItem("All circuits", "http://localhost/freeside/search/svc_circuit.cgi?magic=all;sortby=svcnum", "" ));
myMenu24.width = 256;

myMenu10.add(new WebFXMenuItem("Circuits", null, "Voice and data circuit services", myMenu24 ));
var myMenu25 = new WebFXMenu;
myMenu25.emptyText = '';
myMenu25.add(new WebFXMenuItem("All ports", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_port;magic=all;sortby=serviceid", "" ));
myMenu25.width = 256;

myMenu10.add(new WebFXMenuItem("Ports", null, "Ports", myMenu25 ));
var myMenu26 = new WebFXMenu;
myMenu26.emptyText = '';
myMenu26.add(new WebFXMenuItem("All alarm services", "http://localhost/freeside/search/cust_svc.html?svcdb=svc_alarm;magic=all;sortby=acctnum", "" ));
myMenu26.width = 256;

myMenu10.add(new WebFXMenuItem("Alarm services", null, "Alarm services", myMenu26 ));
var myMenu27 = new WebFXMenu;
myMenu27.emptyText = '';
myMenu27.add(new WebFXMenuItem("All external services", "http://localhost/freeside/search/svc_external.cgi?magic=all;sortby=id", "" ));
myMenu27.width = 256;

myMenu10.add(new WebFXMenuItem("External services", null, "External services", myMenu27 ));
myMenu10.width = 256;

myMenu0.add(new WebFXMenuItem("Services", null, "Services reports", myMenu10 ));
var myMenu28 = new WebFXMenu;
myMenu28.emptyText = '';
myMenu28.add(new WebFXMenuItem("Inventory by agent", "http://localhost/freeside/search/report_agent_inventory.html", "" ));
myMenu28.add(new WebFXMenuItem("Inventory activity", "http://localhost/freeside/search/report_h_inventory_item.html", "" ));
myMenu28.width = 256;

myMenu0.add(new WebFXMenuItem("Inventory", null, "Inventory reports", myMenu28 ));
var myMenu29 = new WebFXMenu;
myMenu29.emptyText = '';
myMenu29.add(new WebFXMenuItem("RADIUS sessions", "http://localhost/freeside/search/sqlradius.html", "" ));
myMenu29.add(new WebFXMenuItem("RADIUS data usage", "http://localhost/freeside/search/report_sqlradius_usage.html", "" ));
myMenu29.add(new WebFXMenuItem("Call Detail Records (CDRs)", "http://localhost/freeside/search/report_cdr.html", "" ));
myMenu29.add(new WebFXMenuItem("Unrateable CDRs", "http://localhost/freeside/search/cdr.html?freesidestatus=failed;cdrbatchnum=_ALL_", "" ));
myMenu29.width = 256;

myMenu0.add(new WebFXMenuItem("Usage", null, "Usage reports", myMenu29 ));
var myMenu30 = new WebFXMenu;
myMenu30.emptyText = '';
var myMenu31 = new WebFXMenu;
myMenu31.emptyText = '';
myMenu31.add(new WebFXMenuItem("Tickets per day per Queue", "http://localhost/freeside/rt/RTx/Statistics/CallsQueueDay", "View the number of tickets created, resolved or deleted in a specific Queue, over the requested period of days" ));
myMenu31.add(new WebFXMenuItem("Ticket status by Queue", "http://localhost/freeside/rt/RTx/Statistics/OpenStalled", "View numbers of new, open and stalled tickets in a selected Queue" ));
myMenu31.add(new WebFXMenuItem("Tickets per day (multiple Queues)", "http://localhost/freeside/rt/RTx/Statistics/CallsMultiQueue", "View tickets created, resolved or deleted on in one or more Queues over a specified time period" ));
myMenu31.add(new WebFXMenuItem("Tickets per Day of Week", "http://localhost/freeside/rt/RTx/Statistics/DayOfWeek", "View trends showing when tickets are created, resolved or deleted" ));
myMenu31.add(new WebFXMenuItem("Time to resolve", "http://localhost/freeside/rt/RTx/Statistics/Resolution", "View how long tickets take to be resolved by Queue" ));
myMenu31.add(new WebFXMenuItem("Time to resolve (scatter graph)", "http://localhost/freeside/rt/RTx/Statistics/TimeToResolve", "View a detailed scatter graph of time to resolve tickets by Queue" ));
myMenu31.width = 256;

myMenu30.add(new WebFXMenuItem("Statistics", null, "", myMenu31 ));
myMenu30.add(new WebFXMenuSeparator());
myMenu30.add(new WebFXMenuItem("Advanced ticket reports", "http://localhost/freeside/rt/Search/Build.html?NewQuery=1", "List tickets by any criteria" ));
myMenu30.width = 256;

myMenu0.add(new WebFXMenuItem("Tickets", null, "Ticket reports", myMenu30 ));
var myMenu32 = new WebFXMenu;
myMenu32.emptyText = '';
myMenu32.add(new WebFXMenuItem("Employee Commission Report", "http://localhost/freeside/search/report_employee_commission.html", "" ));
myMenu32.add(new WebFXMenuItem("Employee Audit Report", "http://localhost/freeside/search/report_employee_audit.html", "Employee audit report" ));
myMenu32.width = 256;

myMenu0.add(new WebFXMenuItem("Employees", null, "Employee reports", myMenu32 ));
var myMenu33 = new WebFXMenu;
myMenu33.emptyText = '';
myMenu33.add(new WebFXMenuItem("All billing events", "http://localhost/freeside/search/report_cust_event.html", "All billing events for a date range" ));
myMenu33.add(new WebFXMenuItem("Billing event errors", "http://localhost/freeside/search/report_cust_event.html?failed=1", "Failed credit cards, processor or printer problems, etc." ));
myMenu33.width = 256;

myMenu0.add(new WebFXMenuItem("Billing events", null, "Billing events", myMenu33 ));
var myMenu34 = new WebFXMenu;
myMenu34.emptyText = '';
var myMenu35 = new WebFXMenu;
myMenu35.emptyText = '';
myMenu35.add(new WebFXMenuItem("Sales, Credits and Receipts", "http://localhost/freeside/graph/report_money_time.html", "Sales, credits and receipts summary graph" ));
myMenu35.add(new WebFXMenuItem("Daily Sales, Credits and Receipts", "http://localhost/freeside/graph/report_money_time_daily.html", "Sales, credits and receipts (broken down by day) summary graph" ));
myMenu35.add(new WebFXMenuItem("Sales Report", "http://localhost/freeside/graph/report_cust_bill_pkg.html", "Sales report and graph (by agent, package class and/or date range)" ));
myMenu35.add(new WebFXMenuItem("Rated Call Sales Report", "http://localhost/freeside/graph/report_cust_bill_pkg_detail.html", "Sales report and graph (by agent, package class, usage class and/or date range)" ));
myMenu35.add(new WebFXMenuItem("Sales with Advertising Source", "http://localhost/freeside/search/report_cust_bill_pkg_referral.html", "" ));
myMenu35.width = 256;

myMenu34.add(new WebFXMenuItem("Sales", null, "Sales reports", myMenu35 ));
var myMenu36 = new WebFXMenu;
myMenu36.emptyText = '';
myMenu36.add(new WebFXMenuItem("Credit Report", "http://localhost/freeside/search/report_cust_credit.html", "Credit report (by employee and/or date range)" ));
myMenu36.add(new WebFXMenuItem("Credit application detail", "http://localhost/freeside/search/report_cust_credit_bill_pkg.html", "Line item application detail" ));
myMenu36.add(new WebFXMenuItem("Unapplied Credits", "http://localhost/freeside/search/report_cust_credit.html?unapplied=1", "Unapplied credit report (by type and/or date range)" ));
myMenu36.add(new WebFXMenuItem("Voided Credits", "http://localhost/freeside/search/report_cust_credit_void.html", "Voided credit report (by employee and/or date range)" ));
myMenu36.width = 256;

myMenu34.add(new WebFXMenuItem("Credits", null, "Credit reports", myMenu36 ));
var myMenu37 = new WebFXMenu;
myMenu37.emptyText = '';
myMenu37.add(new WebFXMenuItem("Refund Report", "http://localhost/freeside/search/report_cust_refund.html", "Refund report (by type and/or date range)" ));
myMenu37.add(new WebFXMenuItem("Unapplied Refunds", "http://localhost/freeside/search/report_cust_refund.html?unapplied=1", "Unapplied refund report (by type and/or date range)" ));
myMenu37.width = 256;

myMenu34.add(new WebFXMenuItem("Refunds", null, "Refund reports", myMenu37 ));
var myMenu38 = new WebFXMenu;
myMenu38.emptyText = '';
myMenu38.add(new WebFXMenuItem("Agent Commissions", "http://localhost/freeside/search/report_agent_commission.html", "" ));
myMenu38.add(new WebFXMenuItem("Agent Commissions Per Package", "http://localhost/freeside/search/report_agent_commission_pkg.html", "" ));
myMenu38.add(new WebFXMenuItem("Sales Person Commissions", "http://localhost/freeside/search/report_sales_commission.html", "" ));
myMenu38.add(new WebFXMenuItem("Sales Person Commissions Per Package", "http://localhost/freeside/search/report_sales_commission_pkg.html", "" ));
myMenu38.add(new WebFXMenuItem("Employee Commissions", "http://localhost/freeside/search/report_employee_commission.html", "" ));
myMenu38.width = 256;

myMenu34.add(new WebFXMenuItem("Commissions", null, "Commission reports", myMenu38 ));
myMenu34.add(new WebFXMenuItem("A/R Aging", "http://localhost/freeside/search/report_receivables.html", "Accounts Receivable Aging report" ));
myMenu34.add(new WebFXMenuItem("Prepaid Income", "http://localhost/freeside/search/report_prepaid_income.html", "Prepaid income (unearned revenue)  report" ));
myMenu34.add(new WebFXMenuItem("Tax Liability", "http://localhost/freeside/search/report_tax.html", "Tax liability report (internal tax data)" ));
myMenu34.add(new WebFXMenuItem("E911 Fee Summary", "http://localhost/freeside/search/report_e911.html", "E911 fee summary" ));
myMenu34.add(new WebFXMenuItem("Customer Accounting Summary", "http://localhost/freeside/search/report_customer_accounting_summary.html", "Customer accounting summary report" ));
myMenu34.width = 256;

myMenu0.add(new WebFXMenuItem("Financial", null, "Financial reports", myMenu34 ));
var myMenu39 = new WebFXMenu;
myMenu39.emptyText = '';
myMenu39.add(new WebFXMenuItem("Credit limit incidents", "http://localhost/freeside/search/report_cust_main_credit_limit.html", "" ));
myMenu39.add(new WebFXMenuItem("System log", "http://localhost/freeside/search/log.html", "View system events and debugging information." ));
myMenu39.add(new WebFXMenuItem("Outgoing messages", "http://localhost/freeside/search/cust_msg.html", "View outgoing message log" ));
myMenu39.width = 256;

myMenu0.add(new WebFXMenuItem("Logs", null, "System and email logs", myMenu39 ));
myMenu0.width = 256;

          myBar.add(new WebFXMenuButton('Reports', null, 'Lists, reporting and graphing', myMenu0 ));


          var myMenu40 = new WebFXMenu;
myMenu40.emptyText = '';
myMenu40.add(new WebFXMenuItem("Quick payment entry", "http://localhost/freeside/misc/batch-cust_pay.html", "Enter multiple payments in a batch" ));
myMenu40.add(new WebFXMenuItem("Download invoice batches", "http://localhost/freeside/search/bill_batch.cgi", "" ));
myMenu40.add(new WebFXMenuItem("Bulk DID Orders", "http://localhost/freeside/browse/did_order.html", "View/manage bulk DID orders" ));
myMenu40.add(new WebFXMenuItem("Job Queue", "http://localhost/freeside/search/queue.html", "View pending job queue" ));
var myMenu41 = new WebFXMenu;
myMenu41.emptyText = '';
var myMenu42 = new WebFXMenu;
myMenu42.emptyText = '';
myMenu42.add(new WebFXMenuItem("Overview", "http://localhost/freeside/rt/Articles/index.html", "" ));
myMenu42.add(new WebFXMenuItem("Search", "http://localhost/freeside/rt/Articles/Article/Search.html", "" ));
myMenu42.add(new WebFXMenuItem("Topics", "http://localhost/freeside/rt/Articles/Topics.html", "" ));
myMenu42.width = 256;

myMenu41.add(new WebFXMenuItem("Articles", null, "", myMenu42 ));
myMenu41.add(new WebFXMenuItem("My Day", "http://localhost/freeside/rt/Tools/MyDay.html", "" ));
myMenu41.add(new WebFXMenuItem("My Reminders", "http://localhost/freeside/rt/Tools/MyReminders.html", "" ));
myMenu41.add(new WebFXMenuItem("Offline", "http://localhost/freeside/rt/Tools/Offline.html", "" ));
myMenu41.add(new WebFXMenuItem("Approval", "http://localhost/freeside/rt/Approvals/", "" ));
myMenu41.width = 256;

myMenu40.add(new WebFXMenuItem("Ticketing", null, "Ticketing tools", myMenu41 ));
myMenu40.add(new WebFXMenuItem("Customer email settings", "http://localhost/freeside/misc/manage_cust_email.html", "" ));
myMenu40.add(new WebFXMenuItem("Business card scan", "http://localhost/freeside/edit/prospect_main-upload.html", "" ));
myMenu40.add(new WebFXMenuItem("Attachments", "http://localhost/freeside/browse/cust_attachment.html", "View customer attachments" ));
var myMenu43 = new WebFXMenu;
myMenu43.emptyText = '';
myMenu43.add(new WebFXMenuItem("Customers", "http://localhost/freeside/misc/cust_main-import.cgi", "" ));
myMenu43.add(new WebFXMenuItem("Package definitions", "http://localhost/freeside/misc/part_pkg-import.html", "" ));
myMenu43.add(new WebFXMenuItem("Customer packages", "http://localhost/freeside/misc/cust_pkg-import.html", "" ));
myMenu43.add(new WebFXMenuItem("Customer comments", "http://localhost/freeside/misc/cust_main_note-import.html", "" ));
myMenu43.add(new WebFXMenuItem("One-time charges", "http://localhost/freeside/misc/cust_main-import_charges.cgi", "" ));
myMenu43.add(new WebFXMenuItem("Payments", "http://localhost/freeside/misc/cust_pay-import.cgi", "" ));
myMenu43.add(new WebFXMenuItem("Credits", "http://localhost/freeside/misc/cust_credit-import.html", "" ));
myMenu43.add(new WebFXMenuItem("Phone numbers (DIDs)", "http://localhost/freeside/misc/phone_avail-import.html", "" ));
myMenu43.add(new WebFXMenuItem("Call Detail Records (CDRs)", "http://localhost/freeside/misc/cdr-import.html", "" ));
myMenu43.width = 256;

myMenu40.add(new WebFXMenuItem("Importing", null, "Import tools", myMenu43 ));
var myMenu44 = new WebFXMenu;
myMenu44.emptyText = '';
myMenu44.add(new WebFXMenuItem("Download database dump", "http://localhost/freeside/misc/dump.cgi", "" ));
myMenu44.width = 256;

myMenu40.add(new WebFXMenuItem("Exporting", null, "Export tools", myMenu44 ));
myMenu40.add(new WebFXMenuItem("Status", "http://localhost/freeside/view/Status.html", "System status" ));
myMenu40.width = 256;

          myBar.add(new WebFXMenuButton('Tools', null, 'Tools', myMenu40 ));


          var myMenu45 = new WebFXMenu;
myMenu45.emptyText = '';
myMenu45.add(new WebFXMenuItem("Settings", "http://localhost/freeside/config/config-view.cgi", "" ));
myMenu45.add(new WebFXMenuSeparator());
var myMenu46 = new WebFXMenu;
myMenu46.emptyText = '';
myMenu46.add(new WebFXMenuItem("Agent types", "http://localhost/freeside/browse/agent_type.cgi", "Agent types define groups of package definitions that you can then assign to particular agents" ));
myMenu46.add(new WebFXMenuItem("Agents", "http://localhost/freeside/browse/agent.cgi", "Agents are resellers of your service. Agents may be limited to a subset of your full offerings (via their type)" ));
myMenu46.add(new WebFXMenuItem("Agent payment gateways", "http://localhost/freeside/browse/payment_gateway.html", "Credit card and electronic check processors for agent overrides" ));
myMenu46.width = 256;

myMenu45.add(new WebFXMenuItem("Companies", null, "", myMenu46 ));
var myMenu47 = new WebFXMenu;
myMenu47.emptyText = '';
myMenu47.add(new WebFXMenuItem("Sales People", "http://localhost/freeside/browse/sales.html", "Sales people bring in new business." ));
myMenu47.width = 256;

myMenu45.add(new WebFXMenuItem("Sales People", null, "", myMenu47 ));
var myMenu48 = new WebFXMenu;
myMenu48.emptyText = '';
myMenu48.add(new WebFXMenuItem("Employees", "http://localhost/freeside/browse/access_user.html", "Setup internal users" ));
myMenu48.add(new WebFXMenuItem("Employee groups", "http://localhost/freeside/browse/access_group.html", "Employee groups allow you to control access to the backend" ));
myMenu48.add(new WebFXMenuItem("Installer availability", "http://localhost/freeside/browse/sched_item.html", "Installer availability" ));
myMenu48.width = 256;

myMenu45.add(new WebFXMenuItem("Employees", null, "", myMenu48 ));
myMenu45.add(new WebFXMenuSeparator());
var myMenu49 = new WebFXMenu;
myMenu49.emptyText = '';
myMenu49.add(new WebFXMenuItem("Customer tags", "http://localhost/freeside/browse/part_tag.html", "" ));
myMenu49.add(new WebFXMenuItem("Customer classes", "http://localhost/freeside/browse/cust_class.html", "Customer classes define groups of customers for reporting." ));
myMenu49.add(new WebFXMenuItem("Customer categories", "http://localhost/freeside/browse/cust_category.html", "Customer categories define groups of customer classes." ));
myMenu49.add(new WebFXMenuSeparator());
myMenu49.add(new WebFXMenuItem("Contact types", "http://localhost/freeside/browse/contact_class.html", "" ));
myMenu49.width = 256;

myMenu45.add(new WebFXMenuItem("Customers", null, "", myMenu49 ));
var myMenu50 = new WebFXMenu;
myMenu50.emptyText = '';
myMenu50.add(new WebFXMenuItem("Package definitions", "http://localhost/freeside/browse/part_pkg.cgi", "One or more services are grouped together into a package and given pricing information. Customers purchase packages, not services" ));
myMenu50.add(new WebFXMenuItem("Package classes", "http://localhost/freeside/browse/pkg_class.html", "Package classes define groups of packages, for taxation, ordering convenience and reporting." ));
myMenu50.add(new WebFXMenuItem("Package categories", "http://localhost/freeside/browse/pkg_category.html", "Package categories define groups of package classes, for invoice sections." ));
myMenu50.add(new WebFXMenuItem("Package report classes", "http://localhost/freeside/browse/part_pkg_report_option.html", "Package classes define optional groups of packages for reporting only." ));
myMenu50.add(new WebFXMenuItem("Fees", "http://localhost/freeside/browse/part_fee.html", "" ));
myMenu50.add(new WebFXMenuItem("Discounts", "http://localhost/freeside/browse/discount.html", "" ));
myMenu50.add(new WebFXMenuItem("Discount classes", "http://localhost/freeside/browse/discount_class.html", "" ));
var myMenu51 = new WebFXMenu;
myMenu51.emptyText = '';
myMenu51.add(new WebFXMenuItem("Cancel reasons", "http://localhost/freeside/browse/reason.html?class=C", "Cancel reasons explain why a service was cancelled." ));
myMenu51.add(new WebFXMenuItem("Cancel reason types", "http://localhost/freeside/browse/reason_type.html?class=C", "Cancel reason types define groups of reasons." ));
myMenu51.add(new WebFXMenuItem("Suspend reasons", "http://localhost/freeside/browse/reason.html?class=S", "Suspend reasons explain why a service was suspended." ));
myMenu51.add(new WebFXMenuItem("Suspend reason types", "http://localhost/freeside/browse/reason_type.html?class=S", "Suspend reason types define groups of reasons." ));
myMenu51.width = 256;

myMenu50.add(new WebFXMenuItem("Cancel/Suspend Reasons", null, "", myMenu51 ));
myMenu50.width = 256;

myMenu45.add(new WebFXMenuItem("Packages", null, "", myMenu50 ));
var myMenu52 = new WebFXMenu;
myMenu52.emptyText = '';
myMenu52.add(new WebFXMenuItem("Service definitions", "http://localhost/freeside/browse/part_svc.cgi", "Services are items you offer to your customers" ));
myMenu52.add(new WebFXMenuItem("Service classes", "http://localhost/freeside/browse/part_svc_class.html", "Services classes are user-defined, informational types for services" ));
myMenu52.add(new WebFXMenuItem("Provisioning exports", "http://localhost/freeside/browse/part_export.cgi", "Provisioning services to external machines, databases and APIs" ));
var myMenu53 = new WebFXMenu;
myMenu53.emptyText = '';
myMenu53.add(new WebFXMenuItem("Access numbers", "http://localhost/freeside/browse/svc_acct_pop.cgi", "Points of Presence" ));
myMenu53.width = 256;

myMenu52.add(new WebFXMenuItem("Dialup", null, "", myMenu53 ));
var myMenu54 = new WebFXMenu;
myMenu54.emptyText = '';
myMenu54.add(new WebFXMenuItem("Towers", "http://localhost/freeside/browse/tower.html", "Towers and sectors" ));
myMenu54.add(new WebFXMenuItem("Routers", "http://localhost/freeside/browse/router.cgi", "Broadband access routers" ));
myMenu54.add(new WebFXMenuItem("Address blocks", "http://localhost/freeside/browse/addr_block.cgi", "Manage address blocks and block assignments to broadband routers" ));
myMenu54.add(new WebFXMenuItem("Address ranges", "http://localhost/freeside/browse/addr_range.html", "Designate special address ranges" ));
myMenu54.width = 256;

myMenu52.add(new WebFXMenuItem("Wireless broadband", null, "", myMenu54 ));
var myMenu55 = new WebFXMenu;
myMenu55.emptyText = '';
myMenu55.add(new WebFXMenuItem("View/Edit phone device types", "http://localhost/freeside/browse/part_device.html", "Phone device types" ));
myMenu55.add(new WebFXMenuItem("View/Edit bulk DID vendors", "http://localhost/freeside/browse/did_vendor.html", "Bulk DID vendors" ));
myMenu55.add(new WebFXMenuItem("View/Edit Carriers", "http://localhost/freeside/browse/cdr_carrier.html", "Carriers" ));
myMenu55.width = 256;

myMenu52.add(new WebFXMenuItem("Phone", null, "", myMenu55 ));
var myMenu56 = new WebFXMenu;
myMenu56.emptyText = '';
myMenu56.add(new WebFXMenuItem("RADIUS Groups", "http://localhost/freeside/browse/radius_group.html", "Manage RADIUS groups" ));
myMenu56.add(new WebFXMenuItem("RADIUS Clients", "http://localhost/freeside/browse/nas.html", "Manage RADIUS clients" ));
myMenu56.width = 256;

myMenu52.add(new WebFXMenuItem("RADIUS", null, "", myMenu56 ));
var myMenu57 = new WebFXMenu;
myMenu57.emptyText = '';
myMenu57.add(new WebFXMenuItem("Cable providers", "http://localhost/freeside/browse/cable_provider.html", "" ));
myMenu57.add(new WebFXMenuItem("Cable modem models", "http://localhost/freeside/browse/cable_model.html", "" ));
myMenu57.width = 256;

myMenu52.add(new WebFXMenuItem("Cable", null, "", myMenu57 ));
var myMenu58 = new WebFXMenu;
myMenu58.emptyText = '';
myMenu58.add(new WebFXMenuItem("Alarm system vendors", "http://localhost/freeside/browse/alarm_system.html", "" ));
myMenu58.add(new WebFXMenuItem("Alarm system types", "http://localhost/freeside/browse/alarm_type.html", "" ));
myMenu58.add(new WebFXMenuItem("Alarm central stations", "http://localhost/freeside/browse/alarm_station.html", "" ));
myMenu58.width = 256;

myMenu52.add(new WebFXMenuItem("Alarm", null, "", myMenu58 ));
var myMenu59 = new WebFXMenu;
myMenu59.emptyText = '';
myMenu59.add(new WebFXMenuItem("Circuit types", "http://localhost/freeside/browse/circuit_type.html", "" ));
myMenu59.add(new WebFXMenuItem("Circuit providers", "http://localhost/freeside/browse/circuit_provider.html", "" ));
myMenu59.add(new WebFXMenuItem("Termination types", "http://localhost/freeside/browse/circuit_termination.html", "" ));
myMenu59.width = 256;

myMenu52.add(new WebFXMenuItem("Circuits", null, "", myMenu59 ));
myMenu52.add(new WebFXMenuItem("Hardware types", "http://localhost/freeside/browse/hardware_class.html", "Set up hardware type catalog" ));
myMenu52.width = 256;

myMenu45.add(new WebFXMenuItem("Services", null, "", myMenu52 ));
myMenu45.add(new WebFXMenuSeparator());
var myMenu60 = new WebFXMenu;
myMenu60.emptyText = '';
myMenu60.add(new WebFXMenuItem("Billing events", "http://localhost/freeside/browse/part_event.html", "Billing actions for customers, invoices and packages" ));
myMenu60.add(new WebFXMenuItem("Invoice configurations", "http://localhost/freeside/browse/invoice_conf.html", "Adjust invoice settings for special-purpose notices" ));
myMenu60.add(new WebFXMenuItem("Invoice templates", "http://localhost/freeside/browse/invoice_template.html", "Edit templates for HTML, plaintext and typeset invoices" ));
myMenu60.add(new WebFXMenuItem("Prepaid cards", "http://localhost/freeside/search/prepay_credit.html", "View outstanding cards, generate new cards" ));
var myMenu61 = new WebFXMenu;
myMenu61.emptyText = '';
myMenu61.add(new WebFXMenuItem("Rate plans", "http://localhost/freeside/browse/rate.cgi", "Manage rate plans" ));
myMenu61.add(new WebFXMenuItem("Regions and prefixes", "http://localhost/freeside/browse/rate_region.html", "Manage regions and prefixes" ));
myMenu61.add(new WebFXMenuItem("Usage classes", "http://localhost/freeside/browse/usage_class.html", "Usage classes define groups of usage for taxation." ));
myMenu61.add(new WebFXMenuItem("Time periods", "http://localhost/freeside/browse/rate_time.html", "Time periods define days and hours for rate plans" ));
myMenu61.add(new WebFXMenuItem("Edit rates with Excel", "http://localhost/freeside/misc/rate_edit_excel.html", "Download and edit rates with Excel, then upload changes." ));
myMenu61.add(new WebFXMenuSeparator());
myMenu61.add(new WebFXMenuItem("Tiering plans", "http://localhost/freeside/browse/rate_tier.html", "Rating tiers" ));
myMenu61.width = 256;

myMenu60.add(new WebFXMenuItem("Call rates and regions", null, "Manage rate plans, regions and prefixes for VoIP and call billing", myMenu61 ));
myMenu60.add(new WebFXMenuItem("Locales and tax rates", "http://localhost/freeside/browse/cust_main_county.cgi", "Change tax rates, or break down a country into states, or a state into counties and assign different tax rates to each" ));
myMenu60.add(new WebFXMenuItem("Tax classes", "http://localhost/freeside/browse/part_pkg_taxclass.html", "Tax classes" ));
myMenu60.add(new WebFXMenuItem("Credit reasons", "http://localhost/freeside/browse/reason.html?class=R", "Credit reasons explain why a credit was issued." ));
myMenu60.add(new WebFXMenuItem("Credit reason types", "http://localhost/freeside/browse/reason_type.html?class=R", "Credit reason types define groups of reasons." ));
myMenu60.width = 256;

myMenu45.add(new WebFXMenuItem("Billing", null, "", myMenu60 ));
myMenu45.add(new WebFXMenuSeparator());
var myMenu62 = new WebFXMenu;
myMenu62.emptyText = '';
myMenu62.add(new WebFXMenuItem("Message templates", "http://localhost/freeside/browse/msg_template.html", "Templates for customer notices" ));
myMenu62.add(new WebFXMenuItem("Advertising sources", "http://localhost/freeside/browse/part_referral.html", "Where a customer heard about your service." ));
myMenu62.add(new WebFXMenuItem("Custom fields", "http://localhost/freeside/browse/part_virtual_field.html", "Locally defined fields" ));
myMenu62.add(new WebFXMenuItem("Translation strings", "http://localhost/freeside/browse/msgcat.html", "Translations and other customizable labels for each locale" ));
myMenu62.add(new WebFXMenuItem("Inventory classes and inventory", "http://localhost/freeside/browse/inventory_class.html", "Setup inventory classes and stock inventory" ));
myMenu62.add(new WebFXMenuItem("Upload targets", "http://localhost/freeside/browse/upload_target.html", "Billing and payment upload destinations" ));
myMenu62.width = 256;

myMenu45.add(new WebFXMenuItem("Miscellaneous", null, "", myMenu62 ));
myMenu45.width = 256;

          myBar.add(new WebFXMenuButton('Configuration', null, 'Configuration and setup', myMenu45 ));


          var myMenu63 = new WebFXMenu;
myMenu63.emptyText = '';
myMenu63.add(new WebFXMenuItem("Billing documentation", "http://www.freeside.biz/mediawiki/index.php/Freeside:3:Documentation", "Freeside documentation" ));
myMenu63.add(new WebFXMenuItem("Ticketing documentation", "http://wiki.bestpractical.com/", "Request Tracker Wiki" ));
myMenu63.add(new WebFXMenuSeparator());
myMenu63.add(new WebFXMenuItem("About Freeside v3.8git", "javascript:about_freeside()", "" ));
myMenu63.add(new WebFXMenuItem("About RT v4.0.23", "http://www.bestpractical.com/rt", "Request Tracker Homepage" ));
myMenu63.width = 256;

          myBar.add(new WebFXMenuButton('Help', null, '', myMenu63 ));


  myBar.show( null, 'vertical' );
  myBar.width = 154;

</SCRIPT>




      <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_iframe.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_draggable.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/overlibmws_crossframe.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/iframecontentmws.js"></SCRIPT>
  <SCRIPT TYPE="text/javascript" SRC="http://localhost/freeside/elements/ajaxcontentmws.js"></SCRIPT>

    <SCRIPT TYPE="text/javascript">

  function rs_init_object() {
    var A;
    try {
      A=new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        A=new ActiveXObject("Microsoft.XMLHTTP");
      } catch (oc) {
        A=null;
      }
    }
    if(!A && typeof XMLHttpRequest != "undefined")
      A = new XMLHttpRequest();
    if (!A)
      alert("Can't create XMLHttpRequest object");
    return A;

  }

</SCRIPT>

    <SCRIPT TYPE="text/javascript">

  function logout() {
    // count args; build URL
    var url = "http://localhost/freeside/loginout/logout.html";

    var xmlhttp = rs_init_object();
    xmlhttp.open("GET", url, false, "magic", "notyet");
    xmlhttp.setRequestHeader("If-Modified-Since", "Sat, 1 Jan 2000 00:00:00 GMT");
    xmlhttp.send(null);

    if (xmlhttp.readyState != 4) {
      alert("Logout failed: readyState is " + xmlhttp.readyState);
      return;
    }

    if (xmlhttp.status != 200) {
      alert("Logout failed: status is " + xmlhttp.status);
    } else {
      var data = xmlhttp.responseText;
      // alert('received response: ' + data);
      if ( data.indexOf("<b>System error</b>") > -1 ) {
        var w;
        if ( w = window.open("about:blank") ) {
          w.document.write(data);
        } else {
          // popup blocking?  should use an overlib popup instead 
          alert("Error popup disabled; try disabling popup blocking to see");
        }
      } else {
        window.location = "http://localhost/freeside/loginout/logout.html";
      }
    }
  }

</SCRIPT>


    

  </HEAD>
  <BODY BGCOLOR="#f8f8f8"  STYLE="margin-top:0; margin-bottom:0; margin-left:0px; margin-right:0px">
    <table width="100%" CELLPADDING=0 CELLSPACING=0 STYLE="padding-left:0px; padding-right:4px" CLASS="fshead">
      <tr>
        <td BGCOLOR="#ffffff"><IMG BORDER=0 ALT="freeside" HEIGHT="36" SRC="http://localhost/freeside/view/REAL_logo.cgi"></td>
        <td align=left BGCOLOR="#ffffff"> <!-- valign="top" -->
          <font size=6>Freeside Test 3.8.1</font>
        </td>
        <td align=right valign=top BGCOLOR="#ffffff"><FONT SIZE="-1">Logged in as <b>test&nbsp;</b> <FONT SIZE="-2"><a href="javascript:void(0);" onClick="logout();">logout</a></FONT><br></FONT><FONT SIZE="-2"><a href="http://localhost/freeside/pref/pref.html" STYLE="color: #000000">Preferences</a>
          <BR></FONT>
        </td>
      </tr>
    </table>

    <TABLE WIDTH="100%" CELLSPACING=0 CELLPADDING=0>

<link href="http://localhost/freeside/elements/freeside-menu.css" type="text/css" rel="stylesheet">


      <TR CLASS="fsmenubar">


        <TD COLSPAN="7" WIDTH="100%" STYLE="padding:1px 0px 0px 0px;border-top: 1px solid #7e0079" BGCOLOR="#cccccc">
          <SCRIPT TYPE="text/javascript">
            document.write(myBar);
          </SCRIPT>
        </TD>

      </TR>

      <TR CLASS="fssearchbar">

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="right" STYLE="padding-left:2px">
          
  <FORM ACTION="http://localhost/freeside/search/prospect_main.html" METHOD="GET" STYLE="margin:0">
    <INPUT NAME="search_prospect" TYPE="text" VALUE="(name, company or phone)" STYLE="width:155px" onFocus="clearhint_search_prospect(this);" onClick="clearhint_search_prospect(this);" CLASS="fstext"><BR>
    <A HREF="http://localhost/freeside/search/report_prospect_main.html" CLASS="fslink" STYLE="font-size: 11px">Adv</A>
    <INPUT TYPE="submit" VALUE="Search prospects" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px">
  </FORM>
  


<SCRIPT TYPE="text/javascript">

  function clearhint_search_prospect (what) {
    if ( what.value == '(name, company or phone)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="right" STYLE="padding-left:2px">
          
  <FORM ACTION="http://localhost/freeside/search/cust_main.cgi" METHOD="POST" STYLE="margin:0">
    <INPUT NAME="search_cust" TYPE="text" VALUE="(cust #, name, company or contact phone)" STYLE="width:246px" onFocus="clearhint_search_cust(this);" onClick="clearhint_search_cust(this);" CLASS="fstext"><BR>
    <A HREF="http://localhost/freeside/search/report_cust_main.html" CLASS="fslink" STYLE="font-size: 11px">Advanced</A>
    <INPUT TYPE="submit" VALUE="Search customers" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px">
  </FORM>
  


<SCRIPT TYPE="text/javascript">

  function clearhint_search_cust (what) {
    if ( what.value == '(cust #, name, company or contact phone)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="center">
          
<SCRIPT TYPE="text/javascript">

  function clearhint_search_address2 (what) {
    if ( what.value == '(Unit #)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="right">
          
  <FORM ACTION="http://localhost/freeside/search/cust_bill.html" METHOD="GET" STYLE="margin:0;display:inline">
    <INPUT NAME="invnum" TYPE="text" VALUE="(inv #)" STYLE="width:56px" onFocus="clearhint_search_invoice(this);" onClick="clearhint_search_invoice(this);" CLASS="fstext">
    <A HREF="http://localhost/freeside/search/report_cust_bill.html" CLASS="fslink" STYLE="font-size: 11px">Adv</A>    <BR>
    <INPUT TYPE="submit" VALUE="Search invoices" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px;padding-left:1px;padding-right:1px;margin-top:3px">
  </FORM>
  


<SCRIPT TYPE="text/javascript">

  function clearhint_search_invoice (what) {
    if ( what.value == '(inv #)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="right" STYLE="padding-left:2px">
          
  <FORM ACTION="http://localhost/freeside/search/cust_svc.html" METHOD="GET" STYLE="margin:0">
    <INPUT NAME="search_svc" TYPE="text" VALUE="(user, email, ip, mac, domain or service phone)" STYLE="width:271px" onFocus="clearhint_search_svc(this);" onClick="clearhint_search_svc(this);" CLASS="fstext"><BR>
    <A NOTYET="http://localhost/freeside/search/svc_Smarter.html" STYLE="color: #cccccc; font-size:11px">Advanced</A>
    <INPUT TYPE="submit" VALUE="Search services" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px">
  </FORM>
  


<SCRIPT TYPE="text/javascript">

  function clearhint_search_svc (what) {
    if ( what.value == '(user, email, ip, mac, domain or service phone)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

        <TD COLSPAN=1 BGCOLOR="#cccccc" ALIGN="right" STYLE="padding-left:2px;padding-right:2px">
          
  <FORM ACTION="http://localhost/freeside//rt/index.html" METHOD="GET" STYLE="margin:0">
    <INPUT NAME="q" TYPE="text" VALUE="(ticket #, subject, email or fulltext:text)" STYLE="width:223px" onFocus="clearhint_search_ticket(this);" onClick="clearhint_search_ticket(this);" CLASS="fstext"><BR>
    <A HREF="http://localhost/freeside//rt/Search/Build.html?NewQuery=1" CLASS="fslink" STYLE="font-size:11px">Advanced</A>
    <INPUT TYPE="submit" VALUE="Search tickets" CLASS="fsblackbutton" onMouseOver="this.className='fsblackbuttonselected'; return true;" onMouseOut="this.className='fsblackbutton'; return true;" STYLE="font-size:11px">
  </FORM>
  


<SCRIPT TYPE="text/javascript">

  function clearhint_search_ticket (what) {
    if ( what.value == '(ticket #, subject, email or fulltext:text)' )
      what.value = '';
  }

</SCRIPT>

        </TD>

      </TR>
    </TABLE>



    <TABLE WIDTH="100%" HEIGHT="100%" CELLSPACING=0 CELLPADDING=4>

      <TR HEIGHT="100%">

        <TD CLASS="background" HEIGHT="100%" VALIGN="top"> <!-- WIDTH="100%"> -->

          <FONT SIZE=6>
            Package Definitions
          </FONT>

          <BR><BR>

          




        
    One or more service definitions are grouped together into a package 
    definition and given pricing information.  Customers purchase packages
    rather than purchase services directly.<BR><BR>
    <FORM METHOD="GET" ACTION="http://localhost/freeside/edit/part_pkg.cgi">
    <A HREF="http://localhost/freeside/edit/part_pkg.cgi"><I>Add a new package definition</I></A>
    or
    

<SELECT 
        NAME = "clone"
        ID   = "pkgpart"
        
        
        
>


    <OPTION VALUE="">Select package

    <OPTION VALUE="4"
            
    >
     4: Annual subscription domain
    <OPTION VALUE="5"
            
    >
     5: Monthly anniversary phone x4
    <OPTION VALUE="2"
            
    >
     2: Monthly prorated account
    <OPTION VALUE="3"
            
    >
     3: Monthly prorated broadband
    <OPTION VALUE="1"
            
    >
     1: System Domain - (NOT FOR CUSTOMERS)


</SELECT>



    <INPUT TYPE="submit" VALUE="Clone existing package">
    </FORM>
    <BR><BR>
  



        <TABLE>
          <TR>

            <TD VALIGN="bottom">

              <FORM>

                  5 total package definitions


                    
<SCRIPT TYPE="text/javascript">
function filter_change() {  window.location = 'http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;classnum=' + document.getElementById('classnum').options[document.getElementById('classnum').selectedIndex].value}
</SCRIPT>

<BR>( show class: 
<SELECT 
        NAME = "classnum"
        ID   = "classnum"
        onChange="filter_change()"
        
        
>

    <OPTION VALUE="-1"
            
    >all
    <OPTION VALUE="0"
            
    >(none)


    <OPTION VALUE="1"
            
    >
     Fees


</SELECT>


 )( <A HREF="http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;recurring=1">hide one-time charges</A> )( <a href="http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;recurring=0;showdisabled=1">show disabled package definitions</a> )
                <BR>

              </FORM>

            </TD>


          </TR>
          <TR>
            <TD COLSPAN=2>


                


                <FORM ACTION="http://localhost/freeside/edit/bulk-part_pkg.html" METHOD="POST">


              
<TABLE CLASS="grid" CELLSPACING=0 CELLPADDING=0 >




<THEAD>

  <TR>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "2"
        
        

    >
      <A HREF="http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;recurring=0;showdisabled=0;order_by=pkgpart">#</A>
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      <A HREF="http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;recurring=0;showdisabled=0;order_by=pkg">Package</A>
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      <A HREF="http://localhost/freeside/browse/part_pkg.cgi?active=1;dummy=1;recurring=0;showdisabled=0;order_by=comment">Comment</A>
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Custom
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Class
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Pricing
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Cost&nbsp;tracking
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Customer<BR>packages
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Plan options
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      Services
    </TH>
    <TH CLASS   = "grid"
        BGCOLOR = "#cccccc"
        ROWSPAN = "1"
        
        

    >
      
    </TH>
  </TR>


</THEAD>

<TBODY>


    <TR ID="2" CLASS="row0">



        <TD CLASS="grid"  ALIGN=right ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?2">2</A></TD>



        <TD CLASS="grid"  ALIGN=left ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?2">Monthly prorated account</A></TD>



        <TD CLASS="grid"  ALIGN=left ></TD>



        <TD CLASS="grid"  ALIGN=center ><B><FONT COLOR="#0000CC"></FONT></B></TD>



        <TD CLASS="grid"  ALIGN=left >(none)</TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">Prorate&nbsp;(Nth&nbsp;of&nbsp;month&nbsp;billing)</td></tr><tr><TD ALIGN="right">$20.00 </td><TD ALIGN="left"> &nbsp; setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$30.00</td><TD ALIGN="left"> &nbsp; monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">&nbsp;</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left">&nbsp;setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$0.00</td><TD ALIGN="left">&nbsp;monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B><FONT COLOR="#FF00F5">0</FONT></B></td><TD ALIGN="left">on hold</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#009999">0</FONT></B></td><TD ALIGN="left">not yet billed</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#00CC00">150</FONT></B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/search/cust_pkg.cgi?pkgpart=2;magic=active">active</A></td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF9900">0</FONT></B></td><TD ALIGN="left">suspended</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF0000">0</FONT></B></td><TD ALIGN="left">cancelled</td></tr><tr><TD ></td><TD ALIGN="left"><FONT SIZE="-1">[ <A HREF="javascript:void(0);"
   onClick="overlib( OLiframeContent('http://localhost/freeside/edit/bulk-cust_pkg.html?pkgpart=2', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close'); return false;"
   
   
   
>change</A> ]</FONT></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B>1</B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/edit/part_svc.cgi?2">Test&nbsp;svc_acct</A></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><INPUT TYPE="checkbox" NAME="pkgpart" VALUE=2></TD>


    </TR>

    <TR ID="3" CLASS="row1">



        <TD CLASS="grid"  ALIGN=right ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?3">3</A></TD>



        <TD CLASS="grid"  ALIGN=left ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?3">Monthly prorated broadband</A></TD>



        <TD CLASS="grid"  ALIGN=left ></TD>



        <TD CLASS="grid"  ALIGN=center ><B><FONT COLOR="#0000CC"></FONT></B></TD>



        <TD CLASS="grid"  ALIGN=left >(none)</TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">Prorate&nbsp;(Nth&nbsp;of&nbsp;month&nbsp;billing)</td></tr><tr><TD ALIGN="right">$40.00 </td><TD ALIGN="left"> &nbsp; setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$90.00</td><TD ALIGN="left"> &nbsp; monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">&nbsp;</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left">&nbsp;setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$0.00</td><TD ALIGN="left">&nbsp;monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B><FONT COLOR="#FF00F5">0</FONT></B></td><TD ALIGN="left">on hold</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#009999">0</FONT></B></td><TD ALIGN="left">not yet billed</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#00CC00">150</FONT></B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/search/cust_pkg.cgi?pkgpart=3;magic=active">active</A></td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF9900">0</FONT></B></td><TD ALIGN="left">suspended</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF0000">0</FONT></B></td><TD ALIGN="left">cancelled</td></tr><tr><TD ></td><TD ALIGN="left"><FONT SIZE="-1">[ <A HREF="javascript:void(0);"
   onClick="overlib( OLiframeContent('http://localhost/freeside/edit/bulk-cust_pkg.html?pkgpart=3', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close'); return false;"
   
   
   
>change</A> ]</FONT></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">prorate_round_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr><tr><TD ALIGN="right">prorate_verbose: </td><TD ALIGN="left">1</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B>1</B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/edit/part_svc.cgi?4">Test&nbsp;svc_broadband</A></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><INPUT TYPE="checkbox" NAME="pkgpart" VALUE=3></TD>


    </TR>

    <TR ID="4" CLASS="row0">



        <TD CLASS="grid"  ALIGN=right ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?4">4</A></TD>



        <TD CLASS="grid"  ALIGN=left ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?4">Annual subscription domain</A></TD>



        <TD CLASS="grid"  ALIGN=left ></TD>



        <TD CLASS="grid"  ALIGN=center ><B><FONT COLOR="#0000CC"></FONT></B></TD>



        <TD CLASS="grid"  ALIGN=left >(none)</TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">Subscription&nbsp;(Nth&nbsp;of&nbsp;month,&nbsp;full&nbsp;charge&nbsp;for&nbsp;first)</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left"> &nbsp; setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$25.00</td><TD ALIGN="left"> &nbsp; annually</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">&nbsp;</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left">&nbsp;setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$0.00</td><TD ALIGN="left">&nbsp;annually</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B><FONT COLOR="#FF00F5">0</FONT></B></td><TD ALIGN="left">on hold</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#009999">0</FONT></B></td><TD ALIGN="left">not yet billed</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#00CC00">150</FONT></B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/search/cust_pkg.cgi?pkgpart=4;magic=active">active</A></td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF9900">0</FONT></B></td><TD ALIGN="left">suspended</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF0000">0</FONT></B></td><TD ALIGN="left">cancelled</td></tr><tr><TD ></td><TD ALIGN="left"><FONT SIZE="-1">[ <A HREF="javascript:void(0);"
   onClick="overlib( OLiframeContent('http://localhost/freeside/edit/bulk-cust_pkg.html?pkgpart=4', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close'); return false;"
   
   
   
>change</A> ]</FONT></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">cutoff_day: </td><TD ALIGN="left">1</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B>1</B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/edit/part_svc.cgi?3">Test&nbsp;svc_domain</A></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><INPUT TYPE="checkbox" NAME="pkgpart" VALUE=4></TD>


    </TR>

    <TR ID="5" CLASS="row1">



        <TD CLASS="grid"  ALIGN=right ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?5">5</A></TD>



        <TD CLASS="grid"  ALIGN=left ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?5">Monthly anniversary phone x4</A></TD>



        <TD CLASS="grid"  ALIGN=left ></TD>



        <TD CLASS="grid"  ALIGN=center ><B><FONT COLOR="#0000CC"></FONT></B></TD>



        <TD CLASS="grid"  ALIGN=left >(none)</TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">Anniversary</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left"> &nbsp; setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$60.00</td><TD ALIGN="left"> &nbsp; monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">&nbsp;</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left">&nbsp;setup</td></tr><tr><TD ALIGN="right" COLSPAN="1">$0.00</td><TD ALIGN="left">&nbsp;monthly</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B><FONT COLOR="#FF00F5">0</FONT></B></td><TD ALIGN="left">on hold</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#009999">0</FONT></B></td><TD ALIGN="left">not yet billed</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#00CC00">150</FONT></B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/search/cust_pkg.cgi?pkgpart=5;magic=active">active</A></td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF9900">0</FONT></B></td><TD ALIGN="left">suspended</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF0000">0</FONT></B></td><TD ALIGN="left">cancelled</td></tr><tr><TD ></td><TD ALIGN="left"><FONT SIZE="-1">[ <A HREF="javascript:void(0);"
   onClick="overlib( OLiframeContent('http://localhost/freeside/edit/bulk-cust_pkg.html?pkgpart=5', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close'); return false;"
   
   
   
>change</A> ]</FONT></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right">recur_temporality: </td><TD ALIGN="left">upcoming</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B>4</B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/edit/part_svc.cgi?5">Test&nbsp;svc_phone</A></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><INPUT TYPE="checkbox" NAME="pkgpart" VALUE=5></TD>


    </TR>

    <TR ID="1" CLASS="row0">



        <TD CLASS="grid"  ALIGN=right ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?1">1</A></TD>



        <TD CLASS="grid"  ALIGN=left ><A HREF="http://localhost/freeside/edit/part_pkg.cgi?1">System Domain</A></TD>



        <TD CLASS="grid"  ALIGN=left >(NOT FOR CUSTOMERS)</TD>



        <TD CLASS="grid"  ALIGN=center ><B><FONT COLOR="#0000CC"></FONT></B></TD>



        <TD CLASS="grid"  ALIGN=left >(none)</TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">Anniversary</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left"> &nbsp; one-time</td></tr><tr><TD ALIGN="center" COLSPAN="2">(no recurring fee)</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="center" COLSPAN="2">&nbsp;</td></tr><tr><TD ALIGN="right">$0.00 </td><TD ALIGN="left">&nbsp;one-time</td></tr><tr><TD ALIGN="center" COLSPAN="2">(no&nbsp;recurring)</td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B><FONT COLOR="#FF00F5">0</FONT></B></td><TD ALIGN="left">on hold</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#009999">1</FONT></B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/search/cust_pkg.cgi?pkgpart=1;magic=not_yet_billed">not yet billed</A></td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#">0</FONT></B></td><TD ALIGN="left">charges</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF9900">0</FONT></B></td><TD ALIGN="left">suspended</td></tr><tr><TD ALIGN="right"><B><FONT COLOR="#FF0000">0</FONT></B></td><TD ALIGN="left">cancelled</td></tr><tr><TD ></td><TD ALIGN="left"><FONT SIZE="-1">[ <A HREF="javascript:void(0);"
   onClick="overlib( OLiframeContent('http://localhost/freeside/edit/bulk-cust_pkg.html?pkgpart=1', 569, 210, 'popup-0000000000-0000-000000000.000000', 0, 'auto' ), CAPTION, 'Change Packages', STICKY, AUTOSTATUSCAP, MIDX, 0, MIDY, 0, DRAGGABLE, CLOSECLICK, BGCOLOR, '#333399', CGCOLOR, '#333399', CLOSETEXT, 'Close'); return false;"
   
   
   
>change</A> ]</FONT></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"></table></TD>



        <TD CLASS="grid"  ALIGN=right ><TABLE CLASS="inv" CELLSPACING=0 CELLPADDING=0 WIDTH="100%"><tr><TD ALIGN="right"><B>1</B></td><TD ALIGN="left"><A HREF="http://localhost/freeside/edit/part_svc.cgi?1"><B>Domain&nbsp;(PRIMARY)</B></A></td></tr></table></TD>



        <TD CLASS="grid"  ALIGN=left ><INPUT TYPE="checkbox" NAME="pkgpart" VALUE=1></TD>


    </TR>


</TBODY>

</TABLE>


              

  
            </TD>
          </TR>
        </TABLE>


        <DIV ID="checkbox_footer" STYLE="display:block">
<INPUT TYPE="button" VALUE="select all" onclick="setAll(true)">
<INPUT TYPE="button" VALUE="unselect all" onclick="setAll(false)">
<BR>
<INPUT TYPE="submit"    VALUE="edit report classes">
</DIV>
<SCRIPT>
var checkboxes = [];
var inputs = document.getElementsByTagName('input');
for (var i = 0; i < inputs.length; i++) {
  var obj = inputs[i];
  if ( obj.type == "checkbox" && true ) {
    checkboxes.push(obj);
  }
}
if ( checkboxes.length == 0 ) {
  document.getElementById('checkbox_footer').style.display = 'none';
}
function setAll(setTo) {
  for (var i = 0; i < checkboxes.length; i++) {
    checkboxes[i].checked = setTo;
  }
}
function toCGIString() {
  var out = '';
  for (var i = 0; i < checkboxes.length; i++) {
    if (checkboxes[i].checked) {
      out += '&' + checkboxes[i].name + '=' + checkboxes[i].value;
    }
  }
  return out;
}
</SCRIPT>
</FORM>

                </TD>
      </TR>
    </TABLE>
  </BODY>
</HTML>