forked from sangharshbyss/EcourtsData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
samplePage.html
1657 lines (1303 loc) · 245 KB
/
samplePage.html
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
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><script type="text/javascript">
function funConnError()
{
document.getElementById('showList').innerHTML="";
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display="";
var val='CONNECTION FAILED';
document.getElementById('txtmsg').value=val;
document.getElementById("txtmsg").title =val;
document.getElementById('txtmsg').focus();
}
function funUsrError()
{
document.getElementById('showList').innerHTML="";
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display="";
var val='THERE IS AN ERROR';
document.getElementById('txtmsg').value=val;
document.getElementById("txtmsg").title =val;
document.getElementById('txtmsg').focus();
}
function funUsrErrorParam(input)
{
document.getElementById('showList').innerHTML="";
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display="";
var val='THERE IS AN '+input;
document.getElementById('txtmsg').value=val;
document.getElementById("txtmsg").title =val;
document.getElementById('txtmsg').focus();
}
function ValidateCaptchaAtClient()
{
//if(APPSCAN=='N')
{
var captchaObj=document.getElementsByName('captcha');
if(captchaObj[0].value == "")
{
alert("Please Enter Captcha Text" );
captchaObj[0].focus();
return false;
}
var captchaVal=captchaObj[0].value ;
var reg = new RegExp('^[0-9a-zA-Z]+$');
if(!captchaVal.match(reg))
{
alert("Enter only alpha numeric characters in captcha");
captchaObj[0].value='';
captchaObj[0].focus();
return false;
}
else if(captchaVal.length!=6)
{
alert("Invalid Captcha");
captchaObj[0].value='';
captchaObj[0].focus();
return false;
}
else
{
return true;
}
}
/*else
{
return true;
}*/
}
function funServerSideValidateErr()
{
document.getElementById('showList').innerHTML="";
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display="";
var val='Invalid Input';
document.getElementById('txtmsg').value=val;
document.getElementById("txtmsg").title =val;
document.getElementById('txtmsg').focus();
}
function escapeHtml(str)
{
str=str.replace(/&|<script|script>/g,'');
return str;
}
function trim(inputString) {
if (typeof inputString != "string") { return inputString; }
var retValue = inputString;
var ch = retValue.substring(0, 1);
while (ch == " ")
{
retValue = retValue.substring(1, retValue.length);
ch = retValue.substring(0, 1);
}
ch = retValue.substring(retValue.length-1, retValue.length);
while (ch == " ")
{
retValue = retValue.substring(0, retValue.length-1);
ch = retValue.substring(retValue.length-1, retValue.length);
}
while (retValue.indexOf(" ") != -1)
{
retValue = retValue.substring(0, retValue.indexOf(" ")) +
retValue.substring(retValue.indexOf(" ")+1, retValue.length);
}
return retValue;
}
function checkInteger(str)
{
var len = str.length;
for(var i=0; i < len; i++)
{
if(str.charAt(i) == ".")
{
return false;
}
}
}
function applycsswhite1()
{
$("body").css("color", "black");
$("h4").css("color", "#4B8BCD");
$(".headingtxt").css("color", " #4B8BCD");
$("tr").css("background", "#fff");
$(".button").css("background", "#1A5984");
$(".title").css("color", "#4B8BCD");
$("a").css("color", "#4B8BCD");
$(".Lower_court_table").css("background", "#fdf7f4");
$(".Acts_table").css("background", "#fdf6e9");
$(".Respondent_Advocate_table").css("background", "#f5f1fc");
$(".Petitioner_Advocate_table").css("background", "#f3fafe");
$(".case_details_table").css("background", "#f9fdf1");
$(".FIR_details_table").css("background", "#fae3df");
$(".order_table").css("background", "#f5f1fc");
$(".Lower_court_table").css("border", "1px solid #000");
$(".Acts_table").css("border", "1px solid #000");
$(".Respondent_Advocate_table").css("border", "1px solid #000");
$(".Petitioner_Advocate_table").css("border", "1px solid #000");
$(".case_details_table").css("border-bottom", "1px solid #000");
$(".FIR_details_table").css("border", "1px solid #000");
}
function applycssblack1()
{
$("body").css("color", "white ");
$("body").css("background", "#3D3A3A ");
$("h4").css("color", "white");
$(".headingtxt").css("color", "white");
$("a:hover").css("color", "white");
$("tr").css("background", "#3D3A3A");
$(".button").css("background", "black");
$(".title").css("color", "white");
$("a").css("color", "yellow");
$("table.bordered th").css("color", "#000");
$(".Lower_court_table").css("background", "#3D3A3A");
$(".Acts_table").css("background", "#3D3A3A");
$(".Respondent_Advocate_table").css("background", "#3D3A3A");
$(".Petitioner_Advocate_table").css("background", "#3D3A3A");
$(".case_details_table").css("background", "#3D3A3A");
$(".FIR_details_table").css("background", "#3D3A3A");
$(".Lower_court_table").css("border", "1px solid #fff");
$(".Acts_table").css("border", "1px solid #fff");
$(".Respondent_Advocate_table").css("border", "1px solid #fff");
$(".Petitioner_Advocate_table").css("border", "1px solid #fff");
$(".case_details_table").css("border-bottom", "1px solid #fff");
$(".FIR_details_table").css("border", "1px solid #fff");
$(".order_table").css("background", "#3D3A3A");
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Case Status : Search by Act Type </title>
<link rel="stylesheet" href="../css/style.css" type="text/css">
<style type="text/css">
a
{
color: red;
text-decoration:none;
}
a:hover
{
color: #ff0000;
text-decoration:underline;
}
a:focus
{
color: #ff0000;
text-decoration:underline;
}
body
{
width:700px;
margin-top:0px;
overflow-x: hidden;
}
</style>
</head>
<body>
<div id="sizecontroldiv" class="controlstyle"><a href="#smaller" title="smaller"></a><a href="#fontsize0" title="fontsize0"></a><a href="#bigger" title="bigger"></a>
</div>
<div class="common_header">
<table style="margin:0 auto;" width="90%">
<tbody><tr>
<td width="20%" align="center"><img src="../images/ecourts-logo.png"></td>
<td width="80%"><span class="head1">E-COURTS</span><br><span class="head2">Official website of District Courts</span></td>
</tr>
</tbody></table>
</div>
<form name="frm" method="post" action="">
<div id="back_top" style=""><center><a href="#" onclick="funBack();">Back</a></center></div>
<div id="back_business" style="display:none;"><center><a href="#" onclick="funBackBusiness();">Back </a></center></div>
<div id="back_auth" style="display:none;"><center><a href="#" onclick="funShowAuth();">Back </a></center></div>
<div id="fourthpage"></div>
<div id="thirdpage"></div>
<div id="secondpage">
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Case History</title>
<style type="text/css">
a {
color: #5399E1;
text-decoration:none;
}
a:hover {
color: #366494;
text-decoration:underline;
}
a:focus {
color: #366494;
text-decoration:underline;
}
body
{ font-size:12px;
}
tbody
{ font-size:12px;
}
#nextDate {
animation-duration: 700ms;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.h3class{
font-size:1em;
padding-top:-10px;
font-weight:normal;
margin-bottom:5px;
}
.h2class{
font-size:1.1em;
font-weight:normal;
padding-top:-10px;
margin-bottom:5px;
}
.h1class{
font-size:1.2em;
font-weight:normal;
}
.controlstyle
{ display:none;}
.blinking{
animation:blinkingText 2.3s infinite;
font-size: initial;
}
@keyframes blinkingText{
0%{ color: red; }
49%{ color: red;font-weight: 600; }
50%{ color: red;font-weight: 700; }
99%{ color:red;font-weight: 600; }
100%{ color: red; }
}
</style>
<link rel="stylesheet" href="../css/history.css" type="text/css">
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../js/fluidtextresizer.js"></script>
<script type="text/javascript" language="javascript">
//<![CDATA[
function newcss()
{
var sess_color_value="W";
if(sess_color_value=='B' )
{
applycssblack1();
}
else if(sess_color_value=='W' )
{
applycsswhite1();
}
else if (parent.document.getElementById("txt_css").value=='black')
{
parent.applycssblack();
}
else if (parent.document.getElementById("txt_css").value=='white')
{
parent.applycsswhite();
}
}
function openpopup(popurl)
{
var winpops=window.open(popurl,"","width=400,height=400,scrollbars,menubar,resizable")
}
//]]>
</script>
<script type="text/javascript" language="javascript">
//<![CDATA[
var mytextsizer=new fluidtextresizer({
controlsdiv: "sizecontroldiv", //id of special div containing your resize controls. Enter "" if not defined
targets: ["body"], //target elements to resize text within: ["selector1", "selector2", etc]
levels: 1, //number of levels users can magnify (or shrink) text
persist: "session", //enter "session" or "none"
animate: 200 //animation duration of text resize. Enter 0 to disable
})
//]]>
</script>
<script language="JavaScript" src="../includes/javascript/xmlhttp.js" type="text/javascript"></script>
<div id="sizecontroldiv" class="controlstyle">
<a href="#smaller"></a><a href="#fontsize0"></a><a href="#bigger"></a>
</div>
<div style="margin-top:-5px;" align="center">
<span id="errSpan" style="font-color:red;"></span>
<span style="margin-top:-20px;">
</span>
<br>
<h1 class="h1class"><span style="font-weight:bold;">District and Session Court , Kopergaon</span></h1>
<div style=" height:80px; width:700px; "><span class="heading" style=" text-align:center;"><label><h2 class="h2class" style="font-weight:bold;">Case Details</h2></label></span><span class="case_details_table" style="padding-left:-5px;float:left;border-top:1px solid #000;border-left:1px solid #000;border-right:1px solid #000;border-bottom:1px solid #000; width:100%; text-align:left;"><span style="-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width:225px;float:left;padding-left:5px;"><label>Case Type </label></span>: Sessions Case</span><br><span class="case_details_table" style="float:left;border-top:0px solid #000;border-bottom:1px solid #000;border-left:1px solid #000;border-right:1px solid #000;width:100%;text-align:left;"><span style="-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width:225px;float:left;padding-left:5px; "><label>Filing Number</label></span>: 249/2017<span style="text-align:left;padding-left:100px;"><label>Filing Date</label>: 24-04-2017</span></span><br><span class="case_details_table" style="float:left;border-top:0px solid #000;border-left:1px solid #000;border-right:1px solid #000;border-bottom:1px solid #000; width:100%;text-align:left;"><span style="-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width:225px; float:left;padding-left:5px;"><label>Registration Number</label></span><label>: 17/2017</label><span style="text-align:left;padding-left:100px;"><label>Registration Date</label><label>: 26-04-2017</label></span></span><br><b><span class="case_details_table" style="float:left; width:100%;text-align:left;border-top:1px solid #000;border-left:1px solid #000;border-right:1px solid #000;border-top:0px;border-bottom:1px solid #000;"><span style="-webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width:225px;float:left;padding-left:5px;"><label>CNR Number</label></span>: MHAH10-000383-2017</span></b></div><br><h2 class="h2class" style=" clear:both;color:red;font-weight:bold;display: block;">Case Status</h2><div style="width:700px;margin-top:0px;background-color:#FBF6D9;font-size:1em ;font-weight:200;color:red;text-align:center;"><span>
<label style="float:left;border-top:1px solid red; border-bottom:1px solid red; width:100%;border-left:1px solid red ;border-right:1px solid red;"><strong style="float:left; width:225px;text-align:left; padding-left:5px;">First Hearing Date </strong><strong style="float:left;">: 02nd May 2017</strong></label></span><br style="clear:left;"><span><label style="float:left;border-bottom:1px solid red; width:100%;border-left:1px solid red ;border-right:1px solid red ;"><strong style="float:left; width:225px;text-align:left; padding-left:5px;">Next Hearing Date</strong><strong style="float:left;">: 17th June 2020</strong></label></span><br style="clear:left;"><span><label style="float:left; border-bottom:1px solid red; width:100%;border-left:1px solid red ;border-right:1px solid red ;"><strong style="float:left; width:225px;text-align:left; padding-left:5px;">Stage of Case</strong><strong style="float:left;">: Hearing</strong></label></span><br style="clear:left;"><span><label style="float:left;border-left:1px solid red ;border-right:1px solid red ; border-bottom:1px solid red ; width:100%;border-left:1px solid red ;border-right:1px solid red ;height:auto;"><strong style="float:left; width:225px;text-align:left; padding-left:5px;">Court Number and Judge</strong> <strong style="float:left;width:470px; text-align:left;"> : 1-District Judge-1 Addl. Sessions Judge</strong></label></span><br style="clear:left;"></div><div style="width:700px;margin-top:10px;"><h2 class="h2class" style="font-weight:bold;">Petitioner and Advocate</h2><span class="Petitioner_Advocate_table" style="float:left;border:1px solid #000; width:100%;text-align:left; margin-bottom:10px; padding-left:5px;">1) State Of Maharashtra<br> Advocate- Gujar S. M.<br><br></span><br><h2 class="h2class" style="font-weight:bold;">Respondent and Advocate</h2><span class="Respondent_Advocate_table" style="float:left;border:1px solid #000; width:100%;text-align:left;margin-bottom:10px;padding-left:5px;">1) Hemant Shivaji Wani<br> Advocate - Joshi J. A.<br><br>2) Pramod Shivaji Wani<br> <br></span><br><h2 class="h2class" style="font-weight:bold;">Acts</h2><table style="border-collapse:collapse;box-sizing:border-box; -moz-box-sizing:border-box; " id="act_table" class="Acts_table" width="100%" cellspacing="0" cellpadding="1" border="1" align="center"><tbody><tr><th><b>Under Act(s)</b></th><th><b>Under Section(s)</b></th></tr><tr><td style="padding-left:5px;" width="50%" align="left">INDIAN PENAL CODE</td><td style="padding-left:5px;" width="50%" align="center">323,504,506</td></tr><tr><td style="padding-left:5px;" width="50%" align="left">Scheduled Castes and the Scheduled Tribes (Prevention of Atrocities) Act</td><td style="padding-left:5px;" width="50%" align="center">3(1),(10)</td></tr></tbody></table></div><div style=" width:700px;"><h2 class="h2class" style="font-weight:bold;">Subordinate Court Information</h2><span class="Lower_court_table" style="float:left;border:1px solid #000; width:100%;text-align:left; margin-bottom:10px; padding-left:5px; "><span style="width:150px;display:inline-block;">Court Number and Name</span><label style="text-align:left">: ---</label><br><span style="width:150px;display:inline-block;">Case Number and Year</span><label style="text-align:left">: R.C.C. - 0000068 - 2016</label><br><span style="width:150px;display:inline-block;">Case Decision Date</span><label style="text-align:left">: 24-01-2017</label></span></div><table id="historyheading"><tbody><tr><td><h2 class="h2class" style="clear:both;font-weight:bold;text-align:center;margin-top:10px;">History of Case Hearing</h2></td></tr></tbody></table><table style="border-collapse:collapse;box-sizing:border-box; -moz-box-sizing:border-box; " class="history_table" width="700px" cellspacing="0" cellpadding="1" border="1" align="center"><tbody><tr><th scope="col" style="" align="left">Registration Number</th><th scope="col" style="">Judge</th><th scope="col" style="">Business On Date</th><th scope="col" style="">Hearing Date</th><th scope="col" style="">Purpose of hearing</th></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20170530','MHAH100003832017','1','Pending','02-05-2017','1')">02-05-2017</a></td><td>30-05-2017</td><td style=""> First Order</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20170627','MHAH100003832017','1','Pending','30-05-2017','1','')">30-05-2017</a></td><td>27-06-2017</td><td style=""> First Order</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20170725','MHAH100003832017','1','Pending','27-06-2017','1','')">27-06-2017</a></td><td>25-07-2017</td><td style=""> First Order</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20170822','MHAH100003832017','1','Pending','25-07-2017','1')">25-07-2017</a></td><td>22-08-2017</td><td style=""> First Order</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20170925','MHAH100003832017','1','Pending','22-08-2017','1')">22-08-2017</a></td><td>25-09-2017</td><td style=""> First Order</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20171007','MHAH100003832017','1','Pending','25-09-2017','1')">25-09-2017</a></td><td>07-10-2017</td><td style=""> Filing of Say on Exh___Unready</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20171122','MHAH100003832017','1','Pending','07-10-2017','1')">07-10-2017</a></td><td>22-11-2017</td><td style=""> Filing of Say on Exh___Unready</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180109','MHAH100003832017','1','Pending','22-11-2017','1')">22-11-2017</a></td><td>09-01-2018</td><td style=""> Filing of Say on Exh___Unready</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180205','MHAH100003832017','1','Pending','09-01-2018','1')">09-01-2018</a></td><td>05-02-2018</td><td style=""> Filing of Say on Exh___Unready</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180312','MHAH100003832017','1','Pending','05-02-2018','1','')">05-02-2018</a></td><td>12-03-2018</td><td style=""> Filing of Say on Exh___Unready</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180423','MHAH100003832017','1','Pending','12-03-2018','1','')">12-03-2018</a></td><td>23-04-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180606','MHAH100003832017','1','Pending','23-04-2018','1','')">23-04-2018</a></td><td>06-06-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180627','MHAH100003832017','1','Pending','06-06-2018','1','')">06-06-2018</a></td><td>27-06-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180806','MHAH100003832017','1','Pending','27-06-2018','1','')">27-06-2018</a></td><td>06-08-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180820','MHAH100003832017','1','Pending','06-08-2018','1','')">06-08-2018</a></td><td>20-08-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20180918','MHAH100003832017','1','Pending','20-08-2018','1','')">20-08-2018</a></td><td>18-09-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20181001','MHAH100003832017','1','Pending','18-09-2018','1','')">18-09-2018</a></td><td>01-10-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20181022','MHAH100003832017','1','Pending','01-10-2018','1','')">01-10-2018</a></td><td>22-10-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20181211','MHAH100003832017','1','Pending','22-10-2018','1')">22-10-2018</a></td><td>11-12-2018</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190102','MHAH100003832017','1','Pending','11-12-2018','1','')">11-12-2018</a></td><td>02-01-2019</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190128','MHAH100003832017','1','Pending','02-01-2019','1','')">02-01-2019</a></td><td>28-01-2019</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190213','MHAH100003832017','1','Pending','28-01-2019','1','')">28-01-2019</a></td><td>13-02-2019</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190305','MHAH100003832017','1','Pending','13-02-2019','1','')">13-02-2019</a></td><td>05-03-2019</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190502','MHAH100003832017','1','Pending','05-03-2019','1','')">05-03-2019</a></td><td>02-05-2019</td><td style=""> Charge</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190618','MHAH100003832017','1','Pending','02-05-2019','1','')">02-05-2019</a></td><td>18-06-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190722','MHAH100003832017','1','Pending','18-06-2019','1','')">18-06-2019</a></td><td>22-07-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190813','MHAH100003832017','1','Pending','22-07-2019','1','')">22-07-2019</a></td><td>13-08-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20190917','MHAH100003832017','1','Pending','13-08-2019','1','')">13-08-2019</a></td><td>17-09-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20191018','MHAH100003832017','1','Pending','17-09-2019','1','')">17-09-2019</a></td><td>18-10-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20191203','MHAH100003832017','1','Pending','18-10-2019','1','')">18-10-2019</a></td><td>03-12-2019</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20200121','MHAH100003832017','1','Pending','03-12-2019','1','')">03-12-2019</a></td><td>21-01-2020</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20200313','MHAH100003832017','1','Pending','21-01-2020','1','')">21-01-2020</a></td><td>13-03-2020</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20200421','MHAH100003832017','1','Pending','13-03-2020','1','')">13-03-2020</a></td><td>21-04-2020</td><td style=""> Hearing</td></tr><tr><td style="" align="left">17/2017</td><td style="" align="left">District Judge-1 Addl. Sessions Judge</td><td style="" align="left"><a href="#" onclick="viewBusiness('9','26','20200617','MHAH100003832017','1','Pending','21-04-2020','1','')">21-04-2020</a></td><td>17-06-2020</td><td style=""> Hearing</td></tr></tbody></table><table id="orderheading"><tbody><tr><td><br><h2 class="h2class" style="font-weight:bold;">Orders </h2></td></tr></tbody></table><table class="order_table" style="border-collapse:collapse;" width="700px" cellspacing="0" cellpadding="1" border="1" align="center"><tbody><tr><td style="width:171px;"> <font size="2"><strong> Order Number</strong></font></td><td style="width:228px;"> <font size="2"><strong> Order Date </strong></font> </td><td> <font size="2"><strong> Order Details </strong></font></td></tr></tbody></table><table class="order_table" style="border-collapse:collapse; border-top:none;" width="700px" cellspacing="0" cellpadding="1" border="1" align="center"><tbody><tr><td style="width:171px;border-top:none;" align="left"><font size="2"> 1 </font></td><td style="width:228px;border-top:none;" align="left"><font size="2"> 28-01-2019</font></td><td style=" border-top:none;" colspan="3" align="left"><font size="2"> <a target="_blank" href="display_pdf.php?filename=/orders/2017/201500000172017_1.pdf&caseno=Sessions Case/17/2017&cCode=9&appFlag=&normal_v=1"></a></font><a target="_blank" href="display_pdf.php?filename=/orders/2017/201500000172017_1.pdf&caseno=Sessions Case/17/2017&cCode=9&appFlag=&normal_v=1"> <font size="2" color="green"> Order on Exhibit <span></span></font></a></td></tr></tbody></table>
<br>
<br>
</div>
</div>
<div id="back_bottom" style=""><center><a href="#" onclick="funBack();">Back</a></center></div>
<div id="firstpage" style="display: none;">
<div id="mainDiv">
<div class="rows">
<span id="spaTitle" class=" title">
<h3 class="h3class">Case Status:Search by Act Type</h3>
</span>
</div>
<br>
</div>
<div id="caseNoDet" style="display:block">
<div class="rows">
<span class="firstcolumn">
</span>
<span class="thirdcolumn">
</span>
<span class="secondcolumn">
<input type="radio" name="radOpt" id="radCourtComplex" value="court_complex" checked="checked" onclick="toggle();;" onkeypress="return event.keyCode != 13;"> <label for="radCourtComplex">Court Complex</label>
<input type="radio" name="radOpt" id="radCourtEst" value="court_est" onclick="toggle();;" onkeypress="return event.keyCode != 13;"> <label for="radCourtEst">Court Establishment</label>
</span>
</div>
<br>
<div>
<div class="rows" id="courtEstDiv" style="display:none;">
<span class="firstcolumn">
<span class="redStar"> * </span>Court Establishment</span>
<span class="thirdcolumn"><label for="court_code" style="font-size:0.0000001px; color:transparent;">Select Court Establishment Compulsory Field</label>
</span>
<span class="secondcolumn">
<select name="court_code" id="court_code" onchange="funCourtEstChange();" style="width: 250px;height:21px;">
<option value="0">Select Court Establishment</option><option value="1">District and Session Court , Ahmednagar</option><option value="2">Chief Judicial Magistarte ,Ahmednagar</option><option value="3">Civil Court Senior Division , Ahmednagar</option><option value="4">Civil Court Junior Division , Akole</option><option value="5">Civil Court Junior Division , Jamkhed</option><option value="6">Civil Court Junior Division , Karjat</option><option value="7">Civil Court Junior Division , Kopergaon</option><option value="8">Civil Court Senior Division , Kopergaon</option><option value="9">District and Session Court , Kopergaon</option><option value="10">Civil Court Junior Division , Newasa</option><option value="11">Civil Court Junior Division ,Parner</option><option value="12">Civil Court Junior Division , Pathardi</option><option value="13">Civil Court Junior Division , Rahata</option><option value="14">Civil Court Junior Division , Rahuri</option><option value="15">Civil Court Senior Division , Sangamner</option><option value="16">District and Session Court , Sangamner</option><option value="17">Civil Court Junior Division , Shevgaon</option><option value="18">Civil Court Junior Division , Shrirampur</option><option value="19">Civil Court Senior Division , Shrirampur</option><option value="20">District and Session Court , Shrirampur</option><option value="21">Civil Court Senior Division, Shrigonda</option><option value="22">Civil Court Junior Division, Shrigonda</option><option value="23">Civil Court Junior Division, Sangamner</option><option value="24">District and Sessions Court, Newasa.</option><option value="25">Civil Court Senior Division, Newasa</option><option value="26">District Court Shrigonda</option></select> </span>
</div>
<div class="rows" id="courtComplexDiv" style="display:block;">
<span class="firstcolumn">
<span class="redStar"> * </span>Court Complex</span>
<span class="thirdcolumn"><label for="court_complex_code" style="font-size:1px; color:transparent;">Court Complex Compulsory Field</label>
</span>
<span class="secondcolumn">
<select name="court_complex_code" id="court_complex_code" style="width: 250px; height: 21px;" onchange="funCourtEstChange();">
<option value="0">Select Court Complex</option><option value="1@4@N">Akole, Civil and Criminal Court</option><option value="2@5@N">Jamkhed, Civil and Criminal Court</option><option value="3@6@N">Karjat Civil and Criminal Court</option><option value="5@10@N">Newasa, Civil and Criminal Court</option><option value="6@11@N">Parner, Civil and Criminal Court</option><option value="7@12@N">Pathardi, Civil and Criminal Court</option><option value="8@13@N">Rahata, Civil and Criminal Court</option><option value="9@14@N">Rahuri, Civil and Criminal Court</option><option value="10@15,23@N">Sangamner, Civil and Criminal Court</option><option value="11@17@N">Shevgaon, Civil and Criminal Court</option><option value="12@21,22@N">Shrigonda, Civil Court</option><option value="101@1@N">Ahmednagar, Dist and Sessions Court</option><option value="105@2,3@N">Ahmednagar, Civil Court</option><option value="106@7,8,9@N">Kopergaon, Dist and Sessions Court</option><option value="108@18,19,20@N">Shrirampur, Dist and Sessions Court</option><option value="115@16@N">Sangamner, Dist and Sessions Court</option><option value="116@24,25@N">Newasa, Civil Court</option></select></span>
</div>
<br>
<div class="rows">
<span class="firstcolumn">Search Act</span>
<span class="thirdcolumn"><label for="search_act" style="font-size:1px; color:transparent;">Enter Act</label></span>
<span class="secondcolumn">
<input type="text" maxlength="100" name="search_act" id="search_act" onkeypress="return event.keyCode != 13;" onfocus="reg_lang('');" onblur="reg_lang('N')" style="width: 170px;" title="Enter Act">
<label for="button" style="font-size:0.0000001px; color:transparent;">Search</label>
<input id="button" type="button" name="button" value="Search" class="button" onclick="fillActType();">
</span>
<span> </span>
</div>
<br>
<div class="rows">
<span class="firstcolumn">
<span class="redStar"> * </span>Act Type</span>
<span class="thirdcolumn"><label for="actcode" style="font-size:0.0000001px; color:transparent;position:absolute;">Select Act Type</label> </span>
<span class="secondcolumn">
<select name="actcode" id="actcode" onchange="funOnActChange();" style="width: 250px; height: 21px;">
<option value="0">Select Act Type</option>
<option value="2171">Aadhaar (Targeted Delivery of Financial and Other Subsidies, Benefits and Services) Act, 2016</option><option value="215">Absorbed Areas (Laws) Act</option><option value="216">Academy of Scientific and Innovative Research Act</option><option value="217">Accessories (Condition) Rules</option><option value="218">Accounting Standards Notified under Section 145(2)</option><option value="219">Acquaries Act</option><option value="220">Acquired Territories (Merger) Act</option><option value="221">Acquisition of Certain Area at Ayodhya Act</option><option value="222">Additional Duties of Excise (Goods of Special Importance) Act</option><option value="223">Additional Duties of Excise (Textiles and Textile Articles) Act</option><option value="224">Additional Emoluments (Compulsory Deposit) Act</option><option value="225">Administrative Tribunals Act</option><option value="226">Administrative Tribunals (Amendment) Act</option><option value="227">Administrators-General Act</option><option value="228">Admirality (Jurisdiction and Settlement of Maritime Claims) Act</option><option value="229">Admiralty Jurisdiction (India) Act</option><option value="230">Admission As Advocates (Exemption From Training And Examination) Rules</option><option value="231">Admission As Advocates (Training And Examination) Rules</option><option value="232">Advocates Act</option><option value="233">African Development Bank Act</option><option value="234">African Development Fund Act</option><option value="235">Agar Agar Grading and Marking Rules</option><option value="236">Agricultural and Processed Food Products Export Development Authority Act</option><option value="237">Agricultural Produce Cess Act</option><option value="238">Agricultural Produce (Grading and Marking) Act</option><option value="239">Agriculturists' Loans Act</option><option value="240">Air Corporations (Transfer of Undertakings and Repeal) Act</option><option value="241">Aircraft Act</option><option value="242">Aircraft (Demolition) of Obstructions Caused by Buildings and Trees Rules</option><option value="243">Aircraft (Investigation of Accidents and Incidents) Rules</option><option value="244">Aircraft Rules</option><option value="245">Air Force Act</option><option value="246">Airports Authority of India Act</option><option value="247">Airports Authority of India (Manner of Investment of Funds) Rules</option><option value="248">Airports Economic Regulatory Authority Of India Act, 2008</option><option value="249">Airports Economic Regulatory Authority of India (Salaries Allowances and other Conditions of Service of the Chairperson and Members) Amendment Rules</option><option value="250">Airports Economic Regulatory Authority of India (Salaries Allowances and other Conditions of Service of the Chairperson and Members) Rules</option><option value="251">Airports Economic Regulatory Authority of India (Salary Allowances and other Conditions of Services of Secretary) Rules</option><option value="87">AIR (PREVENTION AND CONTROL OF POLLUTION) ACT</option><option value="252">Air (Prevention and Control of Pollution) Amendment Act</option><option value="253">Air (Prevention and Control of Pollution) Rules</option><option value="254">Air (Prevention and Control of Pollution) (Union Territories) Rules</option><option value="255">Ajmer Tenancy and Land Records Act</option><option value="256">Ajowain Seed (Whole and Powdered) Grading and Marking Rules</option><option value="257">Alcock Ashdown Company Limited (Acquisition of Undertakings) Act</option><option value="258">Aligarh Muslim University Act</option><option value="259">All India Council for Technical Education Act</option><option value="260">All-India Institute of Medical Sciences Act</option><option value="261">All-India Services Act</option><option value="262">All India Services (Compensatory Allowance) Rules</option><option value="263">All India Services (Conditions of Service-Residuary Matters) Rules</option><option value="264">All India Services (Conduct) Rules</option><option value="265">All India Services (Confidential Roll) Rules</option><option value="266">All India Services (Dearness Allowance) Rules</option><option value="267">All India Services (Death-cum-Retirement Benefits) Rules</option><option value="268">All India Services (Discipline and Appeal) Rules</option><option value="269">All India Services (Group Insurance) Rules</option><option value="270">All India Services (House Building Advanced) Rules</option><option value="271">All India Services (House Rent Allowance) Rules</option><option value="272">All India Services (Joint Cadre) Rules</option><option value="273">All India Services (Leave) Rules</option><option value="274">All India Services (Leave Travel Concession) Rules</option><option value="275">All India Services (Medical Attendance) Rules</option><option value="276">All India Services (Overseas Pay Passages &amp; Leave Salary) Rules</option><option value="277">All India Services (Payment from PF and family pension Funds) Rules</option><option value="278">All India Services (Performance Appraisal Report) Rules</option><option value="279">All India Services (Provident Fund) Rules</option><option value="280">All-India Services Regulations (Indemnity) Act</option><option value="281">All India Services (Travelling Allowance) Rules</option><option value="282">Aloe Fibre Grading and Marking Rules</option><option value="283">Aluminium Corporation of India Limited (Acquisition and Transfer of Aluminium Undertaking) Act</option><option value="284">Ambadi Seed Grading and Marking Rules</option><option value="286">Amending Act</option><option value="285">Amending Act</option><option value="287">Amending Act</option><option value="288">Amla Grading and Marking Rules</option><option value="289">Ammonium Nitrate Rules</option><option value="290">Amritsar Oil Works (Acquisition and Transfer of Undertakings) Act</option><option value="291">Anand Marriage Act</option><option value="292">Ancient Monuments and Archaeological Sites and Remain (Amendment and Validation) Act</option><option value="293">Ancient Monuments Preservation Act</option><option value="294">Ancient Mounments and Archaeological Sites and Remains Act</option><option value="295">Andaman and Nicobar Islands Anatomy Regulation</option><option value="296">Andhra Pradesh and Madras (Alteration of Boundaries) Act</option><option value="297">Andhra Pradesh and Mysore (Transfer of Territory) Act</option><option value="298">Andhra Pradesh Legislative Council Act</option><option value="299">Andhra Pradesh Reorganisation Act</option><option value="300">Andhra Scientific Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="301">Andhra State Act</option><option value="302">Animal Birth Control (Dogs) Rules - 2001</option><option value="303">Animal Birth Control (Dogs) Rules - 2009</option><option value="304">Animal Casing Grading and Marking Rules</option><option value="117">Animal Preservation Act ( Maharashtra )</option><option value="305">Anti-Apartheid (United Nations Convention) Act</option><option value="306">Anti-Corruption Laws (Amendment) Act</option><option value="308">Anti-Hijacking Act</option><option value="307">Anti Hijacking Act, 2016</option><option value="309">Antiquities and Art Treasures Act</option><option value="310">Appellate Tribunal for Electricity (Salaries Allowances and other Conditions of Service of Chairperson and Members) Rules</option><option value="311">Apprentices Act</option><option value="312">Apprentices' Act, 1850</option><option value="313">Apprenticeship Rules</option><option value="314">Appropriation Act</option><option value="315">Appropriation (No.3) Act</option><option value="316">Appropriation (No.4) Act</option><option value="317">Appropriation (No. 5) Act</option><option value="318">Appropriation (No.5) Act</option><option value="319">Appropriation (No.6) Act</option><option value="320">ARBITRATION ACT</option><option value="44">ARBITRATION AND CONCILIATION ACT</option><option value="321">Architects Act</option><option value="322">Arecnuts Grading and Marking Rules</option><option value="323">Armed Forces (Emergency Duties) Act</option><option value="324">Armed Forces (Jammu and Kashmir) Special Powers Act</option><option value="325">Armed Forces (Punjab and Chandigarh) Special Powers Act</option><option value="326">Armed Forces (Special Powers) Act</option><option value="327">Armed Forces Tribunal Act</option><option value="49">Arms Act</option><option value="328">Arms Rules</option><option value="329">Army Act</option><option value="330">Army and Air Force (Disposal of Private Property) Act</option><option value="331">Arya Marriage Validation Act</option><option value="332">Asian Development Bank Act</option><option value="333">Asian Refractories Limited (Acquisition of Undertakings) Act</option><option value="334">Asiatic Society Act</option><option value="335">Asiatic Society Rules</option><option value="336">Assam (Alteration of Boundaries) Act</option><option value="337">Assam Criminal Law Amendment (Supplementary) Act</option><option value="338">Assam Municipal (Manipur Amendment) Act</option><option value="339">Assam Reorganisation (Meghalaya) Act</option><option value="340">Assam Rifles Act</option><option value="341">Assam Rifles Act, 2006</option><option value="342">Assam Rifles Rules</option><option value="343">Assam Sillimanite Limited (Acquisition and Transfer of Refractory Plant) Act</option><option value="344">Assam University Act</option><option value="345">Atomic Energy Act</option><option value="346">Auroville Foundation Act</option><option value="347">Authoritative Texts (Central Laws) Act</option><option value="348">Authority for Advance Rulings (Customs, Central Excise and Service Tax) Procedure Regulations</option><option value="349">Authority for Advance Rulings (Procedure) Rules</option><option value="350">Babasaheb Bhimrao Ambedkar University Act</option><option value="351">Baggae Rules</option><option value="352">Banaras Hindu University Act</option><option value="353">Bangalore Marriages Validating Act</option><option value="354">Bankers' Books Evidence Act</option><option value="355">Banking Cash Transaction Tax Rules</option><option value="356">Banking Companies (Acquisition and Transfer of Undertakings) Act</option><option value="357">Banking Companies (Acquisition and Transfer of Undertakings) Act, 1970</option><option value="358">Banking Laws (Amendment) Act</option><option value="359">Banking Laws (Application to Co-operative Societies) Act</option><option value="360">BANKING REGULATION ACT</option><option value="361">Banking Regulation (Amendment) Act</option><option value="362">Bank Term Deposit Scheme</option><option value="363">Bar Councils (Validation of State Laws) Act</option><option value="364">Basmati Rice (Export) Grading and Marking Rules</option><option value="365">Batteries (Management and Handling) Rules</option><option value="366">BEEDI AND CIGAR WORKERS (CONDITIONS OF EMPLOYMENT) ACT</option><option value="367">Beedi and Cigar Workers (Conditions of Employment) Amendment Act</option><option value="368">Beedi Workers Welfare Cess Act</option><option value="369">Beedi Workers Welfare Cess Act Rules, 1977</option><option value="370">Beedi Worker's Welfare Cess Rules</option><option value="371">Beedi Workers Welfare Fund Act</option><option value="372">Benami Transactions (Prohibition) Act</option><option value="373">Bengal, Agra and Assam Civil Courts Act</option><option value="374">Bengal Alluvion and Diluvion Act</option><option value="375">Bengal, Bihar and Orissa and Assam Laws Act</option><option value="377">Bengal Bonded Warehouse Association Act</option><option value="376">Bengal Bonded Warehouse Association Act, 1854</option><option value="378">Bengal Chaukidari Act</option><option value="379">Bengal Chemical and Pharmaceutical Works Limited (Acquisition and Transfer of Undertakings) Act</option><option value="380">Bengal Criminal Law Amendment (Supplementary) Act</option><option value="381">Bengal Districts Act</option><option value="382">Bengal Embankment Act</option><option value="383">Bengal Finance (Sales Tax) (Delhi Validation of Appointments and Proceedings) Act</option><option value="384">Bengal Ghatwali Lands Act</option><option value="385">Bengal Immunity Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="386">Bengal Indigo Contracts Act</option><option value="387">Bengal Landholders' Attendance Act</option><option value="388">Bengal Land-revenue Sales Act</option><option value="389">Bengal Land Revenue Sales Act</option><option value="390">Bengal Military Police Act</option><option value="391">Bengal Rent Act</option><option value="392">Bengal Sessions Courts Act</option><option value="393">Bengal Suppression of Terrorist Outrages (Supplementary) Act</option><option value="394">Bengal Tenancy Act</option><option value="395">Berar Laws Act</option><option value="396">Besam (Gram Flour) Grading and Marking Rules</option><option value="397">Betwa River Board Act</option><option value="398">Betwa River Board (Amendment) Act</option><option value="399">Bharat Petroleum Corporation Limited (Determination of Conditions of Service of Employees) Act</option><option value="400">Bhopal Gas Leak Disaster (Processing of Claims) Act</option><option value="401">Bihar and Uttar Pradesh (Alteration of Boundaries) Act</option><option value="402">Bihar and West Bengal (Transfer of Territories) Act</option><option value="403">Bihar Land Reforms Laws (Regulating Mines and Minerals) Validation Act</option><option value="404">Bihar Reorganisation Act</option><option value="405">Bihar Value Added Tax Act</option><option value="406">Bikrama Singh's Estates Act</option><option value="407">BILLS OF EXCHANGE ACT</option><option value="408">Biological Diversity Act</option><option value="409">Biological Diversity Rules</option><option value="410">Bio-medical Waste (Management and Handling) Rules</option><option value="411">Bird and Company Limited (Acquisition and Transfer of Undertakings and Other Properties) Act</option><option value="412">Births, Deaths and Marriages Registration Act</option><option value="413">Black Money (Undisclosed Foregin Money and Assets) And imposition of tax Act</option><option value="414">Black Money (Undisclosed Foreign Income and Assets) and Imposition of Tax Rules</option><option value="415">Blended Edible Oil Grading and Marking Rules</option><option value="416">Boiler Appeal Rules</option><option value="417">Boiler Attendent Rules</option><option value="418">Boiler Operation Engineers Rules</option><option value="419">Bolani Ores Limited (Acquisition of Shares) and Miscellaneous Provisions Act</option><option value="2137">Bombay Aerial Ropeways Act</option><option value="22">Bombay Agricultural Debters Relief Act 1947</option><option value="110">Bombay Agricultural Debtors Relief Act,1947</option><option value="2140">Bombay Animal Contagious Diseases (Control) Act</option><option value="2139">Bombay Beggars Act</option><option value="2133">Bombay Borstal Schools (Extension and Amendment) Act</option><option value="32">Bombay Cinemas (Regulation) Act 1953</option><option value="420">Bombay Civil Courts Act</option><option value="2131">BOMBAY CIVIL COURTS ACT</option><option value="2129">Bombay Land Requisition Act</option><option value="111">Bombay Land Revenue Act</option><option value="2169">Bombay Lotteries (Control and Tax) and Prize Competitions (Tax) Rules, 1958</option><option value="118">Bombay Lotteries (Control and Tax) prize competitions (Tax) Act, 1958</option><option value="2136">Bombay Motor Vehicles Tax Act</option><option value="421">Bombay Municipal Debentures Act</option><option value="50">Bombay Police Act</option><option value="164">Bombay Provincial Municipal Corporation Act, 1949</option><option value="422">Bombay Public Security Measures (Delhi Amendment) Act</option><option value="125">Bombay Regulation Act,1827</option><option value="423">Bombay Rent-free Estates Act</option><option value="45">Bombay Rents, Hotel and Lodging House Rates Control Act</option><option value="424">Bombay Reorganisation Act</option><option value="425">Bombay Revenue Jurisdiction Act</option><option value="16">Bombay Sales Act 1959</option><option value="17">BOMBAY SALE TAX RULES</option><option value="62">Bombay Stamps Act</option><option value="30">Bombay Tenancy and Agricultural Lands Act</option><option value="21">Bombay Tenancy and Agricultural Land (Vidarbha Region and Kutch Area) Act</option><option value="120">Bombay Town Planning Act</option><option value="11">Bombay University Act</option><option value="426">Bonded Labour System (Abolition) Act</option><option value="427">Border Security Force Act</option><option value="428">Border Security Force Rules</option><option value="429">Boundaries</option><option value="430">Boundary-marks, Bombay</option><option value="431">Brahmaputra Board Act</option><option value="432">Braithwaite and Company (India) Limited (Acquisition and Transfer of Undertakings) Act</option><option value="433">Bread Wheat Flour Grading and Marking Rules</option><option value="434">Breeding of Experiments on Animals (Control and Supervision) Rules</option><option value="435">Brentford Electric (India) Limited (Acquisition and Transfer of Undertakings) Act</option><option value="436">Bristles Grading and Marking Rules</option><option value="437">Britannia Engineering Company Limited (Mokameh Unit) and the Arthur Butler and Company (Muzaffarpore</option><option value="438">British India Corporation Limited (Acquisition of Shares) Act</option><option value="439">British Statutes (Application to India) Repeal Act</option><option value="440">Broach and Kaira Incumbered Estates Act</option><option value="441">Bronze Coin (Legal Tender) Act</option><option value="161">Building and Other Construction Workers (Regulation of Employment and Conditions of Service) Act</option><option value="442">Building and Other Construction Workers' Welfare Cess Act</option><option value="443">Bura Grading and Marking Rules</option><option value="170">Bureau of Indian Standards Act,1986</option><option value="444">Bureau of Indian Standards Act (Amendment) 2016</option><option value="445">Bureau of Indian Standards (Recognition of Consumers' Associations) Rules</option><option value="446">Burmah Oil Company [Acquisition of Shares of Oil India Limited and of the Undertakings in India of A</option><option value="447">Burmah Shell (Acquisition of Undertakings in India) Act</option><option value="448">Burn Company and Indian Standard Wagon Company (Nationalisation) Act</option><option value="449">Business Profits Act</option><option value="450">CABLE TELEVISION NETWORKS (REGULATION) ACT</option><option value="451">Cable Television Networks Rules</option><option value="452">Calcutta High Court (Extension of Jurisdiction) Act</option><option value="453">Calcutta High Court (Jurisdictional Limits) Act</option><option value="454">Calcutta Land-revenue Act</option><option value="455">Calcutta Land-revenue Act,1856</option><option value="456">Calcutta Metro Railway (Operation and Maintenance) Temporary Provisions Act</option><option value="457">Calcutta Pilots Act</option><option value="458">Calcutta Port (Pilotage) Act</option><option value="459">Caltex [Acquisition of Shares of Caltex Oil Refining (India) Limited and of the Undertakings in Indi</option><option value="460">Canned Bottled Fruit and Fruit Products Grading and Marking Rules</option><option value="188">Cantonments Act</option><option value="461">Cantonments Act 2006</option><option value="462">Cantonments (Extension of Rent Control Laws) Act</option><option value="463">Cantonments (House Accommodation) Act</option><option value="464">Capital Gains Accounts Scheme</option><option value="465">Capital of Punjab Development and Regulation (Chandigarh Amendment) Act</option><option value="466">Caraway and Black Caraway Grading and Marking Rules</option><option value="467">Cardamom Act</option><option value="468">Carriage by Air Act</option><option value="469">Carriage by Road Act</option><option value="470">Carriage of Passengers Suffering from Infectious or Contagious Diseases Rules.</option><option value="471">Carriers Act</option><option value="472">Cashew Kernels Grading and Marking Rules</option><option value="473">Caste Disabilities Removal Act</option><option value="474">Castor Seeds Grading and Marking Rules</option><option value="475">Catechu Grading and Marking Rules</option><option value="191">CATTLE-TRESPASS Act</option><option value="476">CEGAT (Counervailing Duty And Anti -Dumping Duty (Procedure) Rules</option><option value="477">Cement Cess Rules</option><option value="478">Census Act</option><option value="479">Census Rules</option><option value="480">Central Advisory Committee On Equal Remuneration Rules</option><option value="481">Central Advisory Council (Procedural) Rules</option><option value="482">Central Agricultural University Act</option><option value="483">Central Board for the Prevention and Control of Water Pollution (Procedure for Transaction of Business) Rules</option><option value="484">Central Boards of Revenue Act</option><option value="485">Central Boilers Board (Nomination of Members) Rules, 2008</option><option value="486">Central Civil Services (Classification Control and Appeal) Rules</option><option value="487">Central Civil Services (Commutation of Pension) Rules</option><option value="488">Central Civil Services (Conduct) Rules</option><option value="489">Central Civil Services (Extraordinary Pensions) Rules</option><option value="490">Central Civil Services (Leave) Rules</option><option value="491">Central Civil Services (Leave Travel Concession) Rules</option><option value="492">Central Civil Services (Pension) Rules</option><option value="493">Central Civil Services (Redeployment of Surplus Staff) Rules</option><option value="494">Central Civil Services (Redeployment of Surplus Staff) Rules</option><option value="495">Central Civil Services (Temporary Service) Rules</option><option value="496">Central Economic Intelligence Bureau (Special Secretary-cum-DG) Recruitment Rules</option><option value="497">Central Educational Institutions (Reservation in Admission) Act</option><option value="498">Central Electricity Authority (Terms and Conditions of Service of Chairperson and other Members) Rules</option><option value="499">Central Electricity Regulatory Commission (Deviation Settlement Mechanism and Related Matters) Regulations</option><option value="130">Central Excise Act</option><option value="500">Central Excise (Advance Rulings) Rules</option><option value="501">Central Excise (Appeals) Rules</option><option value="502">Central Excise (Compounding of Offences) Rules</option><option value="503">Central Excise (Determination of Retail Sale Price of Excisable Goods) Rules</option><option value="504">Central Excise Laws (amendment and validation) Ordinance</option><option value="505">Central Excise (Removal of Difficulties) Rules</option><option value="506">Central Excise (Removal of Goods at Concessional Rate of Duty for Manufacture of Excisable Goods) Rules</option><option value="507">Central Excise Rules</option><option value="508">Central Excises and Salt (Amendment) Act</option><option value="509">Central Excises (Conversion to Metric Units) Act</option><option value="510">Central Excise (Settlement of Cases) Rules</option><option value="511">Central Excise Tariff Act</option><option value="512">Central Excise Valuation (Determination of Price of Excisable Goods) Rules</option><option value="513">Central Goods and Services Tax (Amendment) Act</option><option value="514">Central Goods and Services Tax (Extension to Jammu and Kashmir) Act</option><option value="515">Central Goods and Service Tax Act</option><option value="516">Central Industrial Security Force Act</option><option value="517">Central Industrial Security Force (Amendment and Validation) Act</option><option value="518">Central Industrial Security Rules</option><option value="519">Centralised Processing of Returns Scheme</option><option value="520">Central Labour Laws (Extension to Jammu and Kashmir) Act</option><option value="521">Central Laws (Extension to Arunachal Pradesh) Act</option><option value="522">Central Laws (Extension to Jammu and Kashmir) Act</option><option value="523">Central Motor Vehicle Rules</option><option value="524">Central Provinces Court of Wards Act</option><option value="525">Central Provinces Financial Commissioner’s Act</option><option value="526">Central Provinces Land-revenue Act</option><option value="527">Central Provinces Laws Act</option><option value="528">Central Provinces Tenancy Act</option><option value="529">Central Reserve Police Force Act</option><option value="530">Central Reserve Police Force Rules</option><option value="531">Central Road Fund Act</option><option value="532">Central Road Fund (State Roads) Rules</option><option value="533">CENTRAL SALES TAX ACT</option><option value="534">Central Sales Tax (Amendment) Act</option><option value="535">Central Secretariat Clerical Service Rules</option><option value="536">Central Secretariat Service Rules</option><option value="537">Central Secretariat Services Rules</option><option value="538">Central Silk Board Act</option><option value="539">Central Trade Union Regulations, 1938</option><option value="540">Central University Act</option><option value="541">Central Vigilance Commission Act</option><option value="542">Central Vigilance Commission (Staff) Rules</option><option value="543">Cenvat Credit Rules</option><option value="544">Cereals Grading and Marking Rules</option><option value="545">Cereals Grading Rules</option><option value="546">Cess and Other Taxes on Minerals (Validation) Act</option><option value="547">Cessation of Responsibility (After the Termination of Transit) Rules</option><option value="548">Cess Laws (Repealing and Amending) Act</option><option value="549">Chandernagore (Merger) Act</option><option value="550">Chandigarh (Delegation of Powers) Act</option><option value="551">Chandigarh Disturbed Areas Act</option><option value="552">Chaparmukh Silghat Railway Line and the Katakhal Lalabazar Railway Line (Nationalisation) Act</option><option value="553">CHARITABLE AND RELIGIOUS TRUSTS ACT</option><option value="554">CHARITABLE ENDOWMENTS ACT</option><option value="555">Chartered Accountant (Election to Council) Rules</option><option value="556">Chartered Accountant (Election Tribunal) Rule</option><option value="557">Chartered Accountant (Nomination of Members to Council) Rules</option><option value="558">Chartered Accountants Act</option><option value="559">Chemical Accidents (Emergency, Planning, preparedness and Response) Rules</option><option value="560">CHEMICAL WEAPONS CONVENTION ACT</option><option value="561">Chewing Tobacco and Unmanufactured Tobacco Packing Machines (Capacity Determination and Collection of Duty) Rules</option><option value="562">Chief Inspectors, Deputy Chief Inspectors and Inspectors (Qualification and experience) Rules, 2012</option><option value="163">CHILD LABOUR (PROHIBITION AND REGULATION) ACT</option><option value="563">Child Labour (Prohibition and Regulation) Rules</option><option value="116">CHILD MARRIAGE RESTRAINT ACT</option><option value="564">CHILDREN ACT</option><option value="565">Children (Pledging of Labour) Act</option><option value="101">Children Rules (Maharashtra)</option><option value="566">Chota Nagpur Encumbered Estates Act</option><option value="177">Christian Marriage Act, 1872</option><option value="567">Church of Scotland Kirk Sessions Act</option><option value="195">Cigarettes and other Tobacco Products (Prohibition of Advertisement and Regulation of Trade and Comm</option><option value="568">Cigarettes (Regulation of Production, Supply and Distribution) Act</option><option value="31">Cinemas (Regulation) Act (Maharashtra)</option><option value="569">Cinematograph Act</option><option value="570">Cine-Workers and Cinema atre Workers (Regulation of Employment) Act</option><option value="571">Cine Workers and Cinema atre Workers (Regulation of Employment) Rules, 1984</option><option value="572">Cine-Workers Welfare Cess Act</option><option value="573">Cine-Workers Welfare Fund Act</option><option value="574">CITIZENSHIP ACT</option><option value="575">Citizenship (Amendment) Bill, 2015</option><option value="576">Citizenship (Registration of Citizens and Issue of National Identity Cards) Rules</option><option value="577">Citizenship Rule</option><option value="578">Citizenship Rules</option><option value="579">Citizens (Registration at Indian Consulates) Rules</option><option value="580">City of Bombay Municipal (Supplementary) Act</option><option value="581">Civil Defence Act</option><option value="582">Civil Defence Rules</option><option value="583">Civil Liability for nuclear damage Act</option><option value="584">Clean Energy Cess Rules</option><option value="585">Clinical Establishments (Registration and Regulation)Act</option><option value="586">CloveGrading and Marking Rules</option><option value="587">Coal Bearing Areas (Acquisition and Development) Act</option><option value="588">Coal Bearing Areas (Acquisition and Development) Amendment and Validation Act</option><option value="589">Coal India (Regulation of Transfer and Validation) Act</option><option value="590">Coal Mines (Conservation and Development) Act</option><option value="591">Coal Mines (Conservation and Development) Rules</option><option value="592">Coal Mines Labour Welfare Fund (Repeal) Act</option><option value="593">Coal Mines (Nationalisation) Act</option><option value="594">Coal Mines Provident Fund and Miscellaneous Provisions Act</option><option value="595">Coal Mines (Special Provisions) Act, 2015</option><option value="596">Coal Mines (Taking Over of Management) Act</option><option value="597">Coastal Aquaculture Authority Act</option><option value="598">Coast Guard Act</option><option value="599">Coasting Vessels Act</option><option value="600">Cocoa Beans Grading and Marking Rules</option><option value="601">Cocoa Powder Grading and Marking Rules</option><option value="602">Coconut Development Board Act</option><option value="603">Coconut Grading and Marking Rules</option><option value="2">CODE OF CIVIL PROCEDURE</option><option value="40">CODE OF CRIMINAL PROCEDURE</option><option value="604">Coffee Act</option><option value="605">Coinage Act</option><option value="606">Coinage Act, 2011</option><option value="607">Coir Industry Act</option><option value="608">Coking Coal Mines (Emergency Provisions) Act</option><option value="609">Coking Coal Mines (Nationalisation) Act</option><option value="610">Collection of Statistics Act 1953</option><option value="611">Colliery Control Rules</option><option value="612">Colonial Courts of Admiralty (India) Act</option><option value="613">Commanders-in-Chief (Change in Designation) Act</option><option value="213">Commercial Courts, Commercial Division and Commercial Appellate Division of High Courts Act, 201</option><option value="614">Commercial Courts, Commercial Division and Commercial Appellate Division of High Courts (Amendment) Act</option><option value="615">Commercial Documents Evidence Act</option><option value="616">Commission of Sati (Prevention) Act</option><option value="617">Commission of Sati (Prevention) Rules</option><option value="618">COMMISSIONS FOR PROTECTION OF CHILD RIGHTS ACT</option><option value="619">Commissions of Inquiry Act</option><option value="620">Commissions of Inquiry (Central) Rules</option><option value="621">Companies (Acceptance of Deposit) Rules</option><option value="622">Companies (Acceptance of Deposits Amendment) Rules</option><option value="623">Companies (Acceptance of Deposits) Rules</option><option value="625">Companies (Accounting Standards) Rules</option><option value="624">Companies (Accounting Standards) Rules, 1961</option><option value="626">Companies (Accounts) Rules</option><option value="627">Companies Act 2013</option><option value="628">Companies (Adjudication of Penalties) Rules</option><option value="629">Companies (Amendment) Act</option><option value="630">Companies (Application for Extension of time or Exemption under sub-section (8) of section 58A) Rules</option><option value="632">Companies (Appointment and Qualification of Directors) Rules</option><option value="633">Companies (Appointment and Qualifications of Secretary) Rules</option><option value="634">Companies (Appointment and remuneration of Managerial Personnel) Rules</option><option value="635">Companies (Appointment of Sole Agents) Rules</option><option value="636">Companies (Appointment of the Small Shareholders Director) Rules</option><option value="631">Companies (Appointments and Qualification of Directors) Rules</option><option value="637">Companies (Audit and Auditors) Rules</option><option value="638">Companies (Auditors Report) Order</option><option value="639">Companies (Authorized to register) Rules</option><option value="640">Companies (Branch Audit Exemption) Rules</option><option value="641">Companies (Compliance Certificate) Rules</option><option value="642">Companies (Compromises, Settlements and Amalgmation) Rules</option><option value="643">Companies (Corporate Social Responsibility Policy) Rules</option><option value="644">Companies (Cost Record and Audit) Rules</option><option value="645">Companies (Court) Rules</option><option value="646">Companies (Declaration and Payment of Dividend) Rules</option><option value="647">Companies (Declaration of Beneficial Interest in Shares) Rules</option><option value="648">Companies (Declaration of Dividend out of Reserves) Rules</option><option value="649">Companies (Disclosure of Particulars in the Report of Board of Directors) Rules</option><option value="650">Companies (Disqualification of Directors under Section 274(1)(g) of the Companies Act 1956) Rules</option><option value="651">Companies (Donations to National Funds) Act</option><option value="652">Companies (Fees on Applications) Rules</option><option value="653">Companies (Filing of Documents and Forms in XBRL) Rules</option><option value="654">Companies (Incorporation) Rules</option><option value="655">Companies (Inspection, Investigation and Inquiry) Rules</option><option value="656">Companies (Issue of Global Depositories Receipts) Rules, 2014</option><option value="657">Companies ((Issue of Share Capital with Differential Voting Rights) Rules</option><option value="658">Companies (Issue of Share Certificate) Rules</option><option value="659">Companies Liquidation Accounts Rules</option><option value="660">Companies (Management and Administration) Rules</option><option value="661">Companies (Mediation and Conciliation) Rules</option><option value="662">Companies (Meeting of Board and its power) Rules</option><option value="663">Companies (Misclleneous) Rules</option><option value="664">Companies (Official Liquidator's Accounts) Rules</option><option value="665">Companies (Particulars of Employees) Rules</option><option value="666">Companies (Passing of the Resolution by Postal Ballot) Rules</option><option value="667">Companies (Preservation and Disposal of Records) Rules</option><option value="668">Companies (Preservation and Disposal of Records) Rules</option><option value="669">Companies (Profits) Surtax Act</option><option value="670">Companies (Prospectus and allotment of Securities) Rules</option><option value="671">Companies (Prospectus and Allotment of Securities) Rules, 2014</option><option value="672">Companies (Public Trustee) Rules</option><option value="673">Companies (Registered Valuers and Valuation) Rules</option><option value="674">Companies (Registration Offices and Fee) Rules</option><option value="675">Companies (Registration of Foreign Companies) Rules</option><option value="676">Companies (Removal of names from the Register of Companies) Rules</option><option value="677">Companies (Restriction on number of Layers) Rules</option><option value="678">Companies (Share capital and Debentures) Rules</option><option value="679">Companies (Share Capital and debentures) Rules, 2014</option><option value="681">Companies (Transfer of Pending Proceedings) Rules</option><option value="682">Companies (Transfer of Profits to Reserves) Rules</option><option value="680">Companies (Transfers of Pending Proceedings) Rules</option><option value="683">Companies Unpaid Dividend (Transfer to General Revenue Account of the Central Government) Rules</option><option value="684">Company Law Board (Qualifications Experience and Other Conditions of Service of Members) (Amendment) Rules</option><option value="685">Company Law Board (Qualifications Experience and Other Conditions of Service of Members) ( Amendment) Rules Experience and Other Conditions of Service of Members) ( Amendment) Rules</option><option value="686">Company Law Board (Qualifications Experience and Other Conditions Of Service of Members) Rules</option><option value="687">Company Secretaries Act</option><option value="688">Competition Act</option><option value="689">Competition Appellate Tribunal (Form and fee for filing an appeal and fee for filing compensation applications) Rule</option><option value="690">Competition Appellate Tribunal (Recruitment, salaries and other terms and conditions of service of officers and other employees) Rules,</option><option value="691">Competition Appellate Tribunal (Salaries and Allowances and other terms and conditions of service of the Chairperson and other Members) Rules</option><option value="692">Competition appellate tribunal (Term of the selection committee and the manner of selection of panel of names ) Rules 2008</option><option value="693">Competition Commission of India (Director-General) Recruitment Rules</option><option value="694">Competition Commission of India (Form of Annual Statement of Accounts) Rules</option><option value="695">Competition commission of India (Form &amp; time of preparation of Annual Report) Rules 2008</option><option value="696">Competition Commission of India (Number of Additional, Joint, Deputy or Assistant Director-General other officers and employees, their manner of appointment, qualification, salary, allowances and other terms and conditions of service) Rules</option><option value="697">Competition Commission of India (Oath of Office and of Secrecy for Chairperson and other Members) Rules</option><option value="698">Competition commission of India (Return on Measures for the promotion of competition advocacy awareness and training on competition issues ) Rules 2008</option><option value="699">Competition Commission of India (Salary Allowances and other Terms and Conditions of Service of Chairperson and other Members) Rules</option><option value="700">Competition Commission of India (salary, allowances, other terms and conditions of service of the Secretary and officers and other employees of the Commission and the number of such officers and other employees) Rules, 2009.</option><option value="701">Competition commission of India (Terms of the selection committee and the manner of selection of panel of names ) Rules 2008</option><option value="702">Compounded Asafoetida Grading and Marking Rules</option><option value="703">Comptroller and Auditor General's (Duties, Powers and Conditions of Service) Act</option><option value="704">Compulsory Deposit Scheme Act</option><option value="705">CONSERVATION OF FOREIGN EXCHANGE AND PREVENTION OF SMUGGLING ACTIVITIES ACT</option><option value="706">Constitution of India</option><option value="707">CONSUMER PROTECTION ACT</option><option value="708">Consumer Protection (Amendment) Act,2002</option><option value="709">Consumer Protection (Procedure for Regulation of Allowing Appearance of Agents or representative or Non-Advocates or Voluntary Organisations before the Consumer Forum) Regulations</option><option value="710">Consumer Protection Regulations</option><option value="711">Consumer Protection Rules</option><option value="712">Consumer Welfare Fund Rules</option><option value="713">Consumer Welfare Fund Rules</option><option value="115">Contempt Of Court Act</option><option value="714">Contingency Fund of India Act</option><option value="715">Continuance of Legal Proceedings Act</option><option value="716">Contract Labour (Regulation &amp; Abolition) Central Rules</option><option value="178">Contract Labour (Regulation and Abolition) Act</option><option value="72">Contract Labour (Regulation and Abolition) Act,1970</option><option value="717">Control of National Highways (Land and Traffic) Act</option><option value="718">Converts Marriage Dissolution Act</option><option value="719">Cooch-Behar (Assimilation of Laws) Act</option><option value="720">CO-OPERATIVE SOCIETIES ACT</option><option value="25">Co Operative Societies Act (Maharashtra)</option><option value="38">COPYRIGHT ACT</option><option value="721">Copyright Rules</option><option value="722">Coroners Act</option><option value="723">Cost and Works Accountants Act</option><option value="724">Cost Audit (Report) Rules</option><option value="725">Cotton Copra and Vegetable Oils Cess (Abolition) Act</option><option value="726">Cotton Grading and Marking Rules</option><option value="727">Cotton Seeds Grading and Marking Rules</option><option value="728">COURT-FEES ACT</option><option value="729">Court-fees (Delhi Amendment) Act</option><option value="730">CPF Rules</option><option value="731">Creamy Butter Grading and Marking Rules</option><option value="732">Credit Information Companies (Regulation) Act</option><option value="733">Criminal and Election Laws Amendment Act</option><option value="737">Criminal Law Amendment Act</option><option value="734">Criminal Law (Amendment) Act, 1938</option><option value="736">Criminal Law (Amendment) Act, 1961</option><option value="735">Criminal Law (Amendment) Act, 2018</option><option value="738">CSS (Senior PPS Grade) Rules</option><option value="739">CSSS (PPS Grade) Rules</option><option value="740">CSSS Rules</option><option value="741">Curry Powder Grading and Marking Rules</option><option value="744">Custom and Central Excise Duties and Service Tax Drawback Rules</option><option value="139">Customs Act</option><option value="742">Customs (Advance Rulings) Rules</option><option value="743">Customs (Amendment) Act</option><option value="745">Customs and Central Excise Duties and Service Tax Drawback Rules</option><option value="746">Customs and Central Excise Laws (Repeal) Act</option><option value="747">Customs (Appeals) Rules</option><option value="748">Customs (Attachments of Property of Defaulters for Recovery of Government Dues) Rules</option><option value="749">Customs (Compounding of Offences) Rules</option><option value="750">Customs Duties and Cesses (Conversion to Metric Units) Act</option><option value="751">Customs, Excise &amp; Service Tax Appellate Tribunal (Procedure) Rules</option><option value="752">Customs( Import of Goods at Concessional Rate of Duty for Manufacture of Excisable Goods) Rules</option><option value="753">Customs (Publication of Names) Rules</option><option value="754">Customs (Settlement of Cases) Rules</option><option value="755">Customs Tariff Act</option><option value="756">Customs Tariff (Determination of Origin of Goods under the Agreement on SAARC Preferential Trading Arrangement) Rules</option><option value="757">Customs Tariff (Determination of Origin of Goods under the Bangkok Agreement) Rules</option><option value="758">Customs Tariff (Determination of Origin of Goods under the Comprehensive Economic Partnership Agreement between the Republic of India and Japan) Amendment Rules</option><option value="759">Customs Tariff (Determination of Origin of Goods under the Free Trade Agreement Between the Democratic Socialistic Republic of Sri Lanka and the Republic of India) Rules</option><option value="760">Customs Tariff [Determination of Origin of Goods under the Preferential Trade Agreement between the Governments of Member States of (ASEAN) and the Republic of India] Rules</option><option value="761">Customs Tariff (Determination of Origin of Goods under the Preferential Trade Agreement between the Governments of the Republic of India and the Republic of Korea) Rules</option><option value="762">Customs Tariff (Determination of Origin of Goods under the Preferential Trade Agreement between the Transitional Islamic State of Afghanistan and Republic of India) Rules</option><option value="763">Customs Tariff (Determination of Origin of Other Preferential Areas) Rules</option><option value="764">Customs Tariff (Determination of Origin of Products under the Duty Free Tariff Preference Scheme for Least Developed Countries) Rules</option><option value="765">Customs Tariff (Determination of Origin of the U.A.R. and Yugoslavia) Rules</option><option value="766">Customs Tariff (Identification and Assessment and Collection of Countervailing Duty on Subsidized Articles and for Determination of Injury) Rules</option><option value="767">Customs Tariff (Identification and Assessment of Safeguard Duty) Rules</option><option value="768">Customs Tariff (Identification Assessment and Collection of Anti-Dumping Duty on Dumped Articles and for Determination of Injury) Rules</option><option value="769">Customs Tariff (Transitional Product Specific Safeguard Duty) Rules</option><option value="770">Custom Valuation (Determination of price of exported Goods) Rules</option><option value="771">Custom Valuation (Determination of price of imported Goods) Rules</option><option value="772">Cutchi Memons Act</option><option value="773">Dadra and Nagar Haveli Act</option><option value="774">Dadra and Nagar Haveli Value Added Tax (Amendment) Regulation</option><option value="775">Dakshina Bharat Hindi Prachar Sabha Act</option><option value="776">Dalmia Dadri Cement Limited (Acquisition and Transfer of Undertakings) Act</option><option value="777">Dalmia Dadri Cement Limited (Acquisition and Transfer of Undertakings) Amendment Act, 2006</option><option value="778">Damodar Valley Corporation Act</option><option value="779">DANGEROUS DRUGS ACT</option><option value="780">Dangerous Machines (Regulation) Act</option><option value="781">DANICS and DANIPS Rules</option><option value="782">Declaration of Wild Life Stock Rules</option><option value="783">Decrees and Orders Validating Act</option><option value="784">Defence of India Act</option><option value="785">Dehra Dun</option><option value="786">Dekkhan Agriculturists Relief Act</option><option value="787">Delhi Agricultural Produce Marketing (Regulation) Act</option><option value="788">Delhi and Ajmer-Merwara Land Development Act</option><option value="789">Delhi and Ajmer Rent Control Act</option><option value="790">Delhi and Ajmer Rent Control (Nasirabad Cantonment Repeal) Act</option><option value="791">Delhi Apartment Ownership Act</option><option value="792">Delhi Co-operative Societies Act</option><option value="793">Delhi Delegation of Powers Act</option><option value="794">Delhi Development Act</option><option value="795">Delhi Development Authority (Validation of Disciplinary Powers) Act</option><option value="796">Delhi Fire Prevention and Fire Safety Act</option><option value="797">Delhi High Court Act</option><option value="798">Delhi High Court (Amendment) Act</option><option value="799">Delhi Hotels (Control of Accommodation) Act</option><option value="800">Delhi Land Holdings (Ceiling) Act</option><option value="801">Delhi Lands (Restriction on Transfer) Act</option><option value="803">Delhi Laws Act</option><option value="802">Delhi Laws Act, 1915</option><option value="804">Delhi Laws (Special Provisions) Act</option><option value="805">Delhi Metro Railway (Operation and Maintenance) Act</option><option value="806">Delhi Motor Vehicles Taxation Act</option><option value="807">Delhi Municipal Corporation Act</option><option value="808">Delhi Police Act</option><option value="809">Delhi Primary Education Act</option><option value="810">Delhi Rent Act</option><option value="811">Delhi Rent Control Act</option><option value="812">Delhi Restriction of Uses of Land Act</option><option value="813">Delhi Road Transport Laws (Amendment) Act</option><option value="814">Delhi Sales Tax Act</option><option value="815">Delhi Sales Tax (Amendment and Validation) Act</option><option value="816">Delhi School Education Act</option><option value="817">Delhi Sikh Gurdwaras Act</option><option value="818">Delhi Special Police Establishment Act</option><option value="819">Delhi University Act</option><option value="820">Delhi (Urban Areas) Tenants' Relief Act</option><option value="821">Delhi Urban Art Commission Act</option><option value="822">Delimitation Act</option><option value="823">Delivery of Books and Newspapers (Public Libraries) Act</option><option value="824">Denaturing of Spirit Rules</option><option value="825">Dentists Act</option><option value="826">Departmental Inquiries (Enforcement of Attendance of Witnesses and Production of Documents) Act</option><option value="827">Departmentalisation of Union Accounts (Transfer of Personnel) Act</option><option value="828">Department of Ocean Development (Scientist ‘B’) Recruitment Rules</option><option value="829">Deposit Insurance and Credit Guarantee Corporation Act</option><option value="830">Deposit Insurance Corporation (Amendment and Miscellaneous Provisions) Act</option><option value="831">Depositories Act</option><option value="832">Depositories (Appeal to Central Government) Rules, 1998</option><option value="833">Depositories (Procedure for Holding Inquiry and Imposing Penalties by Adjudicating Officer) Rules, 2005</option><option value="834">Deposit Scheme for Retiring Employees of Public Sector Companies</option><option value="835">Deposit Scheme for Retiring Government Employees</option><option value="836">Desiccated coconut Grading and Marking Rules</option><option value="837">DESIGNS ACT</option><option value="838">Designs Rules 2001</option><option value="839">Destruction of Records Act</option><option value="840">Destructive Insects and Pests Act</option><option value="841">Destructive Insects and Pests (Amendment and Validation) Act</option><option value="842">Development Council (Procedural) Rules</option><option value="844">Diplomatic and Consular Officers (Oaths and Fees) Act</option><option value="843">Diplomatic and Consular Officers (Oaths and Fees) Act</option><option value="845">Diplomatic Relations (Vienna Convention) Act</option><option value="846">Direct Tax Dispute Resolution Scheme Rules</option><option value="847">Direct Tax Laws (Amendment) Act</option><option value="848">Direct-Tax Laws (Miscellaneous) Repeal Act</option><option value="212">DISASTER MANAGEMENT ACT</option><option value="849">Disaster Management (Annual Report of National Authority) Rules</option><option value="850">Disaster Management National Executive Committee (Procedure and Allowances etc) Rules</option><option value="851">Disaster Management (National Institute of Disaster Management) Rules</option><option value="852">Displaced Persons (Debts Adjustment) Act</option><option value="853">Disposal of Consignment Rules</option><option value="854">Disposal of Records (in the Offices of the Registrar of Companies) Rules</option><option value="855">Disputed Elections (Prime Minister and Speaker) Act</option><option value="106">Dissolution of Muslim Marriages Act</option><option value="856">Disturbed Areas (Special Courts) Act</option><option value="857">Dock Workers (Regulation of Employment) Act</option><option value="858">Dock Workers (Regulation of Employment) (Inapplicability to Major Ports) Act</option><option value="859">Dock Workers (Safety, Health and Welfare) Act</option><option value="860">Dourine Act</option><option value="86">DOWRY PROHIBITION ACT</option><option value="861">Dowry Prohibition (Maintenance Of Lists Of Presents To Bride And Bridegroom) Rules</option><option value="862">Dowry Prohibition Rules</option><option value="863">Dramatic Performances Act</option><option value="864">Dried Edible Mushroom Grading and Marking Rules</option><option value="865">Dr. Rajendra Central Agricultural University Act, 2016</option><option value="7">DRUGS AND COSMETICS ACT</option><option value="866">Drugs and Cosmetics Rules</option><option value="166">Drugs and Magic Remedies (Objectionable Advertisements) Act</option><option value="162">Drugs and Magic Remedies (Objectionable Advertisements) Act</option><option value="867">Drugs (Control) Act</option><option value="868">Durgah Khawaja Saheb Act</option><option value="869">Easements (Extending Act 5 of 1882)</option><option value="870">East-Punjab Urban Rent Restriction (Extension to Chandigarh) Act</option><option value="871">Economic Offences (Inapplicability of Limitation) Act</option><option value="872">Election Commission (Conditions of Service of Election Commissioners and Transaction of Business) Ac</option><option value="873">Election Laws (Extension to Sikkim) Act</option><option value="874">Electricity Regulatory Commission Act</option><option value="875">ELECTRICITY (SUPPLY) ACT</option><option value="877">Electronic Filing of Return of Tax Deducted at Source Scheme</option><option value="876">Electronic Filing of Returns of Tax Collected at Source Scheme</option><option value="879">Electronic Furnishing of Return of Income Scheme</option><option value="878">Electronic Furnishing of Returns of Income Scheme</option><option value="880">Electronic Hardware Technology Park (Ehtp) Scheme</option><option value="881">Elephants' Preservation Act</option><option value="882">Emblems and Names (Prevention of Improper Use) Act</option><option value="883">Emigration Act</option><option value="67">Employees' Provident Funds and Miscellaneous Provisions Act</option><option value="884">Employees' Provident Funds and Miscellaneous Provisions (Amendment) Act</option><option value="128">Employees' State Insurance Act</option><option value="885">Employees' State Insurance (Amendment) Act</option><option value="886">Employees Stock Option Plan or Scheme</option><option value="887">Employers' Liability Act</option><option value="138">Employment Exchanges (Compulsory Notification of Vacancies) Act</option><option value="888">Employment Exchanges(Compulsory Notification of Vacancies) Rules</option><option value="889">Employment of Manual Scavengers and Construction of Dry Latrines (Prohibition) Act</option><option value="890">Enemy Property Act</option><option value="891">Energy Conservation Act</option><option value="892">Energy Conservation (Inspection) Rules</option><option value="893">English and Foreign Languages University Act</option><option value="189">ENVIRONMENT (PROTECTION) ACT</option><option value="894">Environment (Protection) Rules</option><option value="895">Epidemic Diseases Act</option><option value="85">Equal Remuneration Act</option><option value="896">Equity Linked Savings Scheme</option><option value="897">Essential Commodities (Special Provisions) Act</option><option value="5">Essential Commodities (Special Provisions) Act</option><option value="898">Essential Oils Grading and Marking Rules</option><option value="899">ESSENTIAL SERVICES MAINTENANCE ACT</option><option value="900">Essential Services Maintenance (Assam) Act</option><option value="901">Esso (Acquisition of Undertakings in India) Act</option><option value="902">ESTATE DUTY ACT</option><option value="903">European Economic Community International Institutional Partners Scheme</option><option value="904">Evacuee Interest (Separation) Act</option><option value="905">Exchange of Prisoners Act</option><option value="906">Excise (Malt Liquors) Act</option><option value="907">Excise (Spirits) Act</option><option value="908">Expenditure-tax Act</option><option value="909">Expenditure-Tax Rules</option><option value="79">EXPLOSIVES ACT</option><option value="910">Explosives Rules</option><option value="911">EXPLOSIVE SUBSTANCES ACT</option><option value="912">Export-Import Bank of India Act</option><option value="913">Export of Services Rules</option><option value="914">Export (Quality Control and Inspection) Act</option><option value="915">Extradition Act</option><option value="129">FACTORIES ACT</option><option value="916">Factoring Regulation Act</option><option value="917">Family Court (Other Qualifications for Appointment of Judges) Rules</option><option value="918">FAMILY COURTS ACT</option><option value="919">Faridabad Development Corporation Act</option><option value="920">Fatal Accidents Act</option><option value="921">Fat Spread Grading and Marking Rules</option><option value="922">Finance Act, 2009</option><option value="924">FInance Act,2013</option><option value="923">Finance Act, 2018</option><option value="925">Finance Act (Service Tax)</option><option value="926">Finance Commission (Miscellaneous Provisions) Act</option><option value="927">Fiscal Responsibility and Budge Management Rules</option><option value="928">Fiscal Responsibility and Budget Management Act</option><option value="929">FOOD CORPORATIONS ACT</option><option value="171">Food Safety and Standards Act,2006</option><option value="930">Food Safety and Standards (Contaminants, toxins and Residues) Regulations</option><option value="931">Food Safety and Standards (Laboratory and Sample Analysis) Regulations</option><option value="932">Food Safety and Standards (Licensing and Registration of Food Business) Regulations</option><option value="933">Food Safety and Standards (Prohibition and Restrictions on sales) Regulations</option><option value="934">Foreign Aircraft (Exemption from Taxes and Duties on Fuel and Lubricants) Act</option><option value="935">Foreign Contribution (Regulation) Act</option><option value="936">Foreign Contribution(Regulation) Act, 2010</option><option value="937">Foreign Contribution (Regulation) Amendment Rules</option><option value="938">Foreign Contribution (Regulation) Amendment Rules (Amendment in rule 4)</option><option value="939">Foreign Contribution (Regulation) Rules</option><option value="174">FOREIGNERS ACT</option><option value="940">Foreigners Law (Application and Amendment) Act</option><option value="941">FOREIGN EXCHANGE MANAGEMENT ACT</option><option value="942">Foreign Exchange Management (Crystallization of Inoperative Foreign Currency Deposits) Regulations</option><option value="943">Foreign Exchange Management (Transfer or Issue of Security by a Person Resident outside India) Regulations, 2017</option><option value="140">FOREIGN EXCHANGE REGULATION ACT</option><option value="944">Foreign Jurisdiction Act</option><option value="945">Foreign Marriage Act</option><option value="946">Foreign Marriage Act and Rules</option><option value="947">Foreign Privileged Persons (Regulation of Customs Privileges) Rules</option><option value="948">Foreign Recruiting Act</option><option value="949">Foreign Trade (Development and Regulation) Act</option><option value="950">Foreign Trade (Exemption from application of Rules in certain cases) Order</option><option value="951">Foreign Trade (Regulation) Rule</option><option value="952">FOREST (CONSERVATION) ACT</option><option value="953">Forest (Conservation) Rules</option><option value="954">Forest (Conservation) Rules</option><option value="955">Forfeited Deposits Act</option><option value="956">Former Secretary of State Service Officers (Conditions of Service) Act</option><option value="957">Fort William Act</option><option value="958">Forward Contract (Regulation) Rules</option><option value="959">Forward Contracts (Regulation) Act</option><option value="960">Forward contracts (regulation) (intermediaries) draft rules</option><option value="961">Fruits and Vegetables Grading and Marking Rules</option><option value="962">Fugitive Economic Offenders Act</option><option value="963">Furnishing of Return of Income on Internet Scheme</option><option value="964">Futwah-Islampur Light Railway Line (Nationalisation) Act</option><option value="965">Ganesh Flour Mills Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="966">Ganges Tolls Act</option><option value="967">Gas Cylinders Rules, 2016</option><option value="968">GENERAL CLAUSES ACT</option><option value="969">General Grading &amp; Marking Rules</option><option value="970">General Insurance Business (Nationalisation) Act</option><option value="971">General Insurance Business (Nationalisation) Amendment Act</option><option value="972">GENERAL INSURANCE (EMERGENCY PROVISIONS) ACT</option><option value="973">Geneva Conventions Act</option><option value="974">Geographical Indications of Goods (Registration and Protection) Act</option><option value="975">Geographical Indications of Goods (Registration &amp; Protection) Rules</option><option value="976">Ghee Grading and Marking Rules</option><option value="977">Gift-tax Act</option><option value="978">Glanders and Farcy Act</option><option value="979">Goa, Daman and Diu Mining Concession Act</option><option value="980">Goat Hair Grading and Marking Rules</option><option value="981">Gold Bonds (Immunities and Exemptions) Act</option><option value="982">Goods and Services Tax (Compensation to State) Amendment Act</option><option value="983">Goods and Services Tax (Compensation to States) Amendment Act</option><option value="984">Goods and Service Tax (Compensation to States) Act</option><option value="985">Government Buildings Act</option><option value="986">Government Grants Act</option><option value="987">Government Management of Private Estates Act</option><option value="988">Government of India (Transaction of Business) Rules</option><option value="989">Government of National Capital Territory of Delhi Act</option><option value="990">Government of Union Territories Act</option><option value="991">Government Savings Banks Act</option><option value="992">Government Savings Certificates Act (Reprint)</option><option value="993">Government Seal Act</option><option value="994">Government Securities Act</option><option value="995">Governors (Allowances and Privileges) Rules</option><option value="996">Governors (Emoluments, Allowances and Privileges) Act</option><option value="997">Gram Nyayalayas Act</option><option value="998">Gresham and Craven of India (Private) Limited (Acquisition and Transfer of Undertakings) Act</option><option value="999">Groundnut Grading and Marking Rules</option><option value="35">GUARDIANS AND WARDS ACT</option><option value="1000">Guar Grading and Marking Rules</option><option value="1001">Guidelines for Providing Training by Shipping Companies for Tonnage-Tax Scheme under Chapter Xii-G of Income-Tax Act</option><option value="1002">Gum Karaya Grading and Marking Rules</option><option value="1003">Hackney-carriage Act</option><option value="1004">Haj Committee Act</option><option value="1005">Haj Committee Rules.</option><option value="1006">Handlooms (Reservation of Articles for Production) Act</option><option value="1007">Handpicked Selected Groundnuts Grading and Marking Rules</option><option value="1008">Haryana and Punjab Agricultural Universities Act</option><option value="1009">Haryana and Uttar Pradesh (Alteration of Boundaries) Act</option><option value="1010">Hides Grading and Marking Rules</option><option value="1011">High Court and Supreme Court Judges (Salaries and Conditions of Service) Amendment Act</option><option value="1012">High Court at Patna (Establishment of a Permanent Bench at Ranchi) Act</option><option value="1013">High Court Judges (Salaries and Conditions of Service) Act</option><option value="1014">High Courts (Seals) Act</option><option value="1015">High Denomination Bank Notes (Demonetisation) Act</option><option value="1016">Himachal Pradesh and Bilaspur (New State) Act</option><option value="1017">Himachal Pradesh Legislative Assembly (Constitution and Proceedings) Validation Act</option><option value="1018">Hind Cycles Limited and Sen-Raleigh Limited (Nationalisation) Act</option><option value="1019">Hindi Sahitya Sammelan Act</option><option value="36">HINDU ADOPTIONS AND MAINTENANCE ACT</option><option value="1020">HINDU DISPOSITION OF PROPERTY ACT</option><option value="1021">Hindu Gains of Learning Act</option><option value="1022">Hindu Inheritance (Removal of Disabilities) Act</option><option value="75">Hindu Marriage Act</option><option value="1023">HINDU MARRIAGES (VALIDATION OF PROCEEDINGS) ACT</option><option value="1024">HINDU MINORITY AND GUARDIANSHIP ACT</option><option value="1025">Hindustan Tractors Limited (Acquisition and Transfer of Undertakings) Act</option><option value="64">HINDU SUCCESSION ACT</option><option value="1026">Hindu Widows' Remarriage Act</option><option value="1027">Hire-Purchase Act</option><option value="1028">Homoeopathy Central Council Act</option><option value="1029">Homoeopathy Central Council (Amendment) Act</option><option value="1030">Homoeopathy Central Council (Election) Rules</option><option value="1031">Honey Grading and Marking Rules</option><option value="1032">Hooghly Docking and Engineering Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="1033">Hotel-Receipts Tax Act</option><option value="1034">Housing and Telephone Facilities (Members of Parliament) Rules</option><option value="1035">Howrah Offences Act</option><option value="210">Human Immunodeficiency Virus and Acquired Immune Deficiency Syndrome (Prevention and Control) Act, 2017</option><option value="74">Hyderabad Houses (Rent Eviction and lease) Control Act,1954</option><option value="2138">Hyderabad Tenancy and Agricultural Lands Act</option><option value="1036">Identification of Prisoners Act</option><option value="1037">IEPF Auhority (Recruitment Salary and Other terms and conditions of service of Officers and other employees) Rules</option><option value="1038">Illegal Migrants (Determination by Tribunals) Act</option><option value="1039">Immigrants (Expulsion from Assam) Act</option><option value="1040">Immigration (Carriers Liability) Act</option><option value="127">IMMORAL TRAFFIC (PREVENTION) ACT</option><option value="1041">Imperial Bank of India Act</option><option value="1042">Imperial Library (Change of Name) Act</option><option value="1043">Improvements in Towns Act</option><option value="1044">Inchek Tyres Limited and National Rubber Manufacturers Limited (Nationalisation) Act</option><option value="1045">Income Declaration Scheme Rules</option><option value="187">Income Tax Act 1961</option><option value="1046">Income-tax (Appellate Tribunal) Rules</option><option value="1047">Income-tax (Certificate Proceedings) Rules</option><option value="1048">Income-tax (Dispute Resolution Panel) Rules</option><option value="1049">Income-Tax Ombudsman Guidelines</option><option value="1050">Income-tax Rules</option><option value="1051">Income-tax Settlement Commission (Procedure) Rules</option><option value="1052">Income-tax Welfare Fund Rules</option><option value="1053">INDECENT REPRESENTATION OF WOMEN (PROHIBITION) ACT</option><option value="1054">INDECENT REPRESENTATION OF WOMEN (PROHIBITION) RULES</option><option value="1055">India-Japan Comprehensive Economic Partnership Agreement (Bilateral Safeguard Measures) Rules</option><option value="1056">India-MERCOSUR Customs Tariff (Determination of Origin of Goods under the Preferential Trade Agreement) Rules</option><option value="1057">Indian Administrative Service (Cadre) Rules</option><option value="1058">Indian Administrative Service (Pay) Rules</option><option value="1059">Indian Administrative Service (Probation) Rules</option><option value="1060">Indian Administrative Service (Recruitment) Rules</option><option value="1061">Indian Administrative Service (Regulation of Seniority) Rules</option><option value="123">Indian Arms Act</option><option value="1062">Indian Bar Councils Act</option><option value="1063">Indian Bills of Lading Act</option><option value="1064">Indian Boilers Act</option><option value="1065">Indian Carriage of Goods by Sea Act</option><option value="1066">Indian Contract Act</option><option value="1067">Indian Copper Corporation (Acquisition of Undertaking) Act</option><option value="1068">Indian Council of World Affairs Act</option><option value="158">Indian Criminal Law Amendment Act</option><option value="47">Indian Divorce Act</option><option value="1069">Indian Easements Act</option><option value="65">Indian Electricity Act</option><option value="1070">Indian Evidence Act</option><option value="1071">Indian Fisheries Act</option><option value="1072">Indian Foreign Service Branch 'B' Rules</option><option value="51">Indian Forest Act</option><option value="1073">Indian Forest (Amendment) Act</option><option value="1074">Indian Forest Service (Pay) Rules</option><option value="1075">Indian Independence Pakistan Courts (Pending Proceedings) Act</option><option value="1076">Indian Institute of Information Technology (Public Private Partnership) Act</option><option value="1077">Indian Institute of Legal Metrology Rules</option><option value="1079">Indian Institute of Petroleum and Energy Act</option><option value="1080">Indian Institutes of Information Technology Act, 2014</option><option value="1078">Indian Institutes of Legal Metrology Rules</option><option value="1081">Indian Iron and Steel Company (Acquisition of Shares) Act</option><option value="1082">Indian Law Reports Act</option><option value="1083">Indian Maritime University Act</option><option value="1084">Indian Matrimonial Causes (War Marriages) Act</option><option value="1085">Indian Medical Council Act</option><option value="1086">Indian Medical Council (Professional conduct, Etiquette and Ethics) Regulations</option><option value="1087">Indian Medical Degrees Act</option><option value="1088">Indian Medicine Central Council Act</option><option value="1089">Indian Museum Act</option><option value="1090">Indian Naval Armament Act</option><option value="1091">Indian Nursing Council Act</option><option value="1092">Indian Partnership Act</option><option value="1">INDIAN PENAL CODE</option><option value="1093">Indian Police Act</option><option value="1094">Indian Police Service (Pay) Rules</option><option value="1095">Indian Police Service (Probationers' Final Examination) Regulations</option><option value="1096">Indian Ports Act</option><option value="1097">Indian Post Office Act</option><option value="1098">Indian Railway Board Act</option><option value="1099">Indian Red Cross Society Act</option><option value="1100">Indian Registration of Ships Act, 1841</option><option value="1101">Indian Registration of Ships Act (1841) Amendment Act</option><option value="1102">Indian Reserve Forces Act</option><option value="1103">Indian Rifles Act</option><option value="1104">Indian Rifles (Repeal) Act</option><option value="1105">Indian Securities Act</option><option value="1106">Indian Short Titles Act</option><option value="1107">Indian Slavery (Abolition) Act</option><option value="1108">Indian Soldiers (Litigation) Act</option><option value="1109">Indian Stamp Act</option><option value="1110">Indian Statistical Institute Act</option><option value="53">Indian Succession Act</option><option value="160">Indian Telegraph Act</option><option value="1112">Indian Tolls Act, 1851</option><option value="1113">Indian Tolls Act, 1864</option><option value="1111">Indian Tolls Act, 1888</option><option value="1114">Indian Tolls (Army and Air Force) Act</option><option value="1116">Indian Tramways Act</option><option value="1115">Indian Tramways Act, 1902</option><option value="84">Indian Treasure-trove Act</option><option value="1117">Indian Trusts Act</option><option value="1118">Indian Veterinary Council Act</option><option value="1119">Indian Wireless Telegraphy Act</option><option value="1120">India-Singapore Trade Agreement (Safeguard Measures) Rules</option><option value="1121">Indira Gandhi National Open University Act</option><option value="1122">Indira Gandhi National Tribal University Act</option><option value="1123">Indirect Tax dispute Resolution Scheme Rules</option><option value="1124">Indo-Tibetan Border Police Force Act</option><option value="1125">Indo Tibetan Border Police Rules</option><option value="1126">Industrial Development Bank (Transfer of Undertaking and Repeal) Act</option><option value="145">Industrial Dispute Act</option><option value="1127">Industrial Disputes (Amendment and Miscellaneous Provisions) Act</option><option value="1128">Industrial Disputes (Banking and Insurance Companies) Act</option><option value="1129">Industrial Disputes (Central) Rules</option><option value="148">Industrial Employment (Standing Orders) Act,1946</option><option value="1130">Industrial Employment (Standing Orders) Rules</option><option value="1131">Industrial Finance Corporation (Transfer of Undertaking and Repeal) Act</option><option value="1133">Industrial Park Scheme</option><option value="1132">Industrial Parks Scheme</option><option value="1134">Industrial Reconstruction Bank of India Act</option><option value="1135">Industrial Reconstruction Bank (Transfer of Undertakings and Repeal) Act</option><option value="1136">Industries (Development and Regulation) Act</option><option value="1137">Infant Milk Substitutes, Feeding Bottles and Infant Foods (Regulation of Production, Supply and Distribution) Act</option><option value="1138">INFLAMMABLE SUBSTANCES ACT</option><option value="155">Information Technology Act</option><option value="1139">Inland Vessels Act</option><option value="1140">Inland Waterways Authority of India Act</option><option value="1141">Inland Waterways Authority of India (IWAI) Rules</option><option value="82">Insecticides Act</option><option value="1142">Insolvancy and Bankcruptcy Code</option><option value="1143">Insolvancy and Bankcruptcy of Board of India (Salary, allownces and Other terms and conditions of service of chairperson and members) Rules</option><option value="1144">Insolvency and Bankruptcy (Application to Adjudicating Authority) Rules</option><option value="1145">Insolvency and Bankruptcy Code (Amendment) Act</option><option value="1146">Insolvency and Bankruptcy Code (Second Amendment) Act</option><option value="1147">Institutes of Technology Act</option><option value="1148">Instructions to Subordinate Authorities - Authorisation Regarding Condonation of Delay in Filing Refund Claim</option><option value="1149">INSURANCE ACT</option><option value="1150">Insurance Regulatory and Development Authority Act</option><option value="1151">Integrated Goods and Services Tax (Amendment) Act</option><option value="1152">Integrated Goods and Services Tax (Extension to Jammu and Kashmir) Act, 2017</option><option value="1153">Integrated Goods and Service Tax Act</option><option value="1154">Intellectual Property Rights (Imported Goods) Enforcement Rules</option><option value="1155">Intelligence Organisations (Restriction on Rights) Act</option><option value="1156">INTEREST ACT</option><option value="1157">Interest on Delayed Payments to Small Scale and Ancillary Industrial Undertakings Act Repealed by Act</option><option value="1158">Interest-tax Act</option><option value="1159">Interim Rules of Origin for preferential tariff concessions for Trade between India and Thailand</option><option value="1160">International Development Association (Status, Immunities and Privileges) Act</option><option value="1161">International Finance Corporation (Status, Immunities and Privileges) Act</option><option value="1162">International Monetary Fund and Bank Act</option><option value="1163">Inter-State Corporation Act</option><option value="142">Inter-State Migrant Workmen Regulation of Employment and Condition of Service) Act,1979</option><option value="1164">Inter-State River Water Disputes Act</option><option value="1165">Investment Deposit Account Scheme</option><option value="1166">Investor Educaton and Protection of Fund Authority (Accounting, Audit, Transfer and Refund) Rules</option><option value="1167">Investor Educaton and Protection of Fund Authority (Appointment of Chairperson and Members holding meetings and provision for offices and officers) Rules</option><option value="1168">Investors Education and Protection Fund (Awareness an Protection of Investors) Rules 2001</option><option value="1169">Iron Ore Mines, Manganese Ore Mines and Chrome Ore Mines Labour Welfare Cess Act</option><option value="1170">Iron Ore Mines, Manganese Ore Mines and Chrome Ore Mines Labour Welfare Fund Act</option><option value="26">Irrigation Act (Maharashtra)</option><option value="1171">Issue of Foreign Currency Convertible Bonds And Ordinary Shares (Through Depositary Receipt Mechanism) Scheme</option><option value="1172">Issue of Foreign Currency Exchangeable Bonds Scheme</option><option value="1173">Isubgol Husk Grading and Marking Rules</option><option value="1174">Jaggery Grading and Marking Rules</option><option value="1175">Jallianwala Bagh National Memorial Act</option><option value="1176">Jamia Millia Islamia Act</option><option value="1177">Jammu and Kashmir (Extension of Laws) Act</option><option value="1178">Jammu and Kashmir Representation of the People (Supplementary) Act</option><option value="1179">Jatropha Seeds Grading and Marking Rules</option><option value="1180">Jawaharlal Institute of Post-Graduate Medical Education and Research, Puducherry Act</option><option value="1181">Jawaharlal Nehru University Act</option><option value="1182">Jayanti Shipping Company (Acquisition of Shares) Act</option><option value="1183">Joint-stock Companies</option><option value="1184">Jubbalpore and Chhattisgarh Divisions (Divorce Proceedings Validation) Act</option><option value="1185">Judges (Inquiry) Act</option><option value="1186">Judges (Protection) Act</option><option value="1187">Judicial Officers Protection Act</option><option value="1188">Junagarh Administration (Property) Act</option><option value="1189">Jute Companies (Nationalisation) Act</option><option value="1190">Jute Grading and Marking Rules</option><option value="1191">Jute Manufacturers Development Council Act</option><option value="1192">Jute Manufactures Cess Act</option><option value="1193">Jute Packaging Materials (Compulsory Use in Packing Commodities) Act</option><option value="100">JUVENILE JUSTICE (CARE AND PROTECTION OF CHILDREN) ACT</option><option value="1194">Juvenile Justice (Care and Protection of Children) Act, 2015</option><option value="1195">Juvenile Justice (Care and Protection of Children) Rules</option><option value="1196">Kalakshetra Foundation Act</option><option value="1197">Kangra Tea Grading and Marking Rules</option><option value="1198">Karanj Seeds Grading and Marking Rules</option><option value="1199">Kazis Act</option><option value="1200">Kerala Legislative Assembly (Extension of Duration) Act</option><option value="1201">Khaddar (Protection of Name) Act</option><option value="1202">Khadi and Village Industries Commission Act</option><option value="1203">Khuda Bakhsh Oriental Public Library Act</option><option value="1204">King of Oudh's Estate Act</option><option value="1205">King of Oudh's Estate Validation Act</option><option value="1206">Konkan Passenger Ships (Acquisition) Act</option><option value="1207">Kosangas Company (Acquisition of Undertakings) Act</option><option value="1208">Labour Laws (Exemption from Furnishing Returns and Maintaining Registers by certain Establishments)</option><option value="1209">Lac Grading and Marking Rules</option><option value="1210">Lady Hardinge Medical College and Hospital (Acquisition and Miscellaneous Provisions) Act</option><option value="1211">Lalitkala Akademi (Taking Over of Management) Act</option><option value="34">Land Acquisition Act</option><option value="1212">Land Acquisition (Amendment) Act</option><option value="1213">Land Acquisition (Amendment and Validation) Act</option><option value="1214">Land Acquisition (Mines) Act</option><option value="1215">Land Improvement Loans Act</option><option value="1216">Land Ports Authority of India Act</option><option value="1217">Laws Local Extent Act</option><option value="1218">Laxmirattan and Atherton West Cotton Mills (Taking Over of Management) Act</option><option value="1219">Leaders and Chief Whips of Recognised Parties and Groups in Parliament (Telephone and Secretarial Facilities) Rules</option><option value="1220">Leaders of Chief Whips of Recognised Parties and Groups in Parliament (Facilities) Act</option><option value="1221">Leaders of Opposition in Parliament (Advance for Motor Car) Rules</option><option value="1222">Leaders of Opposition in Parliament (Allowances Medical and other Facilities) Rules</option><option value="1223">Legal Aid to Unrepresented Accused Person in cases before the Court of Sessions Rules</option><option value="1224">Legal Aid to Unrepresented Accused Person in Criminal Cases other those before the Court of Sessions Rules</option><option value="1225">Legal Metrology (Approval of Models) Rules</option><option value="1226">Legal Metrology (National Standards) Rules</option><option value="1227">Legal Metrology (Numeration) Rules</option><option value="1228">Legal Metrology (Packaged Commodities) Rules</option><option value="1229">Legal Practitioners Act</option><option value="1230">Legal Practitioners (Fees) Act</option><option value="1231">Legal Practitioners (Women) Act</option><option value="1232">Legal Representatives' Suits Act</option><option value="1233">LEGAL SERVICES AUTHORITIES ACT</option><option value="1234">Legal Tender (Inscribed Notes) Act</option><option value="1235">Legislative Assembly of Nagaland (Change in Representation) Act</option><option value="1236">Legislative Councils Act</option><option value="1237">Lepers Act</option><option value="1238">Levy Sugar Price Equalisation Fund Act</option><option value="1239">Life Insurance Corporation Act</option><option value="1240">Life Insurance Corporation (Modification of Settlement) Act</option><option value="1241">Light House Act</option><option value="1242">Limestone and Dolomite Mines Labour Welfare Fund Act</option><option value="39">Limitation Act</option><option value="1243">Limited Liability Partnership Act</option><option value="1244">Limited Liability Partnership Rules</option><option value="1245">Limited Liability Partnerships (Winding Up And Dissolution ) Rules</option><option value="1246">Limited Liability Partnership (Winding Up And Dissolution ) Rules</option><option value="1247">Linseed Grading and Marking Rules</option><option value="1248">Live-stock Importation Act</option><option value="1249">Local Authorities Loans Act</option><option value="1250">Local Authorities Pensions and Gratuities Act</option><option value="1251">Lokpal and Lokayuktas Act</option><option value="1252">Lok Sahayak Sena Act (Reprint)</option><option value="1253">Lotteries (Regulation) Act</option><option value="1254">Lotteries (Regulation) rules</option><option value="70">Lunancy Act</option><option value="1255">Lushai Hills District (Change of Name) Act</option><option value="1256">Mace Grading and Marking Rules</option><option value="1257">Madhya Pradesh Reorganisation Act</option><option value="1258">Madras, Bengal and Bombay Children (Supplementary) Act</option><option value="1259">Madras City Civil Court Act</option><option value="1260">Madras City Land Revenue Act</option><option value="1261">Madras Civil Courts Act</option><option value="1262">Madras Compulsory Labour Act</option><option value="1263">Madras District Police Act</option><option value="1264">Madras Forest (Validation) Act</option><option value="1265">Madras Public Property Malversation Act</option><option value="1266">Madras Rent and Revenue Sales Act</option><option value="1267">Madras Revenue Commissioner Act</option><option value="1268">Madras Uncovenanted Officers' Act</option><option value="134">Maharashtra Agricultural Produce Marketing (Regulation) Act</option><option value="119">Maharashtra Agricultural Produce Marketing (Regulation) Act</option><option value="2142">Maharashtra Ancient Monuments and Archaeological Sites and Remains Act</option><option value="2141">Maharashtra Animal Preservation Act</option><option value="2134">Maharashtra Apartment Ownership Act</option><option value="52">Maharashtra Control of Organised Crime Act</option><option value="2143">Maharashtra Cotton Seeds (Regulation of supply, distribution, sale and fixation of sale price) Act</option><option value="63">MAHARASHTRA COURT FEES ACT</option><option value="2144">Maharashtra Drinking Water Supply Requisition Act</option><option value="113">Maharashtra Education and Employment Guarantee (Cess) Act</option><option value="107">Maharashtra Electricity Duty Act</option><option value="131">Maharashtra Employees of Private Schools (Conditions of Service) Regulation Act, 1977</option><option value="2167">MAHARASHTRA ENTERTAINMENTS DUTY ACT</option><option value="2123">Maharashtra Essential Services Maintenance Act</option><option value="2170">Maharashtra Factories Rules, 1963.</option><option value="60">Maharashtra Felling of Trees (Regulation) Act</option><option value="207">Maharashtra Fire Prevention and Life Safety Measures Act.2006</option><option value="2145">Maharashtra Fisheries Act</option><option value="2146">Maharashtra Fruit Nurseries and Sale of Fruit Plants (Regulation) Act</option><option value="2147">Maharashtra Goods and Services Tax Act</option><option value="156">Maharashtra Government Premises (Eviction) Act</option><option value="2148">Maharashtra Government Servants Regulation of Transfers and Prevention of Delay in Discharge of Official Duties Act</option><option value="2149">Maharashtra Groundwater (Development and Management) Act</option><option value="2126">Maharashtra Highways Act</option><option value="98">Maharashtra Housing and Area Development Act</option><option value="59">Maharashtra Industrial Development Act</option><option value="2150">Maharashtra Irrigation Act</option><option value="2151">Maharashtra Keeping and Movement of Cattle in Urban Areas (Control) Act</option><option value="150">Maharashtra Labour Welfare Fund Act</option><option value="108">Maharashtra Land Revenue Code</option><option value="2152">Maharashtra Lifts, Escalators and Moving Walks Act</option><option value="105">Maharashtra Local Fund Audit Act</option><option value="2153">Maharashtra Maritime Board Act</option><option value="149">Maharashtra Mathadi, Hamal and or Manual Workers (Regulation of Employment and Welfare) Act</option><option value="2155">Maharashtra Media Persons and Media Institutions (Prevention of Violence and Damage or Loss to Property) Act</option><option value="69">MAHARASHTRA MEDICAL PRACTITIONERS ACT</option><option value="66">Maharashtra Medicare Service Persons and Medicare Service Institutions (Prevention of Violence and Damage or Loss to Property) Act</option><option value="2154">Maharashtra Minor Forest Produce (Regulation of Trade) Act</option><option value="90">Maharashtra Money Lenders Act</option><option value="2135">Maharashtra Money-Lending (Regulation) Act</option><option value="2168">Maharashtra Motor vehicles Rules</option><option value="24">Maharashtra Municipal Corporations Act</option><option value="15">Maharashtra Municipal Council, Nagar Panchayat and Industrial Townships Act,1965</option><option value="46">Maharashtra Municipal Councils, Nagar Panchayats and Industrial Townships Act</option><option value="104">Maharashtra Municipal Councils, Nagar Panchayats and Industrial Townships Act</option><option value="122">Maharashtra Municipalities (Octroi)Rules, 1968</option><option value="200">MAHARASHTRA NON BIODEGRADABLE GARBAGE (CONTROL) ACT, 2006</option><option value="2122">Maharashtra Police Act</option><option value="194">Maharashtra Prevention and Eradication of Human Sacrifice and or Inhuman, Evil and Aghori Practices and Black Magic Act</option><option value="204">Maharashtra Prevention and Eradication of Human Sacrifice and or Inhuman, Evil and Aghori Practices and Black Magic Act, 2013</option><option value="2156">Maharashtra Prevention of Communal, Anti-social and other Dangerous Activities Act</option><option value="2157">Maharashtra Prevention of Dangerous Activities of Slumlords, Bootleggers, Drug-offenders and Dangerous Persons and Video Pirates Act</option><option value="185">Maharashtra Prevention of Defacement of Property Act</option><option value="176">Maharashtra Prevention of Defacement of Property Act</option><option value="2124">Maharashtra Prevention of Fragmentation and Consolidation of Holdings Act</option><option value="12">Maharashtra Prevention of Gambling Act</option><option value="71">Maharashtra Prevention of Malpractices at University, Board and Other Specified Examinations Act</option><option value="137">Maharashtra Prevention of Malpractices at University, Board and Other Specified Examinations Act</option><option value="205">Maharashtra Prevention of Malpractices at University, Board and Other Specified Examinations Act, 1982</option><option value="2158">Maharashtra Prevention of Water Pollution Act</option><option value="2159">Maharashtra Preventive Detention Act</option><option value="14">MAHARASHTRA PROHIBITION ACT</option><option value="190">Maharashtra Prohibition of Ragging Act, 1999</option><option value="2160">Maharashtra Project Affected Persons Rehabilitation Act</option><option value="56">Maharashtra Protection of Interest of Depositors (in Financial Establishments) Act</option><option value="2127">Maharashtra Protection of People from Social Boycott (Prevention, Prohibition and Redressal) Act</option><option value="2161">Maharashtra Public Records Act</option><option value="2162">Maharashtra Public Security Measures Act</option><option value="68">Maharashtra Raw Cotton (Procurement, Processing and Marketing) Act</option><option value="146">Maharashtra Recognition of Trade Unions and Prevention of Unfair Labour Practices Act</option><option value="126">Maharashtra Regional and Town Planning Act,1966</option><option value="58">Maharashtra Rent Control Act</option><option value="2163">Maharashtra Requisitioning (and Control) of Motor Vehicles Act</option><option value="2165">Maharashtra Resettlement of Project Displaced Persons Act</option><option value="2132">Maharashtra Revenue Jurisdiction Act</option><option value="2164">Maharashtra Right to Public Services Act</option><option value="92">Maharashtra Shops and Establishments Act</option><option value="2128">Maharashtra Slum Areas (Improvement, Clearance and Redevelopment) Act</option><option value="23">Maharashtra Specific Co-Operative Societies Act</option><option value="97">MAHARASHTRA UNIVERSITIES ACT</option><option value="206">Maharashtra (Urban Areas) Protection and Preservation of Trees Act, 1975</option><option value="182">Maharashtra Value Added Tax Act, 2002</option><option value="183">Maharashtra Village Panchayat Act, 1958</option><option value="10">Maharashtra Village Panchayats Act</option><option value="2166">MAHARASHTRA WORKMENS MINIMUM HOUSE RENT ALLOWANCE ACT</option><option value="76">Maharashtra Zilla Parishads and Panchayat Samitis Act</option><option value="1269">Mahatama Gandhi Antarashtriya Hindi Vishwavidyalaya Act</option><option value="1270">Mahendra Pratap Singh Estate (Repeal) Act</option><option value="1271">Mahua Flower Grading and Marking Rules</option><option value="1272">Mahua Seeds Grading and Marking Rules</option><option value="186">Maintenance and Welfare of Parents and Senior Citizen Act 2007</option><option value="1273">Maintenance Orders Enforcement Act</option><option value="1274">Majority Act</option><option value="1275">MAJOR PORT TRUSTS ACT</option><option value="1276">Makhana Grading and Marking Rules</option><option value="1277">MAMLATDARS COURTS ACT</option><option value="2125">MAMLATDARS COURTS ACT</option><option value="1278">Mangrol and Manavadar (Administration of Property) Act</option><option value="1279">Manipur and Tripura (Repeal of Laws) Act</option><option value="1280">Manipur (Courts) Act</option><option value="1281">Manipur (Hill Areas District Council) Act</option><option value="1282">Manipur Land Revenue and Land Reforms Act</option><option value="1283">Manipur Municipalities Act</option><option value="1284">Manipur Panchayati Raj Act</option><option value="1285">Manipur (Sales of Motor Spirit and Lubricants) Taxation Act</option><option value="1286">Manipur University Act</option><option value="1287">Manipur (Village Authorities in Hill Areas) Act</option><option value="1288">Manoeuvres, Field Firing and Artillery Practice Act</option><option value="1289">Manufacture, Use, Import, Export and Storage of Hazardous Microorganism, Genetically Engineered Organism or Cell Rule</option><option value="1290">Marble Development and Conservation Rules, 2002</option><option value="1291">Marine Insurance Act</option><option value="1292">Marine Products Export Development Authority Act</option><option value="1293">Maritime Zones of India (Regulation of Fishing by Foreign Vessels) Act</option><option value="1294">Marking of Heavy Packages Act</option><option value="1295">Marriages Validation Act</option><option value="1296">MARRIED WOMEN'S PROPERTY ACT</option><option value="1297">Married Women's Property (Extension) Act</option><option value="1298">Maruti Limited (Acquisition and Transfer of Undertakings) Act</option><option value="1299">MATERNITY BENEFIT ACT</option><option value="1300">Maternity Benefit (Mines And Circus) Rules</option><option value="1301">Maulana Azad National Urdu University Act</option><option value="1302">Medical Facilities (Members of Parliament) Rules</option><option value="192">Medical Termination of Pregnancy Act 1971</option><option value="1303">Medical Termination of Pregnancy Regulations</option><option value="1304">Medical Termination of Pregnancy Rules</option><option value="1305">Medicinal and Toilet Preparations (Excise Duties) Act</option><option value="1306">Members of Parliament (Advance for the Purchase Of Conveyance ) Rules</option><option value="1307">Members of Parliament (Allowances for Journeys Abroad) Rules</option><option value="1308">Members of Parliament (Constituency Allowance) Rules</option><option value="1309">Members of Parliament (Office Expense Allowance) Rules</option><option value="1310">Members of Parliament (Travelling and Daily Allowances) Rules</option><option value="54">Mental Health Act</option><option value="1311">Mental Health Act, 2017</option><option value="1312">MERCHANT SHIPPING ACT</option><option value="1314">Merchant Shipping (Amendment) Act, 1986</option><option value="1313">Merchant Shipping (Amendment) Act, 1987</option><option value="1315">Merchant Shipping (Form of Certificate of Insurance for Civil Liability for Oil Pollution Damage) Rules</option><option value="1316">Merged States (Laws) Act</option><option value="1317">Metal Corporation (Nationalisation and Miscellaneous Provisions) Act</option><option value="1318">Metal Tokens Act</option><option value="1319">Metro Railways (Amendment) Act, 2009</option><option value="1320">Metro Railways (Construction of Works) Act</option><option value="1321">Metro Railways (Construction of Works) Amendment Act, 1982</option><option value="1322">Mica Mines Labour Welfare Fund Act</option><option value="1323">Micro, Small and Medium Enterprises Development Act</option><option value="1324">Mineral (Auction) Rule, 2015</option><option value="1325">Mineral (Auction) Rules, 2015</option><option value="1326">Mineral Concession Rules</option><option value="1327">Mineral Conservation and Development Rule 2017</option><option value="1328">Mineral Conservation and Development Rules 2017</option><option value="1329">Mineral (Non-exclusive Reconnaissance Permits) Rules, 2015</option><option value="1330">Minerals (Evidence of Mineral Contents) Rules, 2015</option><option value="1331">Minerals (other than Atomic and Hydro Carbons Energy Minerals) Concession Rules, 2016</option><option value="1332">Mines Act</option><option value="1333">Mines and Minerals (Contribution to District Mineral Foundation) Rules, 2015</option><option value="180">MINES AND MINERALS (DEVELOPMENT AND REGULATION) ACT</option><option value="78">Minimum Wages Act</option><option value="1334">Minimum Wages (Central) Rules</option><option value="1335">Ministers (Allowances Medical Treatment and other Privileges Rules</option><option value="1336">Ministers Residences Rules</option><option value="1337">Ministry of Environment and Forests Forest Survey of India Multi Tasking Staff (Group 'C' Posts) Recruitment Rules</option><option value="1338">Ministry of Parliamentary Affairs Accountant Recruitment Rules</option><option value="1339">Ministry of Parliamentary Affairs Assistant Recruitment Rules</option><option value="1340">Ministry of Parliamentary Affairs Hindi Officer</option><option value="1341">Ministry of Parliamentary Affairs Joint Secretary Recruitment Rules</option><option value="1342">Ministry of Parliamentary Affairs Personal Assistant Recruitment Rules</option><option value="1343">Ministry of Parliamentary Affairs Principal Private Secretary Recruitment Rules</option><option value="1344">Ministry of Parliamentary Affairs Private Secretary Recruitment Rules</option><option value="1345">Ministry of Parliamentary Affairs Research Assistant Work Study Group ‘B’(Non-Gazetted) Recruitment Rules</option><option value="1346">Ministry of Parliamentary Affairs Section Officer Recruitment Rules</option><option value="1347">Mirzapur Stone Mahal Act</option><option value="1348">Miscellaneous Personal Laws (Extension) Act (Reprint 1976)</option><option value="1349">Mixed Masala Powder Grading and Marking Rules</option><option value="1350">Mizoram University Act</option><option value="1351">Mogul Line Limited (Acquisition of Shares) Act</option><option value="1352">MONOPOLIES AND RESTRICTIVE TRADE PRACTICES ACT</option><option value="1353">Motor Transport Workers Act</option><option value="41">MOTOR VEHICLES ACT</option><option value="1354">Motor Vehicles (Driving) Regulations, 2017</option><option value="1355">Multimodal Transportation of Goods Act</option><option value="1356">Multi-State Co-operative Societies Act</option><option value="1357">Multi-State Cooperative Societies Act</option><option value="1358">Municipal Solid Waste (Management and Handling) Rules</option><option value="1359">MUNICIPAL TAXATION ACT</option><option value="1360">Murshidabad Act</option><option value="1361">Murshidabad Estate Administration Act</option><option value="94">Muslim Personal Law (Shariat) Application Act</option><option value="114">Muslim Women (Protection Of Right On Divorce) Act,1986</option><option value="1362">Mussalman Wakf Act</option><option value="1364">Mussalman Wakf Validating Act</option><option value="1363">Mussalman Wakf Validating Act, 1930</option><option value="1365">Mustards and Rapeseeds Grading and Marking Rules</option><option value="1366">Myrobalans Grading and Marking Rules</option><option value="1367">Naga Hills-Tuensang Area Act</option><option value="1368">Nagaland University Act</option><option value="96">Nagpur University Act,1957</option><option value="1369">Nalanda University Act</option><option value="3">NARCOTIC DRUGS AND PSYCHOTROPIC SUBSTANCES ACT</option><option value="1370">Narcotic Drugs and Psychotropic Substances (Amendment) Act, 1988</option><option value="1371">Narcotic Drugs and Psychotropic Substances (Amendment) Act, 2001</option><option value="1372">Narcotic Drugs and Psychotropic Substances (Amendment) Act, 2014</option><option value="1373">Narcotic Drugs And Psychotropic Substances (Authentication of Documents) Rules</option><option value="1374">Narcotic Drugs And Psychotropic Substances Rules</option><option value="1375">National Bank for Agriculture and Rural Development Act</option><option value="1376">National Bank for Agriculture And Rural Development (Amendment) Act</option><option value="1377">National Board for Wild Life Rules</option><option value="1378">National Cadet Corps Act</option><option value="1379">National Capital Region Planning Board Act</option><option value="1380">National Capital Territory of Delhi Laws (Special Provisions) Act</option><option value="1382">National Capital Territory of Delhi Laws(Special Provisions)Act</option><option value="1381">National Capital Territory of Delhi Laws (Special Provisions) Act, 2009</option><option value="1383">National Capital Territory of Delhi Laws (Special Provisions) Second Act</option><option value="1384">National Capital Territory of Delhi Laws(Special Provisions)Second Act</option><option value="1385">National Capital Territory of Delhi Laws (Special Provisions) Second (Amendment) Act</option><option value="1386">National Commission for Backward Classes Act</option><option value="1387">National Commission for Backward Classes (Repeal) Act</option><option value="1388">National Commission for Minorities Act</option><option value="1389">National Commission for Minority Educational Institutions Act</option><option value="1390">National Commission for Minority Educational Institutions (Annual Report) Rules</option><option value="1391">National Commission for Minority Educational Institutions (Annual Statement of Accounts) Rules</option><option value="1392">National Commission for Minority Educational Institutions (FInancial and Administrative Powers) Rules</option><option value="1393">National Commission for Minority Educational Institutions (Procedure and Appeal) Rules</option><option value="1394">National Commission for Minority Educational Institutions (Salaries, Allowances and Conditions of Service of Chariman and Other Members) Rules</option><option value="1395">National Commission for Safai Karamcharis Act</option><option value="1396">NATIONAL COMMISSION FOR WOMEN ACT</option><option value="1397">National Companies Law Tribunal (Procedure for reduction of share of Capital Company) Rules</option><option value="1398">National Company (Acquisition and Transfer of Undertakings) Act</option><option value="1399">National Company Law Appellate Tribunal Rule</option><option value="1400">National Company Law Appellate Tribunal (Salaries and Allowances and other terms and conditions of service of the Chairperson and other Members) Rules</option><option value="1401">National Company Law Tribunal Rules</option><option value="1402">National Co-operative Development Corporation Act</option><option value="1403">National Council for Teacher Education Act</option><option value="1404">National Dairy Development Board Act</option><option value="1405">National Disaster Management Authority Group C posts Recruitment Rules</option><option value="1406">National Disaster Response Force (NDRF) Rules</option><option value="1407">National Environmental Tribunal Act</option><option value="1408">National Environment Appellate Authority Act</option><option value="1409">National Food Security Act</option><option value="1410">National Fund for Control of Drug Abuse Rules</option><option value="1411">National Green Tribunal Act</option><option value="1412">National Green Tribunal (Financial and Administrative Powers) Rules</option><option value="1413">National Green Tribunal (Manner of Appointment of Judicial and Expert Members Salaries Allowances and other Terms and Conditions of Service of Chairperson and other Members and Procedure for Inquiry) Rules</option><option value="1414">National Green Tribunal (Practices and Procedure) Rules</option><option value="1415">National Green Tribunal (Recruitment Salaries and other Terms and Conditions of Service of Officers and other Employees) Rules</option><option value="1416">National Highways Act</option><option value="1417">National Highways Authority of India Act</option><option value="1418">National Highways Fee (Determination of Rates and Collection) Rules</option><option value="1419">National Highways Rules</option><option value="1420">National Highways Tribunal (Procedure for appointment as Presiding Officer of the Tribunal) Rules</option><option value="1421">National Highways Tribunal (Procedure for investigation of incapacity of Presiding Officer) Rules</option><option value="1422">National Highways Tribunal (Procedure) Rules</option><option value="1423">National Housing Bank Act</option><option value="1424">National Institute of Design Act</option><option value="1425">National Institute of Fashion Technology Act,</option><option value="1426">National Institute of Mental Health and Neuro-Sciences, Bangalore Act</option><option value="1427">National Institute of Pharmaceutical Education and Research Act</option><option value="1428">National Institutes of Technology Act.</option><option value="1429">National Investigation Agency Act</option><option value="1430">National Judicial Appointments Commission Act, 2014</option><option value="1431">National Judicial Appointments CommissionAct, 2014</option><option value="1432">National Jute Board Act</option><option value="1433">National Legal Services Authority (Free and Competent Legal Services) Regulations</option><option value="1434">National Legal Services Authority (Legal Aid Clinics) Regulations</option><option value="1435">National Legal Services Authority (Lok Adalats) Regulations</option><option value="1436">National Legal Services Authority Rules</option><option value="1437">National Library of India Act</option><option value="1438">National Oil Seeds and Vegetable Oils Development Board Act</option><option value="1439">National rmal Power Corporation Limited, the National Hydro-Electric Power Corporation Limited an</option><option value="1440">National Rural Employment Guarantee Act</option><option value="1441">National Rural Employment Guarantee Act(Central Council)Rules, 2006</option><option value="1442">National Rural Employment Guarantee (Extension to Jammu And Kashmir) Act</option><option value="1443">National Savings Certificates (IX-Issue) Rules</option><option value="1444">National Savings Certificates (Viii Issue) Rules</option><option value="1445">National Savings Certificates (Vii Issue) Rules</option><option value="1446">National Savings Certificates (Vi Issue) Rules</option><option value="1448">National Savings Scheme Rules</option><option value="1447">National Savings Scheme Rules</option><option value="1449">NATIONAL SECURITY ACT</option><option value="1450">National Security Guard Act</option><option value="1451">National Security Guard Rules</option><option value="1452">National Service Act</option><option value="1453">National Sports University Act</option><option value="1454">National Tax Tribunal Act</option><option value="1455">National Test House, Head Quarters and Regional Offices, Multi Tasking Staff (Technical) Group 'C' Post Recruitment Rules</option><option value="1456">National Test House, Multi Tasking Staff (Technical) Recruitment Rules</option><option value="1457">National Trust for Welfare of Persons with Autism, Cerebral Palsy, Mental Retardation and Multiple D</option><option value="1458">National Waterway (Allahabad-Haldia Stretch of the Ganga-Bhagirathi Hooghly River) Act</option><option value="1459">National Waterway (Kakinada-Puducherry Stretch of Canals and the Kaluvelly Tank, Bhadrachalam-Rajahm</option><option value="1460">National Waterway (Kollam-Kottapuram Stretch of West Coast Canal and Champakara and Udyogmandal Cana</option><option value="1461">National Waterways Act, 2016</option><option value="1462">National Waterway (Sadiya-Dhubri Stretch of the Brahmaputra River) Act</option><option value="1463">National Waterway (Talcher-Dhamra Stretch Of Rivers, Geonkhali-Charbatia Stretch of East Coast Canal</option><option value="1464">Naval and Aircraft Prize Act</option><option value="1465">Navy Act</option><option value="8">NEGOTIABLE INSTRUMENTS ACT</option><option value="1466">Negotiable Instruments (Amendment) Act</option><option value="1467">New Delhi Municipal Council Act</option><option value="1468">Newspaper (Price and Page) Act</option><option value="1469">Newspaper (Price and Page Continuance) Act</option><option value="1470">NEWSPAPERS (INCITEMENT TO OFFENCES) ACT</option><option value="1471">Neyveli Lignite Corporation Limited (Acquisition and Transfer of Power Transmission System) Act</option><option value="1472">Nidhi Rules</option><option value="1473">Niger Seeds Grading and Marking Rules</option><option value="197">Noise Pollution Regulation and Control Act, 2000</option><option value="1474">North-Eastern Areas (Reorganisation) Act</option><option value="1475">North-Eastern Council Act</option><option value="1476">North-Eastern Hill University Act</option><option value="1477">Northern India Canal and Drainage Act</option><option value="1478">Northern India Ferries Act</option><option value="1479">North-Western Provinces Village and Road Police Act</option><option value="1480">NOTARIES ACT</option><option value="1481">Notice of Short-Export Rules</option><option value="1482">Notification of Library and Information Cadre Recruitment Rules</option><option value="1483">Notified Goods (Prevention of Illegal Import) Rules</option><option value="1484">Nutmeg Grading and Marking Rules</option><option value="1485">OATHS ACT</option><option value="1486">Obstructions in Fairways Act</option><option value="1487">Office Of Public Trustee (Destruction of Records) Rules</option><option value="1488">Officers of Parliament (Advances for Motor-Cars) Rules</option><option value="1489">Officers of Parliament (Medical Facilities) Rules</option><option value="1490">Officers of Parliament (Pension, Housing and Medical Facilities to the Spouse of the Speaker of the House of the people, Dying while Holding Such Office) Rules</option><option value="1491">Officers of Parliament (Rent for Residence Retained by Family after Death) Rules</option><option value="1492">Officers of Parliament (Travelling and Daily Allowances) Rules</option><option value="1493">Offices Of Company Law Board Benches (Destruction Of Records) Rules</option><option value="1494">Offices Of Regional Directors (Destruction Of Records) Rules</option><option value="1495">Official Languages Act</option><option value="1496">Official Secrets Act</option><option value="1497">Official Trustees Act</option><option value="1498">Offshore Areas Mineral Concession Rules, 2006</option><option value="1499">Offshore Areas Mineral (Development and Regulation) Act</option><option value="1500">Oil and Natural Gas Commission (Transfer of Undertaking and Repeal) Act</option><option value="1501">Oil Fields (Regulation and Development) Act</option><option value="1502">Oil Industry (Development) Act</option><option value="1503">Opium and Revenue Laws (Extension of Application) Act</option><option value="1505">Organic Agricultural Produce Grading and Marking Rule</option><option value="1504">Organic Agricultural Produce Grading and Marking Rules</option><option value="1506">Oriental Gas Company Act</option><option value="1507">Oriental Gas Company Amendment Act</option><option value="1508">Orissa (Alteration of Name)Act</option><option value="1509">Orissa Weights and Measures (Delhi Repeal) Act</option><option value="1510">Orphanages and Other Charitable Homes (Supervision and Control) Act</option><option value="1511">Oudh Estates Act</option><option value="1512">Oudh Laws Act</option><option value="1513">Oudh Sub-settlement Act</option><option value="1514">Oudh Taluqdars' Relief Act</option><option value="1515">Oudh Wasikas Act</option><option value="1516">Ozone Depleting Substances (Regulation and control) Rule</option><option value="1517">Palmyra Fibre Grading and Marking Rules</option><option value="2130">Pandharpur Temples Act</option><option value="1518">Pan Masala Packing Machines (Capacity Determination And Collection of Duty) Rules</option><option value="1519">papian Grading and Marking Rules</option><option value="1520">Parel Investments and Trading Private Limited and Domestic Gas Private Limited (Taking over of Manag</option><option value="1521">Parliamentary Proceedings (Protection of Publication) Act</option><option value="1522">Parliamentary Proceedings (Protection of Publication) Repeal Act</option><option value="1523">Parliament (Prevention of Disqualification) Act</option><option value="55">Parsi Marriage Act</option><option value="1524">Part B States (Laws) Act</option><option value="1525">Part B States Marriages Validating Act</option><option value="1526">Part C States Miscellaneous Laws (Repealing) Act</option><option value="1527">Partition Act</option><option value="1528">Partition of Revenue-paying Estates</option><option value="1529">Passengers.(Change of Names) Rules</option><option value="173">Passport Act 1950</option><option value="1530">Passport (Entry into India) Act</option><option value="1531">Passport (Entry into India) Rules</option><option value="1532">Passports Rules</option><option value="48">Patent Act</option><option value="1533">Patents Rules 2003</option><option value="165">Payment and Settlement Systems Act, 2007</option><option value="1534">Payment of Bonus Rules</option><option value="147">Payment Of Gratuity Act 1972</option><option value="1535">Payment of Gratuity (Amendment) Act</option><option value="1536">Payment of Gratuity (Amendment) Act, 2018</option><option value="1537">Payment of Gratuity (Central) Rules</option><option value="102">Payment Of Wages Act, 1936</option><option value="1538">Payment of Wages Rules</option><option value="1539">Pension Fund Regulatory and Development Authority Act</option><option value="1540">Pensions Act</option><option value="1541">Performing Animals (Registration) Rules</option><option value="1542">Performing Animals Rules</option><option value="1543">Permanent Lok Adalat (Other Terms and Conditions of Appointment of Chairman and Persons) Rules</option><option value="1544">Personal Injuries (Compensation Insurance) Act</option><option value="1545">Personal Injuries (Emergency Provision) Act</option><option value="1546">Persons With Disabilities (Equal Opportunities, Protection of Rights and Full Participation) Act</option><option value="1547">Persons with Disabilities (Equal Opportunities Protection of Rights and Full Participation) Rules</option><option value="1548">Petrolem and Natural Gas (Saftey in Offshore Operations) Rules</option><option value="1549">Petroleum Act</option><option value="1550">Petroleum and Minerals Pipelines (Acquisition of Right of User in Land) Act</option><option value="1551">Petroleum and Natural Gas Regulatory Board, Act</option><option value="1552">Petroleum and Natural Gas Regulatory Board (Imbalance Management Services) Regulations</option><option value="1553">Petroleum and Natural Gas Rule</option><option value="1554">Petroleum and Natural Gas Rules</option><option value="1555">Petroleum and Natural Gas Rules, 1934</option><option value="1556">Petroleum Rules</option><option value="1557">Pharmacy Act</option><option value="1558">PLACES OF WORSHIP (SPECIAL PROVISIONS) ACT</option><option value="1559">Plantations Labour Act</option><option value="1560">Poisons Act</option><option value="1562">POLICE ACT, 1861</option><option value="1561">Police Act, 1949</option><option value="1563">Police, Agra</option><option value="1564">Police Forces (Restriction of Rights) Act</option><option value="1565">Police (Incitement to Disaffection) Act</option><option value="1566">Pondicherry (Administration) Act</option><option value="1567">Pondicherry (Alteration of Name) Act</option><option value="1568">Pondicherry (Extension of Laws) Act</option><option value="1569">Pondicherry University Act</option><option value="1570">Poppy Seed Grading and Marking Rules</option><option value="1571">Porahat Estate Act</option><option value="1572">Post-Graduate Institute of Medical Education and Research, Chandigarh, Act</option><option value="1573">Post Office Cash Certificates Act</option><option value="1574">Powers-of-Attorney Act</option><option value="1575">Prasar Bharati (Broadcasting Corporation of India) Act</option><option value="141">PRE-CONCEPTION AND PRE-NATAL DIAGNOSTIC TECHNIQUES (PROHIBITION OF SEX SELECTION) ACT</option><option value="132">PRE-CONCEPTION AND PRE-NATAL DIAGNOSTIC TECHNIQUES (PROHIBITION OF SEX SELECTION) ACT</option><option value="1576">Pre-conception and Pre-natal Diagnostic Techniques (Prohibition of Sex Selection) Rules</option><option value="1577">Preference Shares (Regulation of Dividends) Act</option><option value="1578">Pre-natal Diagnostic Techniques (Regulation and Prevention of Misuse)(Advisory Committee) Rules</option><option value="1579">PRESIDENCY MAGISTRATES (COURT-FEES) ACT</option><option value="1580">PRESIDENCY SMALL CAUSE COURTS ACT</option><option value="1581">Presidency-towns Insolvency Act</option><option value="1582">President (Discharge of Functions) Act</option><option value="1583">Presidential and Vice-Presidential Elections Act</option><option value="1584">President's Emoluments and Pension Act</option><option value="1585">Presidents Pensions Rules</option><option value="1586">PRESS ACT</option><option value="1587">Press and Registration of Books Act</option><option value="1588">Press Council Act</option><option value="1589">Prevention and Control of Infectious and Contagious Diseases in Animals Act</option><option value="1590">Prevention of Blackmarketing and Maintenance of Supplies of Essential Commodities Act</option><option value="4">Prevention of Corruption Act</option><option value="1591">Prevention of Cruelty (Capture of Animals) Rules</option><option value="103">Prevention Of Cruelty to Animal Act</option><option value="1592">Prevention of Cruelty to Animals (Application of Fines) Rules</option><option value="1593">Prevention of Cruelty to Animals (Establishment and Regulation of Societies for Prevention of Cruelty to Animals) Rules</option><option value="1594">Prevention of Cruelty to Animals (Licensing of Farriers) Rules</option><option value="1595">Prevention of Cruelty to Animals (Registration of Cattle Premises) Rules</option><option value="1596">Prevention of Cruelty to Animals (Slaughter House) Rules</option><option value="1597">Prevention of Cruelty to Animals (Transport of Animals on Foot) Rules</option><option value="1598">Prevention of Cruelty to Drought and Pack Animals Rules</option><option value="80">PREVENTION OF DAMAGE TO PUBLIC PROPERTY ACT</option><option value="91">PREVENTION OF DAMAGE TO PUBLIC PROPERTY ACT</option><option value="9">Prevention of Food Adultration Act</option><option value="81">PREVENTION OF ILLICIT TRAFFIC IN NARCOTIC DRUGS AND PSYCHOTROPIC SUBSTANCES ACT</option><option value="93">Prevention Of Insult to National Honour Act,1971</option><option value="1599">Prevention of Money Laundering Act</option><option value="1600">Prevention of Seditious Meetings Act</option><option value="1601">PREVENTION OF TERRORISM ACT</option><option value="1602">PREVENTION OF TERRORISM (REPEAL) ACT</option><option value="1603">PRISONERS ACT</option><option value="1604">Prisoners (Attendance in Courts) Act</option><option value="1605">PRISONS ACT</option><option value="1606">Private Limited Company and Unlisted Public Limited Copmpany (Buy Back of Securities) Rules</option><option value="199">Private Security Agencies Regulation Act, 2005</option><option value="95">Prize Chits and Money Circulation Scheme (Banning) Act</option><option value="1607">Prize Competitions Act</option><option value="1608">Probation of Offenders Act</option><option value="1609">Produce Cess Act</option><option value="1610">Produce Cess Laws (Abolition) Act</option><option value="1611">Producer Companies (General Reserves) Rules</option><option value="1612">Professions Tax Limitation (Amendment and Validation) Act</option><option value="1613">Prohibition of Benami Property Transactions Rules</option><option value="1614">PROHIBITION OF CHILD MARRIAGE ACT</option><option value="1615">Prohibition of Employment as Manual Scavengers and ir Rehabilitation Act</option><option value="1616">Prohibition of Employment as Manual Scavengers and their Rehabilitation Rules</option><option value="1617">Prohibition of Simultaneous Membership Rules</option><option value="1618">Protection of Children from Sexual Offences Rules</option><option value="1619">Protection of Civil Right Rules</option><option value="99">Protection Of Civil Rights Act</option><option value="1620">Protection of Civil Rights( PCR) Rules</option><option value="1621">PROTECTION OF HUMAN RIGHTS ACT</option><option value="1622">Protection of Plant Varieties and Farmers Right Act</option><option value="154">Protection of Women from Domestic Violence Act</option><option value="1623">Protection of Women from Domestic Violence Rules</option><option value="1624">PROVIDENT FUNDS ACT</option><option value="1625">PROVINCIAL INSOLVENCY ACT</option><option value="61">PROVINCIAL SMALL CAUSE COURTS ACT</option><option value="1626">Provisional Collection of Taxes Act</option><option value="1627">Provisions of the Panchayats (Extension to the Scheduled Areas) Act</option><option value="1628">Public Accountants' Defaults Act</option><option value="1629">Publication of Daily Lists of Imports and Exports Rules</option><option value="1630">Public Companies (Terms of Issue of Debentures and Raising of Loans with Option to Convert such Debentures or Loans into Shares) Rules</option><option value="1631">Public Debt Act</option><option value="1632">Public Debt Rules</option><option value="1633">Public Employment (Requirement as to Residence) Act</option><option value="1634">Public Financial Institutions (Obligation as to Fidelity and Secrecy) Act</option><option value="1635">PUBLIC GAMBLING ACT</option><option value="1636">Public Liability Insurance Act</option><option value="1637">Public Liability Insurance Rules</option><option value="157">Public Premises (Eviction of Unauthorised Occupants) Act</option><option value="20">Public Premises (Eviction of Unauthorised Occupants) Act</option><option value="73">Public Property Detecement Act</option><option value="1638">PUBLIC PROVIDENT FUND ACT</option><option value="1639">Public Provident Fund Scheme</option><option value="1640">Public Records Act</option><option value="1641">Public Sector Iron and Steel Companies (Restructuring) and Miscellaneous Provisions Act</option><option value="1642">PUBLIC SERVANTS (INQUIRIES) ACT</option><option value="1643">Public Suits Validation Act</option><option value="37">Public Trusts Act (Maharashtra)</option><option value="1644">Public Wakfs (Extension of Limitation) Act</option><option value="1645">Pulses Grading and Marking Rules</option><option value="1646">Punjab District Boards Act</option><option value="1647">Punjab Disturbed Areas Act</option><option value="1648">Punjab Excise (Delhi Amendment) Act</option><option value="1649">Punjab Gram Panchayat, Samities and Zilla Parishad (Chandigarh Repeal) Act</option><option value="1650">Punjab Land-revenue Act</option><option value="1651">Punjab Laws Act</option><option value="1652">Punjab Legislative Council (Abolition) Act</option><option value="1653">Punjab Municipal Corporation Law (Extension to Chandigarh) Act</option><option value="1654">Punjab Reorganisation Act</option><option value="1655">Punjab State Legislature (Delegation of Powers) Act</option><option value="1656">Punjab Tenancy Act</option><option value="1657">Puwad Seeds Grading and Marking Rules</option><option value="1658">Railway Accidents Untoward Incidents (Compensation) Rules</option><option value="153">Railway Act, 1989</option><option value="1659">Railway Claims Tribunal Act</option><option value="1660">Railway Companies (Emergency Provisions) Act</option><option value="1661">Railway (Disposal of Goods not Removed from Notified Railway Stations) Rules</option><option value="1662">Railway (Notices of and Inquiries into Accidents) Rules</option><option value="1663">Railway Passengers (Cancellation of Ticket and Refund of Fare) Rules</option><option value="1664">Railway Passengers (Manner of Investigation of Untoward Incidents) Rules</option><option value="42">RAILWAY PROPERTY (UNLAWFUL POSSESSION) ACT</option><option value="152">Railway Property(Unlawful Possession) Act 1966</option><option value="1665">Railway Protection Force Act</option><option value="1666">Railway Protection Force (Amendment) Act</option><option value="1667">Railway Protection Force Regulations</option><option value="1668">Railway Protection Force Rules</option><option value="1669">Railway Rates Tribunal (Salaries and Allowances and Conditions of Service of Chairman and Members), Amendment Rules</option><option value="1670">Railways Employment of Members of the Armed Forces Act</option><option value="1671">Railway Servants (Discipline and Appeal) Rules</option><option value="1672">Railway Servant's Pass Rule</option><option value="1673">Railway Services Conduct Rules</option><option value="1674">Railway Services (Liberalised Leave) Rules</option><option value="1675">Railway Services Pension Rules</option><option value="1676">Railways (Extent of Monetary Liability and Prescription of Percentage Charge) Rules</option><option value="1677">Railways (Local Authorities' Taxation) Act</option><option value="1678">Railways (Manner of Delivery of Consignments and Sale Proceeds in the Absence of Railways Rules</option><option value="1679">Railways (Prescription of infectious and Contagious Diseases for Animals) Rules</option><option value="1680">Railways (Prescription of Offensive Goods) Rules</option><option value="1681">Railways (Punitive Charges for Overloading of Wagon) Rules</option><option value="1682">Raipur and Khattra Laws Act</option><option value="1683">Rajasthan and Madhya Pradesh (Transfer of Territories) Act</option><option value="1684">Rajghat Samadhi Act</option><option value="1685">Rajiv Gandhi Institute of Petroleum Technology Act</option><option value="1686">Rajiv Gandhi National Aviation University Act</option><option value="1687">Rajiv Gandhi National Institutes of Youth Development Act</option><option value="1688">Rajiv Gandhi University Act</option><option value="1689">Rampur Raza Library Act</option><option value="1690">Rani Lakshmi Bai Central Agricultural University Act</option><option value="1691">Raw Cashewnut Grading and Marking Rules</option><option value="1692">Raw Meat (Chilled or Frozen) Grading and Marking Rules</option><option value="1693">Real Estate (Regulation and Development) Act, 2016</option><option value="1694">Reciprocity Act</option><option value="1695">Recognition of Zoo Rule</option><option value="1696">Recognition of Zoo Rules</option><option value="1697">RECOVERY OF DEBTS DUE TO BANKS AND FINANCIAL INSTITUTIONS ACT</option><option value="1698">Recruitment Rules 2016 of Central Passport Organisation for Group 'A' posts</option><option value="1699">Recycled Plastics Manufacture and Usage Rule</option><option value="1700">Red Cross Society (Allocation of Property) Act</option><option value="1701">Re-Export of Imported Goods (Drawback of Custom duties) Rules</option><option value="1702">Reformatory Schools Act</option><option value="19">Regional and town Planning Act (Maharashtra)</option><option value="1703">Regional Centre of Biotechnology Act</option><option value="1704">Regional Rural Banks Act</option><option value="1705">Registration and Licensing of Industrial Undertaking Rules</option><option value="1706">Registration and Licensing of Industrial Undertakings Rules</option><option value="175">REGISTRATION OF BIRTHS AND DEATHS ACT</option><option value="1707">REGISTRATION OF FOREIGNERS ACT</option><option value="1708">Registration of Foreiners Rules</option><option value="1709">Registration of Newspapers(Central) Rules</option><option value="1710">Rehabilitation Council of India Act</option><option value="1711">Rehabilitation Finance Administration Act</option><option value="1712">Religious Endowments Act</option><option value="1713">Religious Institutions (Prevention of Misuse) Act</option><option value="1714">Religious Societies Act</option><option value="1715">Remittances of Foreign Exchange and Investment in Foreign Exchange Bonds (Immunities and Exemptions)</option><option value="1716">Rent Recovery Act</option><option value="1717">Repatriation of Prisoners Act</option><option value="1718">Repatriation of Prisoners Rules</option><option value="1719">Repealing and Amending (Second) Act</option><option value="77">Representation of the People Act</option><option value="88">Representation of the People Act</option><option value="144">Representation of the People Act</option><option value="1720">Representation of the People (Amendment) Act</option><option value="1721">Representation of the People (Conduct of Elections and Election Petitions) Rules</option><option value="1722">Representation of the People (Miscellaneous Provisions) Act</option><option value="1723">Requisitioned Land (Apportionment of Compensation) Act</option><option value="1724">REQUISITIONING AND ACQUISITION OF IMMOVABLE PROPERTY ACT</option><option value="1725">Requisitioning and Acquisition of Immovable Property (Amendment) Act</option><option value="1726">Research and Development Cess Act</option><option value="1727">Reserve and Auxiliary Air Forces Act</option><option value="1728">Reserve Bank of India Act</option><option value="1729">Reserve Bank of India (Amendment and Miscellaneous Provisions) Act</option><option value="1730">Reserve Bank (Transfer of Public Ownership) Act</option><option value="1731">Resettlement of Displaced Persons (Land Acquisition) Act</option><option value="1732">Revenue, Bombay</option><option value="1733">Revenue Commissioners, Bombay</option><option value="1734">Revenue Recovery Act</option><option value="1735">Reverse Mortgage Scheme</option><option value="1736">Rice Grading and Marking Rules</option><option value="1737">Richardson and Cruddas Limited (Acquisition and Transfer of Undertakings) Act</option><option value="1738">Right of Children to Free and Compulsory Education Act</option><option value="1739">Right of Children to Free and Compulsory Education (Amendment) Act</option><option value="1740">Right of Persons with Disabilities Act</option><option value="1741">Right to Fair Compensation and Transparency in Land Acquisition Rehabilitation and Resettlement Act</option><option value="1742">Right to Fair Compensation and Transparency in Land Acquisition, Rehabilitation and Resettlement (Compensation, Rehabilitation &amp; Resettlement and Development Plan) Rules, 2015</option><option value="1743">Right to Fair Compensation and Transparency in Land Acquisition, Rehabilitation and Resettlement (Social Impact Assessment and Consent) Rules, 2014</option><option value="1744">RIGHT TO INFORMATION ACT</option><option value="1745">River Boards Act</option><option value="1746">Road Transport Corporations Act</option><option value="1747">Roasted Bengal Gram (Split) Grading and Marking Rules</option><option value="1748">Rubber Act</option><option value="1749">Rules for determining the origin of products eligible for the preferential tariff concessions pursuant to Comprehensive Economic Cooperation Agreement between Republic of India and Republic of Singapore</option><option value="1750">Rules of Business of the Government of Pondicherry</option><option value="1751">Rules of Determination of Origin of goods under the Agreement on South Asian Free Trade Area (SAFTA)</option><option value="1752">Rules of Determination of Origin of Goods under the Preferential Trading Agreement between the Republic of India and the Republic of Chile Rules</option><option value="1753">SAARC Convention (Suppression of Terrorism) Act</option><option value="1754">Safflower Seeds Grading and Marking Rules</option><option value="1755">saffron Grading and Marking Rules</option><option value="1756">Salaries and Allowances of Ministers Act</option><option value="1757">Salaries and Allowances of Officers of Parliament Act</option><option value="1758">Salar Jung Museum Act</option><option value="1759">Salary, Allowances and Pension of Members of Parliament Act</option><option value="1760">Salary and Allowances of Leaders of Opposition in Parliament Act</option><option value="1761">SALE OF GOODS ACT</option><option value="1762">Sales of Land for Revenue Arrears</option><option value="1763">Sales Promotion Employees (Conditions of Service) Act</option><option value="1764">Sales Tax Laws Validation Act</option><option value="1765">Sal Seeds Grading and Marking Rules</option><option value="1766">Salt Cess Act</option><option value="1767">Salt Cess Rules</option><option value="1768">Sannhemp Grading and Marking Rules</option><option value="1769">Sarais Act</option><option value="1770">Sashastra Seema Bal Act</option><option value="1771">Sashastra Seema Bal Rules</option><option value="1772">Sattu Grading and Marking Rules</option><option value="1774">Scheduled Areas (Assimilation of Laws) Act</option><option value="1773">Scheduled Areas (Assimilation of Laws) Act. 1953</option><option value="1776">Scheduled Castes and Scheduled Tribes Orders (Amendment) Act</option><option value="1775">Scheduled Castes and Scheduled Tribes Orders (Amendment) Act, 1976</option><option value="1777">Scheduled Castes and Scheduled Tribes (Prevention of Atrocities) Rules</option><option value="33">Scheduled Castes and the Scheduled Tribes (Prevention of Atrocities) Act</option><option value="1778">Scheduled Castes and the Scheduled Tribes (Prevention of Atrocities) Amendment Act</option><option value="1779">Scheduled Casts and Scheduled Tribes (Prevention of Attrocities) Act</option><option value="1780">Scheduled Industries (Submission of Production Returns) Rules</option><option value="1781">Scheduled Securities (Hyderabad) Act</option><option value="1782">Scheduled Tribes and other Traditional Forest Dwellers (Recognition of Forest Rights) Act</option><option value="1783">Scheduled Tribes and Other Traditional Forest Dwellers (Recognition of Forest Rights) Rules</option><option value="1784">Scheme for Bulk Filing of Returns by Salaried Employees</option><option value="1785">Scheme for Filing of Returns by Salaried Employees Through Employer</option><option value="1786">Scheme for Furnishing of Paper Returns of Tax Deducted at Source</option><option value="1787">Scheme to Develop, Operate &amp; Maintain Special Economic Zones under Section 80-IA of Income-Tax Act Read with Rule 18C(2) of Income-Tax Rules</option><option value="1788">School of Planning and Architecture Act, 2014</option><option value="1789">Science and Engineering Research Board Act</option><option value="1790">Seamen's Provident Fund Act</option><option value="1791">Seaward Artillery Practice Act</option><option value="1792">SEBI (Alternative Investment Funds) Regulations</option><option value="1793">SEBI (Annual Report) Rules, 1994</option><option value="1794">SEBI (Appeal to Central Government) Rules, 1993</option><option value="1795">SEBI (Bankers to an Issue) Regulations</option><option value="1796">SEBI (Buy Back Of Securities) Regulations</option><option value="1797">SEBI (Central Database Of Market Participants) Regulations</option><option value="1798">SEBI (Certification of Associated Persons in the Securities Markets) Regulations</option><option value="1799">SEBI (Collective Investment Schemes) Regulations</option><option value="1800">SEBI (Credit Rating Agencies) Regulations</option><option value="1801">SEBI (Custodian Of Securities) Regulations</option><option value="1802">SEBI (Debenture Trustee) Regulations</option><option value="1803">SEBI (Delisting of Equity Shares) Regulations</option><option value="1804">SEBI (Depositories and Participants) Regulations</option><option value="1805">SEBI (Employees' Service) Regulations</option><option value="1806">SEBI (Employee Stock Option Scheme and Employee Stock Purchase Scheme) Guidelines</option><option value="1807">SEBI (Foreign Portfolio Investors) Regulations,</option><option value="1808">SEBI (Foreign Venture Capital Investors) Regulations</option><option value="1809">SEBI (Form of Annual Statement of Accounts and Records) Rules, 1994</option><option value="1810">SEBI (Infrastructure Investment Trusts) Regulations</option><option value="1811">SEBI (Intermediaries) Regulations</option><option value="1812">SEBI (Investment Advisers) Regulations</option><option value="1813">SEBI (Investor Protection and Education Fund) Regulations</option><option value="1814">SEBI (Issue and Listing of Debt Securities by Municipalities) Regulations</option><option value="1815">SEBI (Issue and Listing of Debt Securities)Regulations</option><option value="1816">SEBI (Issue And Listing Of Non-Convertible Redeemable Preference Shares) Regulations,</option><option value="1817">SEBI (Issue of Capital and Disclosure Requirements) Regulations</option><option value="1818">SEBI (Issue of Sweat Equity) Regulations, 2002</option><option value="1819">SEBI {KYC (Know Your Client) Registration Agency} Regulations</option><option value="1820">SEBI (Listing Obligations and Disclosure Requirements) Regulations,</option><option value="1821">SEBI (Merchant Bankers) Regulations</option><option value="1822">SEBI (Mutual Funds) Regulations</option><option value="1823">SEBI (Ombudsman) Regulations</option><option value="1824">SEBI (Portfolio Managers) Regulations</option><option value="1825">SEBI (Procedure for Board Meetings) Regulations, 2001</option><option value="1826">SEBI (Procedure for Holding Inquiry and Imposing Penalties by Adjudicating Officer) Rules, 1995</option><option value="1827">SEBI (Procedure for Search and Seizure) Repeal Regulations, 2015</option><option value="1828">SEBI (Prohibition of Fraudulent and Unfair Trade Practices relating to Securities Market) Regulations</option><option value="1829">SEBI (Prohibition of Insider Trading) Regulations, 2015</option><option value="1830">SEBI (Public Offer and Listing of Securitised Debt Instruments) Regulations</option><option value="1831">SEBI (Real Estate Investment Trusts) Regulations</option><option value="1832">SEBI (Registrars to an Issue and Share Transfer Agents) Regulations</option><option value="1833">SEBI (Regulatory Fee on Stock Exchanges) Regulations</option><option value="1834">SEBI (Research Analysts) Regulations</option><option value="1835">SEBI (Self Regulatory Organisations) Regulations</option><option value="1836">SEBI (Settlement of Administrative and Civil Proceedings) Regulations</option><option value="1837">SEBI (Share Based Employee Benefits) Regulations</option><option value="1838">SEBI (Stock Brokers and Sub-Brokers) Regulations</option><option value="1839">SEBI (Substantial Acquisition of Shares and Takeovers) Regulations</option><option value="1840">SEBI (Terms and Conditions of Service of Chairman and Members) Rules, 1992</option><option value="1841">SEBI (Underwriters) Regulations</option><option value="1842">Securities and Exchange Board of India Act</option><option value="1843">Securities Appellate Tribunal (Procedure) Rules, 2000</option><option value="1844">Securities Appellate Tribunal (Salaries, Allowances and other Terms and Conditions of Presiding Officer and other Members) Rules, 2003</option><option value="1845">Securities Appellate Tribunal (Salaries and Allowances and other Conditions of Service of the Officers and Employees) Rules, 1997</option><option value="1846">Securities Contracts (Reference to the Company Law Board) Rules, 1986</option><option value="1847">Securities Contracts (Regulation) Act</option><option value="1848">Securities Contracts (Regulations) (Appeal to Securities Appellate Tribunal) Rules, 2000</option><option value="1849">Securities Contracts (Regulations) (Procedure for Holding Inquiry and Imposing Penalties by Adjudicating Officer) Rules, 2005</option><option value="1850">Securities Contracts (Regulations) Rules, 1957</option><option value="1851">Securities Contracts (Regulation) (Stock Exchanges and Clearing Corporations) Regulations</option><option value="1852">Securities Laws (Amendment) Act, 2014</option><option value="1853">Securities Lending Scheme</option><option value="1854">Securities Transaction Tax Rules</option><option value="1855">Securities Transaction Tax Rules, 2004</option><option value="214">SECURITISATION AND RECONSTRUCTION OF FINANCIAL ASSETS AND ENFORCEMENT OF SECURITY INTEREST ACT</option><option value="1856">Seedless Tamarind Grading and Marking Rules</option><option value="1857">Seed Potato Grading and Marking Rules</option><option value="89">Seeds Act</option><option value="1858">Seeds Rules</option><option value="1859">Semiconductor Integrated Circuits Layout-Design Act</option><option value="1860">SENIOR CITIZENS SAVINGS SCHEME RULES</option><option value="1861">Senna Leaves and Pods Grading and Marking Rules</option><option value="1862">Service Tax Voluntary Compliance Encouragement Rules</option><option value="1863">Sesame seeds Grading and Marking Rules</option><option value="1864">Sexual Harassment of Women at Workplace (Prevention, Prohibition and Redressal) Rules</option><option value="1865">Sexual Harassment of Women at Workplace (Prevention, Protection and Redressal) Act</option><option value="1866">Sheekakai Grading and Marking Rules</option><option value="1867">Sheriff of Calcutta (Power of Custody) Act</option><option value="1868">Sheriffs' Fees Act</option><option value="1869">Shillong (Rifle Range and Umlong) Cantonments Assimilation of Laws Act</option><option value="1870">Shipping Development Fund Committee (Abolition) Act</option><option value="1871">Shore Nuisances (Bombay and Kolaba) Act</option><option value="1872">SICK INDUSTRIAL COMPANIES (SPECIAL PROVISIONS) ACT</option><option value="1873">Sick Industrial Companies (Special Provisions) Repeal Act</option><option value="1874">Sick Textile Undertakings (Nationalisation) Act</option><option value="1875">Sick Textile Undertakings (Nationalisation) Rules</option><option value="1876">Sick Textile Undertakings (Taking Over of Management) Act</option><option value="1877">Sikh Gurdwaras (Supplementary) Act</option><option value="1878">Sikkim University Act</option><option value="1879">Sir Dinshaw Maneckjee Petit</option><option value="1880">Sir Jamsetjee Jejeebhoy Baronetcy Act</option><option value="1881">Site Restoration Fund Scheme</option><option value="1882">Skins Grading and Marking Rules</option><option value="1883">SLUM AREAS (IMPROVEMENT AND CLEARANCE) ACT</option><option value="1884">Small Coins (Offences) Act</option><option value="1885">Small Industries Development Bank of India Act</option><option value="1886">Smith, Stainstreet and Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="1887">Smugglers and Foreign Exchange Manipulators (Forfeiture of Property) Act</option><option value="1888">Social Security Certificates Rules</option><option value="1889">SOCIETIES REGISTRATION ACT</option><option value="1890">Sonthal Parganas Act</option><option value="1891">Sonthal Parganas Act, 1857</option><option value="1892">South Asian University Act</option><option value="1893">Soyabeans Grading and Marking Rules</option><option value="1894">Special Court (Trial of Offences Relating to Transactions in Securities) Act</option><option value="1895">Special Criminal Courts (Jurisdiction) Act</option><option value="1896">Special Economic Zone Rules</option><option value="1897">SPECIAL ECONOMIC ZONES ACT</option><option value="124">Special Marriage Act</option><option value="1898">Special Protection Group Act</option><option value="109">Specific Relief Act</option><option value="1899">Specific Relief (Amendment) Act</option><option value="1900">Specified Goods (Prevention of Illegal Export) Rules</option><option value="1901">Spices Board Act</option><option value="1902">Spices Grading and Marking Rules</option><option value="1903">Spirituous Preparation (Inter-State Trade and Commerce) Control Act</option><option value="1904">Spirituous Preparations (Inter-State Trade and Commerce) Control (Repeal) Act</option><option value="1905">Sports Broadcasting Signals (Mandatory Sharing with Prasar Bharti) Act</option><option value="1906">Sree Chitra Tirunal Institute for Medical Sciences and Technology, Trivandrum, Act</option><option value="1907">Stage-Carriages Act</option><option value="13">Standards of Weight and Measurement (ENF) Act</option><option value="1908">Standards of Weights and Measures Act</option><option value="1909">Standards of Weights and Measures (Approval of Models) Rules</option><option value="1910">Standards of Weights and Measures (Extension to Kohima and Mokokchung Districts) Act</option><option value="1911">Standards of Weights and Measures (General) Rules</option><option value="1912">Standards of Weights and Measures (Inter-State Verification and Stamping) Rules</option><option value="1913">Standards of Weights and Measures (National Standards) Rules</option><option value="1914">Standards of Weights and Measures (Numeration) Rules</option><option value="1915">State Acquisition of Lands for Union Purposes (Validation) Act</option><option value="1916">State Agricultural Credit Corporation Act</option><option value="1917">State Armed Police Forces (Extension of Laws) Act</option><option value="1918">State Associated Banks (Miscellaneous Provisions) Act</option><option value="1919">State Bank of Hyderabad Act</option><option value="1920">State Bank of India Act</option><option value="1921">State Bank of India (Subsidiary Banks) Act</option><option value="1922">State Bank of Saurashtra (Repeal) and the State Bank of India (Subsidiary Banks) Amendment Act</option><option value="1923">State Bank of Sikkim (Acquisition of Shares) and Miscellaneous Provisions Act</option><option value="1924">State Banks (Repeal and Amendment) Act</option><option value="1925">State Emblems of India (Prohibition of Improper Use) Act</option><option value="1926">State Emeblem of India (Regulation of Use) Rules</option><option value="43">State Financial Corporation Act</option><option value="1927">State of Arunachal Pradesh Act</option><option value="1928">State of Himachal Pradesh Act</option><option value="1929">State of Mizoram Act</option><option value="1930">State of Nagaland Act</option><option value="1931">States Reorganisation Act</option><option value="1932">Static and mobile pressure vessels (Unfired) Rules 2016</option><option value="1934">Statutory Investigation into Railway Accidents Rule</option><option value="1933">Statutory Investigation into Railway Accidents Rules</option><option value="1935">Street Venders (Protection of Livelihood and Regulation of Street Vending) Act</option><option value="1936">Sugarcane Act</option><option value="1937">Sugar Cess Act</option><option value="1938">Sugar Development Fund Act</option><option value="1939">Sugar Development Fund Rules</option><option value="1940">Sugar (Regulation of Producion) Act</option><option value="1941">Sugar Undertakings (Taking Over of Management) Act</option><option value="1942">SUITS VALUATION ACT</option><option value="1943">Suji and Maida Grading and Marking Rules</option><option value="1944">Sundried Mango Slices and Powder Grading and Marking Rules</option><option value="1945">Sunflower Seeds Grading and Marking Rules</option><option value="1946">Supereme Court Judges Rules</option><option value="1947">Supereme Court Judges (Traveling Allowance) Rules</option><option value="1948">Suppression of Unlawful Acts against Safety of Civil Aviation Act</option><option value="1949">Suppression of Unlawful Acts against Safety of Maritime Navigation and Fixed Platforms on Continenta</option><option value="1950">Supreme Court Advocates (Practice in High Courts) Act</option><option value="1951">Supreme Court (Enlargement of Criminal Appellate Jurisdiction) Act</option><option value="1952">Supreme Court Judges (Salaries and Conditions of Service) Act</option><option value="1953">Supreme Court Legal Services Committee (Group 'C' and 'D' Posts) Recruitment Rules</option><option value="1954">Supreme Court Legal Services Committee Regulations</option><option value="1955">Supreme Court Legal Services Committee Rules</option><option value="1956">Supreme Court (Number of Judges) Act</option><option value="1957">Swadeshi Cotton Mills Company Limited (Acquisition and Transfer of Undertakings) Act</option><option value="1958">Table eggs Grading and Marking Rules</option><option value="1959">Tamarind seed and powder Grading and Marking Rules</option><option value="1960">Tamarind with Seed Grading and Marking Rules</option><option value="1961">Tamil Nadu Agricultural Service Co-operative Societies (Appointment of Special Officers) Amendment A</option><option value="1962">Tamil Nadu Legislative Council Act</option><option value="1963">Tapioca Products (Animal Feed) Grading and Marking Rules</option><option value="1964">Tapioca Sago Grading and Marking Rules</option><option value="1965">Taramira seeds Grading and Marking Rules</option><option value="1966">Taxation Laws (Amendment and Miscellaneous Provisions) Act</option><option value="1967">Taxation Laws (Amendment and Miscellaneous Provisions) Act, 1986</option><option value="1968">Taxation Laws (Continuation and Validation of Recovery Proceedings) Act</option><option value="1969">Taxation Laws (Extension to Jammu and Kashmir) Act</option><option value="1970">Taxation Laws (Extension to Jammu and Kashmir) Act, 1972</option><option value="1971">Tax Return Preparer Scheme</option><option value="1972">TDSAT (Form, Verification and the Fee for filing an appeal) Rules</option><option value="1973">TDSAT Recruitment Rules for Group C and D posts</option><option value="1974">TDSAT (Salary, Allowances and other Conditions of Service of the Officers and Employees) (Amendment) Rules, 2003</option><option value="1975">TDSAT(Salary, Allowances and other Conditions of Service of the Officers and Employees) Rules</option><option value="1976">Tea Act</option><option value="1977">Tea Companies (Acquisition and Transfer of Sick Tea Units) Act</option><option value="1978">Technology Development Board Act</option><option value="1979">Tejpat Grading and Marking Rules</option><option value="1980">Telecom Disputes Settlement and Appellate Tribunal (Form, Verification and the Fee for filing an Appeal) Rules</option><option value="1981">Telecom Disputes Settlement and Appellate Tribunal Group 'C' and Group 'D' Posts Recruitment Rules</option><option value="1982">Telecom Disputes Settlement and Appellate Tribunal (Salaries, Allowances and other Conditions of Service of Chairperson and Members) Rules</option><option value="1983">Telecom Disputes Settlement and Appellate Tribunal (Salary, Allowances and other Conditions of Service of the Officers and Employees) Rules</option><option value="1984">Telecome Regulatory Authority of India (Contributory Provident Fund) Rules</option><option value="1985">Telecome Regulatory Authority of India (Miscellaneous) Rules</option><option value="1986">Telecome Regulatory Authority of India (Salary, Allowances and other Conditions of Service of the Officers and Employees) Rules</option><option value="1987">Telecom Regulatory Authority of India Act</option><option value="1988">Telecom Regulatory Authority of India (Allowances to Part-time Members) Rules</option><option value="1989">Telecom Regulatory Authority of India (Annual Report and Returns) Rules</option><option value="1990">Telecom Regulatory Authority of India (Form of Annual Statement of Accounts and Records) Rules</option><option value="1991">Telecom Regulatory Authority of India (Period for Filing of Application to Authority) Rules</option><option value="1992">Telecom Regulatory Authority of India (Procedure for Conducting inquiry Against a Member) Rules</option><option value="1993">Telecom Regulatory Authority of India (Salaries, Allowances and other Conditions of Service of Chairperson and whole-time Members) Rules</option><option value="1994">Telecom Regulatory Authority of India, Service Providers (Maintenance of Books of Accounts and other Documents) Rules</option><option value="1995">Telegraph Wires (Unlawful Possession) Act</option><option value="18">Tenancy and Agricultural Lands Act (Maharashtra)</option><option value="1996">Tendu (Beedi Wrapper) Grading and Marking Rules</option><option value="1997">Terminal Tax on Railway Passengers Act</option><option value="1998">Territorial Army Act</option><option value="1999">Territorial Waters, Continental Shelf, Exclusive Economic Zone and other Maritime Zones Act</option><option value="2000">Terrorist Affected Areas (Special Courts) Act</option><option value="6">Terrorist and Disruptive and Activities (Prevention) Act</option><option value="2001">Textile Committee (Cess) Rules</option><option value="2002">Textile Committee Rules</option><option value="2003">Textiles Commitee's Employees' (Conditions of Service) Regulations</option><option value="2004">Textiles Committee Act</option><option value="2005">Textiles Committee (Pension and General Provident Fund) Regulations</option><option value="2006">Textiles Committee (Recruitment) Regulations</option><option value="2007">Textiles Committees Employees (Conduct, Discipline and Appeal) Regulations</option><option value="2008">Textiles Committee's Employees (Medical Benefits) Regulations</option><option value="2009">Textiles Committee's Employees' (Seniority) Regulations</option><option value="2010">Textile Undertakings (Nationalisation) Act</option><option value="2011">Textile Undertakings (Taking Over of Management) Act</option><option value="2012">Tezpur University Act</option><option value="2013">The Advocates Welfare Fund Act</option><option value="2014">The Banning of Unregulated Deposit Schemes Act, 2019</option><option value="181">The Bombay Prevention of Begging Act, 1959</option><option value="203">The Chit Funds Act, 1982</option><option value="198">THE CIGARETTES AND OTHER TOBACCO PRODUCTS (PACKAGING AND LABELLING) RULES</option><option value="193">The Collection of Statistics Act 2008</option><option value="184">The Companies Act 1956</option><option value="169">The Employee's provident Funds and Miscellaneous provision Act,1952</option><option value="133">The Fertilizer (Control) Order Act</option><option value="179">The Indian Registration Act, 1908</option><option value="167">The Legal Metrology Act, 2009</option><option value="208">The Maharashtra Aadhaar (Targeted Delivery of Financial and Other Subsidies, Benefits and Services) Act</option><option value="202">The Maharashtra Plastic Carry Bags Manufacture and Usage Rule, 2006</option><option value="196">The Mah Ownership Flats_Regu of promotion of construction of sale, management and transfer_ Act 1963</option><option value="2015">the Mineral Conservation Development Rules, 1988</option><option value="2016">The Muslim Women (Protection of Rights on Marriage) Act, 2019</option><option value="209">The Payment of Bonus Act 1965</option><option value="2017">The Prohibition of Electronic Cigarettes (Production, Manufacture, Import, Export, Transport, Sale, Distribution, Storage and Advertisement) Act, 2019</option><option value="168">The Protection of Children from Sexual Offence Act, 2012</option><option value="211">The Specified Bank Notes (Cessation of Liabilities) Act, 2017</option><option value="2018">The Transgender Persons (Protection of Rights) Act, 2019</option><option value="2019">Tobacco Board Act</option><option value="2020">Tobacco Cess Act</option><option value="2021">Tobacco Duty (Town of Bombay) Act</option><option value="2022">Tobaco Grading and Marking Rule</option><option value="2023">Tobaco Grading and Marking Rules</option><option value="2024">Tokyo Convention Act</option><option value="201">TRADE MARKS ACT</option><option value="2025">Trade Marks Rules 2002</option><option value="159">TRADE &amp; MERCHANDISE MARKS ACT</option><option value="57">Trade Union Act</option><option value="2026">Trading with the Enemy (Continuance of Emergency Provisions) Act</option><option value="2027">TRAI CPF Amendment Rules</option><option value="2028">Transaction of Business of the Government of National Capital Territory of Delhi Rules</option><option value="2029">Transfer of Evacuee Deposits Act</option><option value="2030">Transfer of Prisoners Act</option><option value="2031">TRANSFER OF PROPERTY ACT</option><option value="2032">Transfer of Property (Amendment) Supplementary Act</option><option value="2033">Transformer and Switchgear Limited (Acquisition and Transfer of Undertakings) Act</option><option value="2034">TRANSPLANTATION OF HUMAN ORGANS ACT</option><option value="2035">Transplantation of Human Organs Rules</option><option value="2036">Transport of Animals Rules</option><option value="2037">Travancore-Cochin Vehicles Taxation (Amendment and Validation) Act</option><option value="2038">Tripura Land Revenue and Land Reforms Act</option><option value="2039">Tripura University Act</option><option value="2040">Trustees (Declaration of Holdings of Shares and Debentures) Rules</option><option value="2041">Type Corporation of India Limited (Disinvestment of Ownership) Act</option><option value="2042">UGC (Affiliation of Colleges offering Technical Education by Universities) Regulations</option><option value="2043">Union Duties of Excise (Distribution) Act</option><option value="2044">Union Duties of Excise (Electricity) Distribution Repeal Act</option><option value="2045">Union Territories (Direct Election to the House of the People) Act</option><option value="2046">Union Territories (Laws) Act</option><option value="2047">Union Territories (Separation of Judicial and Executive Functions) Act</option><option value="2048">Union Territories (Stamp and Court-fees Laws) Act</option><option value="2049">Union Territory Goods and Services Tax (Amendment) Act, 2018</option><option value="2050">Union Territory Goods and Service Tax Act</option><option value="2051">United Nations (Privileges and Immunities) Act</option><option value="2052">United Nations (Security Council) Act</option><option value="2053">United Provinces Act</option><option value="2054">Unit Trust of India Act</option><option value="2055">Unit Trust of India (Transfer of Undertaking and Repeal) Act</option><option value="2056">University Grants Commission Act</option><option value="2057">University of Allahabad Act</option><option value="2058">University of Hyderabad Act</option><option value="2059">Unlawful Activities (Prevention) Act</option><option value="2060">Unlisted Companies (Issue of Sweat Equity Shares) Rules</option><option value="2061">Unlisted Public Companies (Preferential Allotment) Rules</option><option value="2062">Un-organised Workers' Social Security Act</option><option value="2063">Unorganised Workers Social Security Rules 2008</option><option value="2064">Unorganised Workers Social Security Rules, 2009</option><option value="2065">Untouchability (Offences) Amendment and Miscellaneous Provision Act</option><option value="2066">U.P. Sugarcane Cess (Validation) Act</option><option value="2067">URBAN LAND (CEILING AND REGULATION) ACT</option><option value="2068">Urban Land (Ceiling and Regulation) Repeal Act</option><option value="2069">Usurious Loans Act</option><option value="2070">Usury Laws Repeal Act</option><option value="2071">Uttaranchal (Alteration of Name) Act</option><option value="2072">Uttar Pradesh Cantonments (Control of Rent and Eviction) Repeal Act</option><option value="2073">Uttar Pradesh Reorganisation Act</option><option value="2074">Vanaspati Grading and Marking Rules</option><option value="2075">Vegetable Oil Cakes (Expressed or Solvent) Grading and Marking Rules</option><option value="2076">Vegetable Oils Grading and Marking Rules</option><option value="2077">Vermiceli Macaroni and Spagheti Grading and Marking Rules</option><option value="2078">Vice-President's Pension Act</option><option value="2079">Vice-Presidents Pension, Housing and Other Facilities Rules</option><option value="2080">Victoria Memorial Act</option><option value="2081">Visva-Bharati Act</option><option value="2082">Voluntary Deposits (Immunities and Exemptions) Act</option><option value="2083">Voluntary Disclosure of Income and Wealth Act</option><option value="2084">Voluntary Surrender of Salaries (Exemption from Taxation) Act</option><option value="2085">Waiver or Reduction of Interest</option><option value="2086">WAKF ACT</option><option value="2087">Warehousing Corporations Act</option><option value="2088">Warehousing Corporations (Supplementary) Act</option><option value="2089">Warehousing (Development and Regulation) Act</option><option value="2090">War Injuries (Compensation Insurance) Act</option><option value="2091">Waste-Lands (Claims) Act</option><option value="2092">Water Chestnuts Grading and Marking Rules</option><option value="136">WATER (PREVENTION AND CONTROL OF POLLUTION) ACT</option><option value="135">WATER (PREVENTION AND CONTROL OF POLLUTION) ACT,1974</option><option value="2093">Water (Prevention and Control of Pollution) Cess Act</option><option value="2094">Water (Prevention and Control of Pollution) Cess Rules</option><option value="2095">Water (Prevention and Control of Pollution) Rules</option><option value="2096">WEALTH-TAX ACT</option><option value="2097">Wealth-Tax Rules</option><option value="2098">Wealth-Tax Settlement Commission (Procedure) Rules</option><option value="2099">Weapons of Mass Destruction and ir Delivery Systems (Prohibition of Unlawful Activities) Act</option><option value="2100">Weapons Of Mass Destruction And their Delivery Systems. Appointment of Advisory Committee and their Powers and Duties Rules</option><option value="2101">Weapons of Mass Destruction and their Delivery Systems (Prohibition of Unlawful Activities) Implementation Rules</option><option value="2102">Weekly Holidays Act</option><option value="2103">West Godavari District (Assimilation of Laws on Federal Subjects) Act</option><option value="2104">Wheat Porridge Grading and Marking Rules</option><option value="2105">Whistle Blowers Protection Act, 2011</option><option value="2106">White Phosphorus Matches Prohibition Act</option><option value="2107">WILD BIRDS AND ANIMALS PROTECTION ACT</option><option value="83">WILD LIFE (PROTECTION) ACT</option><option value="2108">Wild Life (Protection) Amendment Act</option><option value="2109">Wildlife (Protection) Licensing (Additional Matters for Consideration) Rules</option><option value="2110">Wild Life Protection Rules</option><option value="2111">Wildlife (Specified Plants - Conditions for Possession by Licensee) Rules</option><option value="2112">Wildlife (Specified Plant Stock Declaration) Central Rules</option><option value="2113">Wildlife (Stock Declaration) Central Rules</option><option value="2114">Wildlife (Transaction and Taxidermy) Rules</option><option value="2115">William Pears Grading and Marking Rules</option><option value="2116">Women's and Children's Institutions (Licensing) Act</option><option value="2117">Wool Grading and Marking Rules</option><option value="151">Working Journalists and Other Newspaper Employees (Conditions of Service) and Miscellaneous Provisio</option><option value="2118">Working Journalists (Conditions of Service ) and Miscellaneous Provisions Rules</option><option value="2119">Working Journalists (Fixation of Rates of Wages) Act</option><option value="143">Workmen Compensation Act, 1923</option><option value="2120">Works of Defence Act</option><option value="2121">Young Persons (Harmful Publications) Act</option></select>
</span>
</div>
<br>
<div class="rows">
<span class="firstcolumn" style="padding-right:-2px;">Under Section</span>
<span class="thirdcolumn"> </span>
<span class="secondcolumn">
<input type="text" maxlength="50" name="under_sec" id="under_sec" onkeypress="return event.keyCode != 13;" onfocus="reg_lang('');" onblur="reg_lang('N')" style="width: 245px" title="Enter Under Section">
</span>
</div>
<br>
<div class="rows">
<span class="firstcolumn"></span>
<span class="thirdcolumn"> </span>
<span class="secondcolumn">
<input type="radio" id="radP" name="f" checked="checked" value="Pending"><label for="radP">Pending</label>
<input type="radio" id="radD" name="f" value="Disposed"><label for="radD">Disposed</label>
</span>
</div>
<div class="rows">
<span id="captcha_container_2" class="captcha_box">
<div><div style="display:inline-block;float:left;"><span class="firstcolumn"><label id="captcha_label" class="radioLabel" tabindex="0">Captcha</label></span><span class="thirdcolumn"> </span><span class="secondcolumn"><img style="padding-right: 0px;border:1px solid #ccc;" id="captcha_image" src="../securimage/securimage_show.php?0.3107984848052123" alt="CAPTCHA Image" tabindex="0" width="120"><label style="font-size:0.0000000001px; color:#000;display:inline;">Captcha</label><div id="captcha_image_audio_div" style="display:inline">
<audio id="captcha_image_audio" preload="none" style="display: none">
<source id="captcha_image_source_wav" src="/ecourtindia_v4_bilingual/securimage/securimage_play.php?id=5eb2bf290f18c" type="audio/wav">
</audio>
</div>
<div id="captcha_image_audio_controls" style="display:inline-block;">
<a tabindex="0" class="captcha_play_button" href="/ecourtindia_v4_bilingual/securimage/securimage_play.php?id=5eb2bf290f1d9" onclick="return false">
<img class="captcha_play_image" src="/ecourtindia_v4_bilingual/securimage/images/speaker-btn.png" alt="Play CAPTCHA Audio" style="border: 0px" width="32" height="32">
<img class="captcha_loading_image rotating" src="/ecourtindia_v4_bilingual/securimage/images/loading.png" alt="Loading audio" style="display: none" width="32" height="32">
</a>
<noscript>Enable Javascript for audio controls</noscript>
</div>
<script type="text/javascript" src="/ecourtindia_v4_bilingual/securimage/securimage.js"></script>
<script type="text/javascript">captcha_image_audioObj = new SecurimageAudio({ audioElement: 'captcha_image_audio', controlsElement: 'captcha_image_audio_controls' });</script>
<a tabindex="0" style="border: 0" href="#" title="Refresh Image" onclick="if (typeof window.captcha_image_audioObj !== 'undefined') captcha_image_audioObj.refresh(); document.getElementById('captcha_image').src = '/ecourtindia_v4_bilingual/securimage/securimage_show.php?' + Math.random(); this.blur(); return false"><img src="/ecourtindia_v4_bilingual/securimage/images/refresh-btn.png" alt="Refresh Image" onclick="clearCaptchaText();" style="border: 0px none;" width="32" height="32"></a></span></div></div><div class="" style="clear:left;"><span class="firstcolumn"><span class="redStar">*</span>Enter Captcha</span> <span class="thirdcolumn"> </span><span class="secondcolumn"><input maxlength="6" type="text" name="captcha" id="captcha" class="captchaClass" tabindex="0"></span></div>
</span>
</div>
<br>
<div class="rows">
<span class="firstcolumn"></span>
<span class="thirdcolumn"> </span>
<span class="secondcolumn">
<input type="button" name="submit1" value="Go" class="button" onclick="validateForm();" style="">
<input type="button" name="reset" value="Reset" class="button" onclick="funonReset();">
</span>
</div>
<br>
<div id="errSpan" class="rows" style="display: none;"><p style="color:red;" align="center">Invalid Captcha</p></div>
</div>
</div>
<div id="divWait" style="color: red; display: none; text-align: center; height: 65px;">
<label for="waitmsg" style="display:none;">Please Wait</label><input type="text" id="waitmsg" style="background-color:transparent; color:red;font-family:arial; font-weight:bold; font-size:1em ;text-align:center;border:0;" value="Please Wait" readonly="readonly">
<br>
<img style="align:center;" src="../images/loading.gif" alt="loading data">
</div>
<div>
<div id="showList" style="clear: both;">
<div id="showList2" style=""><div style="text-align:center;width:100%;color:#ff0000;font-weight:bold;"><h3 class="h2class" tabindex="0">Total Number of Establishments in Court Complex : 3</h3> / <h4 class="h2class" tabindex="0">Total Number of Cases : 32</h4></div><div style="text-align:center;width:100%;"><a style="color:#559DE7; font-weight:bold;text-decoration: underline;" href="#td_court_name_9">District and Session Court , Kopergaon : 32</a></div></div>
<p id="back-top" style="display: none;"><a href="#top"><span></span> </a></p><table class="bordered" id="titlehid" width="90%" cellspacing="0%" cellpadding="12%" border="0" align="center">
<thead>
<tr>
<th scope="col">Sr No</th>
<th scope="col" style="\"text-align:left;\"" width="\"50%\"">Case Type/Case Number/Case Year</th>
<th scope="col" style="\"text-align:left;\"" width="\"70%\"">Petitioner Name<br>Versus <br>Respondent Name</th>
<th scope="col">View</th>
</tr>
</thead>
<tbody id="showList1"> <tr><td style="color:#559DE7; font-weight:bold;text-decoration: underline;" tabindex="0" id="td_court_name_9" colspan="4" title="Establishment name">District and Session Court , Kopergaon</td></tr><tr><td class="col-xs-1" valign="top">1</td><td class="col-xs-3" width="25%" valign="top">Sessions Case/17/2017</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Hemant Shivaji Wani</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201500000172017','MHAH100003832017','9','undefined','undefined');return false;" style="">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201500000172017</span></td></tr><tr><td class="col-xs-1" valign="top">2</td><td class="col-xs-3" width="25%" valign="top">Sessions Case/62/2016</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Santosh Baban Karpe</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201500000622016','MHAH100011152016','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201500000622016</span></td></tr><tr><td class="col-xs-1" valign="top">3</td><td class="col-xs-3" width="25%" valign="top">Sessions Case/37/2016</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Ulhas Sukhdeo Kale</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201500000372016','MHAH100007792016','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201500000372016</span></td></tr><tr><td class="col-xs-1" valign="top">4</td><td class="col-xs-3" width="25%" valign="top">Sessions Case/100062/2015</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">The State of Maharashtra<br>Versus<br>Somnath Dattuba Wadekar</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201501000622015','MHAH100007432015','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201501000622015</span></td></tr><tr><td class="col-xs-1" valign="top">5</td><td class="col-xs-3" width="25%" valign="top">Sessions Case/100011/2015</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">The State of Maharashtra<br>Versus<br>Shivaji Jijaba Dange</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201501000112015','MHAH100001792015','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201501000112015</span></td></tr><tr><td class="col-xs-1" valign="top">6</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/46/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Yogendra Digambar Saindane</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000462020','MHAH100003342020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000462020</span></td></tr><tr><td class="col-xs-1" valign="top">7</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/45/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Sandip Lalchand Bhopalawat</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000452020','MHAH100003322020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000452020</span></td></tr><tr><td class="col-xs-1" valign="top">8</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/43/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Shrikant Rajendra Shinde,</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000432020','MHAH100003312020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000432020</span></td></tr><tr><td class="col-xs-1" valign="top">9</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/41/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Avinash Narayan Pandore</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000412020','MHAH100003122020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000412020</span></td></tr><tr><td class="col-xs-1" valign="top">10</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/38/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Sachin Sampat Shinde</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000382020','MHAH100002472020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000382020</span></td></tr><tr><td class="col-xs-1" valign="top">11</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/31/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Vikas Anil Gawande</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000312020','MHAH100002222020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000312020</span></td></tr><tr><td class="col-xs-1" valign="top">12</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/29/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Amol Ashok Nimse</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000292020','MHAH100001702020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000292020</span></td></tr><tr><td class="col-xs-1" valign="top">13</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/15/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Nizamuddin Sallauddin Shaikh</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000152020','MHAH100001152020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000152020</span></td></tr><tr><td class="col-xs-1" valign="top">14</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/1/2020</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Dattaraya Badshah Wale</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000012020','MHAH100000732020','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000012020</span></td></tr><tr><td class="col-xs-1" valign="top">15</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/87/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Bharat Jayram Gadakh</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000872019','MHAH100011292019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000872019</span></td></tr><tr><td class="col-xs-1" valign="top">16</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/84/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Arjun Kisan Panhale</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000842019','MHAH100011172019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000842019</span></td></tr><tr><td class="col-xs-1" valign="top">17</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/19/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Vishwanath @ Yashwant Bhanudas Wakade</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000192019','MHAH100005832019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000192019</span></td></tr><tr><td class="col-xs-1" valign="top">18</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/14/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Anil Maruti Gaikwad</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000142019','MHAH100004542019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000142019</span></td></tr><tr><td class="col-xs-1" valign="top">19</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/13/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Dnyaneshwar @ Nana Dharma Dambare</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000132019','MHAH100004472019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000132019</span></td></tr><tr><td class="col-xs-1" valign="top">20</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/3/2019</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">Sukdeo Dhondiba More<br>Versus<br>Balasaheb Karbhari Pachore</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000032019','MHAH100000282019','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000032019</span></td></tr><tr><td class="col-xs-1" valign="top">21</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/140/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Dhondiram @ Kailas Jagannath Shinde</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600001402018','MHAH100010832018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600001402018</span></td></tr><tr><td class="col-xs-1" valign="top">22</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/128/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Pratik Dattatraya Gosavi</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600001282018','MHAH100009012018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600001282018</span></td></tr><tr><td class="col-xs-1" valign="top">23</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/127/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Shoaeb Harun Tamboli</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600001272018','MHAH100009002018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600001272018</span></td></tr><tr><td class="col-xs-1" valign="top">24</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/113/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">Balasaheb Yahswant Lokhande<br>Versus<br>Kishor Yashwant Lokhande</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600001132018','MHAH100008432018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600001132018</span></td></tr><tr><td class="col-xs-1" valign="top">25</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/62/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Manik @ Manohar Genu Warade</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000622018','MHAH100006312018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000622018</span></td></tr><tr><td class="col-xs-1" valign="top">26</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/28/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Gajanan Raosaheb Deshmukh</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000282018','MHAH100003912018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000282018</span></td></tr><tr><td class="col-xs-1" valign="top">27</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/23/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Atul Balasaheb Chaudhari</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000232018','MHAH100003092018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000232018</span></td></tr><tr><td class="col-xs-1" valign="top">28</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/22/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Bhausaheb Shivaji Katkar</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000222018','MHAH100002992018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000222018</span></td></tr><tr><td class="col-xs-1" valign="top">29</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/6/2018</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Dnyaneshwar @ Somnath Vishwanath Wagh</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000062018','MHAH100000242018','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000062018</span></td></tr><tr><td class="col-xs-1" valign="top">30</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/141/2017</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Bhausaheb Ramchandra Barhate</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600001412017','MHAH100005942017','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600001412017</span></td></tr><tr><td class="col-xs-1" valign="top">31</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/30/2017</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Lakhan @ Aakash Sambhaji Autade</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000302017','MHAH100000742017','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000302017</span></td></tr><tr><td class="col-xs-1" valign="top">32</td><td class="col-xs-3" width="25%" valign="top">Spl.Case/13/2017</td><td class="col-xs-3"> <h3class='h2class' tabindex="0">State Of Maharashtra<br>Versus<br>Vinayak Sopan Chaudhari</h3class='h2class'></td><td class="col-xs-2" ;="" width="10%" valign="top"><a href="#" class="someclass" onclick="viewHistory('201600000132017','MHAH100000382017','9','undefined','undefined');return false;">View</a><span style="font-size:0.00000000001px; color:#fff;">details for case number 201600000132017</span></td></tr></tbody>
<script type="text/javascript" src="../js/jquery2.min.js"></script>
<script type="text/javascript">
$(document).ready(function()
{
//newcss();autocomoff();
});
$(document).ready(function(){
// hide #back-top first
$("#back-top").hide();
// fade in #back-top
$(function () {
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
$('#back-top').fadeIn();
} else {
$('#back-top').fadeOut();
}
});
// scroll body to 0px on click
$('#back-top a').click(function () {
$('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
});
$(function() {
$("#radCourtComplex").focus();
});
</script>
<script language="JavaScript" src="../includes/validation.php" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
//<![CDATA[
// WRITE YOUR CODE HERE
function autocomoff()
{
document.getElementById( "search_act" ).setAttribute( "autocomplete","off" );
document.getElementById( "under_sec" ).setAttribute( "autocomplete","off" );
}
//]]>
</script>
<style type="text/css">
.controlstyle {
display:none;
}
</style>
<script type="text/javascript" src="../js/jquery.js"></script>
<script type="text/javascript" src="../includes/javascript/xmlhttp.js"></script>
<script type="text/javascript" src="../includes/javascript/combofunctions.js"></script>
<script type="text/javascript" src="../js/fluidtextresizer.js"></script>
<script type="text/javascript" src="../pramukhime/js/pramukhime.js"></script>
<script type="text/javascript" src="../pramukhime/js/pramukhindic.js"></script>
<script type="text/javascript" language="javascript">
var radOpt='';
var sesslangid="";
var qry_file_name='s_actwise_qry.php';
var pramukhe_lang="marathi";
var state_code="1";
var dist_code="26";
state_code = state_code.replace(/\s/g,'');
dist_code = dist_code.replace(/\s/g,'');
//<![CDATA[
var mytextsizer=new fluidtextresizer({
controlsdiv: "sizecontroldiv", //id of special div containing your resize controls. Enter "" if not defined
targets: ["body"], //target elements to resize text within: ["selector1", "selector2", etc]
levels: 1, //number of levels users can magnify (or shrink) text
persist: "session", //enter "session" or "none"
animate: 200 //animation duration of text resize. Enter 0 to disable
})
jQuery(function($){
$(parent.document).find('a').click(function(){
if(/^#(smaller|bigger|fontsize-?\d)$/.test(this.hash)){
$('a[href=' + this.hash + ']').trigger('click');
} else if (/^\s*javascript\s*:\s*mytextsizer\./.test(this)){
var fontFunction = new Function(this);
fontFunction();
}
});
});
function toggle()
{
document.getElementById('captcha').value='';
if(document.getElementById('radCourtComplex').checked==true)
{
document.getElementById('courtComplexDiv').style.display='';
document.getElementById('courtEstDiv').style.display='none';
document.getElementById('court_code').value=0;
}
else if(document.getElementById('radCourtEst').checked==true)
{
document.getElementById('courtComplexDiv').style.display='none';
document.getElementById('courtEstDiv').style.display='';
document.getElementById('court_complex_code').value=0;
}
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
document.getElementById('actcode').value=0;
document.getElementById('search_act').value='';
document.getElementById('under_sec').value='';
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display='none';
}
function funCourtEstChange()
{
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
document.getElementById('actcode').value=0;
document.getElementById('search_act').value='';
document.getElementById('under_sec').value='';
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display='none';
fillActType();
}
function funonReset()
{
document.getElementById('showList').style.display='none';
document.getElementById('errSpan').style.display='none';
document.getElementById('court_complex_code').value=0;
document.getElementById('court_code').value=0;
fun_clear_combo(document.getElementById('actcode'));
document.getElementById('actcode').value=0;
document.getElementById('search_act').value='';
document.getElementById('under_sec').value='';
document.getElementById('radD').checked=false;
document.getElementById('radP').checked=true;
document.getElementById('court_complex_code').focus();
refreshCaptcha();
}
function fillActType()
{
if(search_act!="")
{
var search_act=document.getElementById('search_act').value;
if(sesslangid=='Y')
{
for(i=0;i<search_act.length;i++)
{
var schar = search_act.charAt(i);
var achar = schar.charCodeAt(0);
if((achar>=65 && achar<=90)||(achar>=97 && achar<=122))
{
alert("Please Enter Only Valid Characters in Search Act");
document.getElementById('search_act').value="";
document.getElementById('search_act').focus();
return false;
}
}
}
else
{
if (!search_act.match(/^[0-9a-zA-Z ]+$/) && search_act !="")
{
alert("Please Enter Only Valid Characters in Search Act");
document.getElementById('search_act').value="";
document.getElementById('search_act').focus();
return false;
}
}
}
if(document.getElementById('radCourtComplex').checked==true)
{
var radOpt='court_complex';
}
if(document.getElementById('radCourtEst').checked==true)
{
var radOpt='court_est';
}
if(radOpt=='court_complex')
{
var court_complex_code=document.getElementById('court_complex_code').value;
var court_complex_codeArr=court_complex_code.split('@');
var court_codeArr=court_complex_codeArr[1];
var courtComplex=court_complex_codeArr[0];
var deffered_with=court_complex_codeArr[2];
var send_str = "court_codeArr="+court_codeArr;
send_str+="&appFlag="+"";
var combo_val=court_complex_code;
}
if(radOpt=='court_est')
{
var court_code=document.getElementById('court_code').value;
var send_str="court_code="+court_code;
var combo_val=court_code;
}
fun_clear_combo(document.getElementById('actcode'));
document.getElementById('actcode').value=0;
document.getElementById('under_sec').value='';
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
document.getElementById('showList').style.display='none';
if(state_code=='0'|| dist_code=='0'||court_code=='0')
{
document.getElementById('court_code').value=0;
fun_clear_combo(document.getElementById('actcode'));
document.getElementById('actcode').value=0;
}
else
{
send_str+="&lang=";
send_str+="&action_code=fillActType";
send_str+="&search_act="+search_act;
send_str+="&state_code="+state_code;
send_str+="&dist_code="+dist_code;
var data_list= xmlHTTP_send_post(qry_file_name,send_str);
if(data_list.substring(0,5).toUpperCase()=='ERROR')
{
fun_clear_combo(document.getElementById('actcode'));
document.getElementById('actcode').value=0;
document.getElementById('under_sec').value='';
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
document.getElementById('showList').style.display="none";
document.getElementById('errSpan').style.display='none';
funUsrErrorParam(data_list);
}
else
{
document.getElementById('errSpan').style.display='none';
fun_fill_combo(data_list,document.getElementById('actcode'));
}
}
}
function funOnActChange()
{
document.getElementById('showList').style.display='none';
document.getElementById('under_sec').value='';
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
}
function validateForm()
{
var under_sec=document.getElementById('under_sec').value;
var search_act=document.getElementById('search_act').value;
if(state_code=="0")
{
alert("Please Select State");
parent.document.getElementById('sess_state_code').focus();
return false;
}
if(dist_code=="0")
{
alert("Please Select District Name");
parent.document.getElementById('sess_dist_code').focus();
return false;
}
if(document.getElementById('radCourtComplex').checked==true)
{
var radOpt='court_complex';
}
if(document.getElementById('radCourtEst').checked==true)
{
var radOpt='court_est';
}
if(radOpt=='court_complex')
{
var court_complex_code=document.getElementById('court_complex_code').value;
var court_complex_codeArr=court_complex_code.split('@');
var court_codeArr=court_complex_codeArr[1];
var deffered_with=court_complex_codeArr[2];
var combo_val=court_complex_code;
if(combo_val==0)
{
alert("Please Select Court Complex");
return false;
}
}
if(radOpt=='court_est')
{
var court_code=document.getElementById('court_code').value;
var combo_val=court_code;
if(combo_val==0)
{
alert("Please Select Court Establishment");
return false;
}
}
if(document.getElementById('actcode').value== 0)
{
alert("Please Select Act Type");
document.getElementById('radP').checked=true;
document.getElementById('radD').checked=false;
document.getElementById('actcode').focus();
return false;
}
if(under_sec!="")
{
if (!under_sec.match(/^[0-9a-zA-Z ]+$/) && under_sec !="")
{
alert("Please Enter Only Valid Characters in Under Section");
document.getElementById('under_sec').value="";
document.getElementById('under_sec').focus();
return false;
}
}
if(document.getElementById('captcha').value == "")
{
alert("Please Enter Captcha Text" );
document.getElementById('captcha').focus();
return false;
}
document.getElementById('errSpan').style.display='none';
document.getElementById('showList').style.display="none";
document.getElementById('divWait').style.display='block';
document.getElementById('waitmsg').focus();
setTimeout(function(){ showRecords(); }, 1000);
}
function showRecords()
{
var search_act=document.getElementById('search_act').value;
var actcode=document.getElementById('actcode').value;
var under_sec=document.getElementById('under_sec').value;
if(document.getElementById('radCourtComplex').checked==true)
{
var radOpt='court_complex';
}
if(document.getElementById('radCourtEst').checked==true)
{
var radOpt='court_est';
}