-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMovies.sql
2334 lines (2329 loc) · 248 KB
/
Movies.sql
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
CREATE DATABASE IF NOT EXISTS DVDs;
USE DVDs;
CREATE TABLE IF NOT EXISTS Movies (
`ID` INT,
`Title` VARCHAR(82) CHARACTER SET utf8,
`Studio` VARCHAR(15) CHARACTER SET utf8,
`Status` VARCHAR(12) CHARACTER SET utf8,
`Sound` VARCHAR(11) CHARACTER SET utf8,
`Versions` VARCHAR(18) CHARACTER SET utf8,
`RecRetPrice` NUMERIC(5, 2),
`Rating` VARCHAR(5) CHARACTER SET utf8,
`Year` INT,
`Genre` VARCHAR(17) CHARACTER SET utf8,
`Aspect` VARCHAR(6) CHARACTER SET utf8
);
INSERT INTO Movies VALUES
(1,'10','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'R',1979,'Comedy','2.35:1'),
(2,'12 Monkeys (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1995,'SciFi','1.85:1'),
(3,'12 Monkeys: Collector''s Edition','Universal','Cancelled','5.1','LBX, 16:9',29.98,'R',1995,'Drama','1.85:1'),
(4,'187: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Mystery/Suspense','1.85:1'),
(5,'1941: Collector''s Edition','Universal','Out','5.1','LBX',34.98,'NR',1979,'Comedy','2.35:1'),
(6,'200 Cigarettes','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Comedy','1.85:1'),
(7,'2001: A Space Odyssey (Original Release)','MGM/UA','Discontinued','5.1','LBX',24.98,'NR',1968,'SciFi','2.20:1'),
(8,'2001: A Space Odyssey (Repackaged Version)','Warner Brothers','Discontinued','5.1','LBX',24.98,'G',1968,'SciFi','2.20:1'),
(9,'2010: The year We Made Contact','MGM/UA','Discontinued','5.1','LBX',24.98,'PG',1984,'SciFi','2.35:1'),
(10,'3 Days Of The Condor','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1975,'Mystery/Suspense','2.35:1'),
(11,'48 HRS.','Paramount','Out','5.1','LBX',29.99,'R',1983,'Action/Adventure','1.85:1'),
(12,'8 Seconds','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1994,'Action/Adventure','1.85:1'),
(13,'9 1/2 Weeks','MGM/UA','Discontinued','SUR','LBX',24.98,'NR',1986,'Drama','1.66:1'),
(14,'Above The Law','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1988,'Action/Adventure','1.85:1'),
(15,'Absolute Power','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.99,'R',1997,'Action/Adventure','2.35:1'),
(16,'Ace Ventura: Pet Detective','Warner Brothers','Out','5.1','4:3',35.9,'PG-13',1994,'Comedy','1.33:1'),
(17,'Ace Ventura: When Nature Calls','Warner Brothers','Out','5.1','4:3, LBX, 16:9',55.55,'PG-13',1995,'Comedy','2.35:1'),
(18,'Action Jackson','Warner Brothers','Out','2.0','4:3',14.98,'R',1988,'Action/Adventure','1.33:1'),
(19,'Action Pack Gift Set','Warner Brothers','Out','VAR','VAR',99.92,'VAR',1973,'Action/Adventure','VAR'),
(20,'Adam Sandler Collection','Universal','Out','5.1','4:3, LBX',64.98,'VAR',1975,'Comedy','VAR'),
(21,'Adam''s Rib','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1949,'Comedy','1.33:1'),
(22,'Addams Family','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1991,'Comedy','1.85:1'),
(23,'Addams Family Values','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1993,'Comedy','1.85:1'),
(24,'Addicted to Love','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Comedy','1.85:1'),
(25,'Adventures Of Pinocchio','New Line','Out','5.1','4:3, LBX',24.98,'G',1996,'Family','2.35:1'),
(26,'Adventures Of Priscilla, Queen Of The Desert (MGM/UA)','MGM/UA','Out','SUR','LBX',24.98,'R',1994,'Comedy','2.35:1'),
(27,'Adventures Of Sebastian Cole','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Comedy','1.85:1'),
(28,'Affliction','Universal','Out','SUR','LBX',29.98,'R',1998,'Drama','1.85:1'),
(29,'Al Pacino Collection','Universal','Out','5.1','4:3, LBX, 16:9',94.98,'R',1970,'VAR','VAR'),
(30,'Alanis Morissette: Jagged Little Pill, Live','Warner Brothers','Out','SUR','4:3',24.98,'NR',1997,'Music','1.33:1'),
(31,'Alfred Hitchcock Collection (Box Set)','Universal','Out','VAR','4:3, LBX, 16:9',74.98,'VAR',1972,'Mystery/Suspense','VAR'),
(32,'All Dogs Christmas Carol','MGM/UA','Out','SUR','4:3',24.98,'G',1998,'Animation','1.33:1'),
(33,'All Quiet On The Western Front (1930)','Universal','Out','1.0','4:3',24.98,'NR',1930,'Drama','1.33:1'),
(34,'All The President''s Men','Warner Brothers','Out','2.0','4:3, LBX, 16:9',19.98,'PG',1976,'Drama','1.85:1'),
(35,'Altered States','Warner Brothers','Out','5.1','LBX, 16:9',14.98,'R',1980,'SciFi','1.85:1'),
(36,'Always','Universal','Out','5.1','LBX',24.98,'PG',1989,'Drama','1.85:1'),
(37,'Amadeus','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG',1984,'Drama','2.35:1'),
(38,'American Flyers','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG-13',1985,'Drama','2.35:1'),
(39,'American Gigolo','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1980,'Drama','1.85:1'),
(40,'American Graffiti: Collector''s Edition','Universal','Out','SUR','LBX, 16:9',29.98,'PG',1973,'Comedy','2.35:1'),
(41,'American History X: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1998,'Drama','1.85:1'),
(42,'American in Paris (MGM/UA)','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1951,'Musical','1.33:1'),
(43,'American In Paris (Warner)','Warner Brothers','Out','1.0','4:3',24.98,'NR',1951,'Musical','1.33:1'),
(44,'American Pie: Collector''s Edition (R Rated Version)','Universal','Out','5.1','LBX, 16:9',24.98,'R',1999,'Comedy','1.85:1'),
(45,'American Pie: Collector''s Edition (Unrated Version)','Universal','Out','5.1','LBX, 16:9',24.98,'NR',1999,'Comedy','1.85:1'),
(46,'American President','Warner Brothers','Out','5.1','LBX',19.98,'PG-13',1995,'Comedy','2.35:1'),
(47,'Analyze This','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1999,'Comedy','1.85:1'),
(48,'Anchors Aweigh','Warner Brothers','Out','SUR','4:3',24.98,'NR',1945,'Musical','1.33:1'),
(49,'Annie Hall','MGM/UA','Out','1.0','4:3, LBX',19.98,'PG',1976,'Action/Adventure','1.85:1'),
(50,'Another 48 Hours','Paramount','Out','5.1','LBX',29.99,'R',1990,'Action/Adventure','1.85:1'),
(51,'Apocalypse Now','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1979,'Action/Adventure','2.00:1'),
(52,'Apollo 13 (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG',1995,'Drama','2.35:1'),
(53,'Apollo 13: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG',1995,'Drama','2.35:1'),
(54,'Apostle: Collector''s Edition','Universal','Discontinued','SUR','LBX',34.98,'PG-13',1997,'Drama','1.85:1'),
(55,'Army Of Darkness','Universal','Out','SUR','LBX',24.98,'R',1993,'Horror','1.85:1'),
(56,'Art Garfunkel: Across America','Warner Brothers','Out','2.0','4:3',24.99,'NR',2000,'Music','1.33:1'),
(57,'Arthur','Warner Brothers','Out','2.0','4:3',19.98,'PG',1981,'Comedy','1.33:1'),
(58,'Assassins','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1995,'Action/Adventure','1.85:1'),
(59,'Astronaut''s Wife, The','New Line','Out','5.1','LBX, 16:9',24.98,'R',1999,'SciFi','1.78:1'),
(60,'At First Sight','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1999,'Drama','1.78:1'),
(61,'Austin Powers: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Comedy','2.10:1'),
(62,'Austin Powers: The Spy Who Shagged Me: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'PG-13',1999,'Comedy','2.35:1'),
(63,'Avengers: The Movie','Warner Brothers','Out','5.1','4:3, LBX',19.98,'PG-13',1998,'Action/Adventure','1.85:1'),
(64,'Babe (DTS)','Universal','Cancelled','DTS','4:3',34.98,'G',1995,'Family','1.33:1'),
(65,'Babe: Pig In The City','Universal','Out','5.1','4:3, LBX, 16:9',29.98,'PG',1998,'Family','1.85:1'),
(66,'Bachelor','New Line','Out','5.1','4:3, LBX',24.98,'PG-13',1999,'Comedy','1.85:1'),
(67,'Back To School','MGM/UA','Out','5.0','4:3, LBX',24.98,'PG-13',1986,'Comedy','2.35:1'),
(68,'Backdraft','Universal','Out','5.1','LBX',24.98,'R',1991,'Action/Adventure','2.35:1'),
(69,'Badlands','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'PG',1973,'Drama','1.85:1'),
(70,'Barbarella','Paramount','Out','1.0','LBX, 16:9',29.99,'PG',1968,'SciFi','2.35:1'),
(71,'Barefoot In The Park','Paramount','Out','1.0','LBX, 16:9',29.99,'G',1967,'Comedy','1.85:1'),
(72,'Barry Lyndon','Warner Brothers','Discontinued','SUR','LBX',24.98,'PG',1975,'Drama','1.66:1'),
(73,'Baseball','Warner Brothers','Out','2.0','4:3',179.98,'NR',1994,'Documentary','1.33:1'),
(74,'BASEketball','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Comedy','1.85:1'),
(75,'Bataan','MGM/UA','Discontinued','1.0','4:3',19.98,'NR',1943,'Drama','1.33:1'),
(76,'Batman','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1989,'Action/Adventure','1.85:1'),
(77,'Batman & Robin','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','1.85:1'),
(78,'Batman Beyond: The Movie','Warner Brothers','Out','SUR','4:3',19.98,'NR',1999,'Animation','1.33:1'),
(79,'Batman Forever','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1995,'Action/Adventure','1.85:1'),
(80,'Batman Returns','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1992,'Action/Adventure','1.85:1'),
(81,'Batman: Mask Of The Phantasm','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1993,'Animation','1.85:1'),
(82,'Batteries Not Included','Universal','Out','5.1','LBX, 16:9',24.98,'PG',1987,'SciFi','1.85:1'),
(83,'Battlestar Galactica','Universal','Out','1.0','LBX',24.98,'PG',1978,'SciFi','1.85:1'),
(84,'Beavis And Butt-Head Do America','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1996,'Comedy','1.85:1'),
(85,'Bed Of Roses','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1996,'Drama','1.85:1'),
(86,'Beethoven','Universal','Out','SUR','4:3',24.98,'PG',1992,'Family','1.33:1'),
(87,'Beethoven''s 2nd','Universal','Out','SUR','LBX, 16:9',24.98,'PG',1993,'Family','1.85:1'),
(88,'Beetlejuice','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1988,'Comedy','1.85:1'),
(89,'Before Sunrise','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1995,'Drama','1.85:1'),
(90,'Beguiled','Universal','Out','1.0','LBX, 16:9',24.98,'R',1971,'Western','1.85:1'),
(91,'Ben-Hur','MGM/UA','Postponed','2.0','LBX, 16:9',24.98,'NR',1959,'Drama','1.78:1'),
(92,'Besieged: Platinum Edition','New Line','Out','SUR','4:3, LBX, 16:9',24.98,'R',1998,'Drama','1.66:1'),
(93,'Best Bits Of Mr. Bean (Universal)','Universal','Out','2.0','4:3',29.98,'NR',1996,'TV Classics','1.33:1'),
(94,'Best Man','Universal','Out','5.1/DTS','LBX, 16:9',24.98,'R',1999,'Comedy','1.85:1'),
(95,'Betrayed','MGM/UA','Out','SUR','4:3, LBX',24.98,'R',1988,'Mystery/Suspense','1.85:1'),
(96,'Betsy','Warner Brothers','Out','1.0','4:3',14.98,'R',1978,'Drama','1.33:1'),
(97,'Big Bully','Warner Brothers','Out','5.1','LBX',24.98,'PG',1996,'Comedy','1.85:1'),
(98,'Big Red One','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1980,'Action/Adventure','1.85:1'),
(99,'Big Sleep','Warner Brothers','Out','1.0','4:3',19.98,'NR',1946,'Mystery/Suspense','1.33:1'),
(100,'Billy Madison','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1995,'Comedy','1.85:1'),
(101,'Bird On A Wire','Universal','Out','SUR','LBX',24.98,'PG-13',1990,'Drama','2.35:1'),
(102,'Birdcage','MGM/UA','Out','SUR','4:3, LBX, 16:9',24.98,'R',1996,'Comedy','1.85:1'),
(103,'Birds: Collector''s Edition','Universal','Out','1.0','LBX, 16:9',29.98,'PG-13',1963,'Horror','1.85:1'),
(104,'Bjork: All Is Full Of Love','Warner Brothers','Out','2.0','4:3',9.95,'NR',1999,'Music','1.33:1'),
(105,'Bjork: Volumen','Warner Brothers','Out','2.0','4:3',24.98,'NR',1999,'Music','1.33:1'),
(106,'Black Beauty (1994)','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'G',1994,'Family','1.85:1'),
(107,'Black Dog','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Action/Adventure','2.35:1'),
(108,'Black Rain (1989)','Paramount','Out','5.1','LBX',29.99,'R',1989,'Mystery/Suspense','2.35:1'),
(109,'Black Stallion','MGM/UA','Out','SUR','4:3, LBX',24.98,'G',1979,'Adventure','1.85:1'),
(110,'Blade Runner: Director''s Cut','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'R',1982,'SciFi','2.35:1'),
(111,'Blade: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1998,'SciFi','2.35:1'),
(112,'Blast From The Past','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1999,'Comedy','2.35:1'),
(113,'Blazing Saddles','Warner Brothers','Out','2.0','4:3, LBX, 16:9',24.98,'R',1974,'Comedy','2.35:1'),
(114,'Blood, Guts, Bullets And Octane','Universal','Out','SUR','LBX',24.98,'R',1998,'Action/Adventure','1.85:1'),
(115,'Blown Away','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1994,'Action/Adventure','2.35:1'),
(116,'Blue Hawaii','Paramount','Out','5.1','LBX, 16:9',19.99,'PG',1961,'Musical','2.35:1'),
(117,'Blue Velvet (MGM/UA)','MGM/UA','Out','SUR','LBX, 16:9',24.98,'R',1986,'Mystery/Suspense','2.35:1'),
(118,'Blues Brothers 2000 (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1998,'Comedy','1.85:1'),
(119,'Blues Brothers 2000: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG-13',1998,'Comedy','1.85:1'),
(120,'Blues Brothers: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'NR',1980,'Comedy','1.85:1'),
(121,'Body Heat (1981)','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.99,'R',1981,'Thriller','1.85:1'),
(122,'Body Snatchers','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1993,'Horror','2.35:1'),
(123,'Bodyguard','Warner Brothers','Out','5.1','4:3',24.98,'R',1992,'Action/Adventure','1.33:1'),
(124,'Boiling Point (1993)','Warner Brothers','Out','SUR','4:3',14.98,'R',1993,'Action/Adventure','1.33:1'),
(125,'Bone Collector: Collector''s Edition','Universal','Out','5.1/DTS','LBX, 16:9',29.98,'R',1999,'Mystery/Suspense','2.35:1'),
(126,'Bonfire Of The Vanities','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1990,'Comedy','1.85:1'),
(127,'Bonnie And Clyde (Original Version)','Warner Brothers','Discontinued','1.0','4:3',19.98,'NR',1967,'Action/Adventure','1.33:1'),
(128,'Bonnie And Clyde (Remastered Version)','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'NR',1967,'Drama','1.85:1'),
(129,'Boogie Nights: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1997,'Drama','2.35:1'),
(130,'Born On The Fourth Of July','Universal','Discontinued','5.1','LBX',26.98,'R',1989,'Drama','1.85:1'),
(131,'Born On The Fourth Of July (DTS)','Universal','Out','DTS','LBX',34.98,'R',1989,'Drama','2.35:1'),
(132,'Bound For Glory','MGM/UA','Out','1.0','LBX',24.98,'PG',1976,'Drama','2.35:1'),
(133,'Bowfinger','Universal','Out','5.1/DTS','LBX, 16:9',26.98,'PG-13',1999,'Comedy','1.85:1'),
(134,'Boxer (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1997,'Drama','1.85:1'),
(135,'Boxer: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'R',1997,'Drama','1.66:1'),
(136,'Boys On The Side','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1995,'Drama','2.35:1'),
(137,'Brainstorm','MGM/UA','Discontinued','SUR','LBX',24.98,'PG',1983,'Action/Adventure','1.85:1'),
(138,'Brazil','Universal','Out','SUR','LBX',24.98,'R',1985,'SciFi','1.85:1'),
(139,'Breakdown','Paramount','Out','5.1','LBX',29.99,'R',1997,'Mystery/Suspense','2.35:1'),
(140,'Breakfast At Tiffany''s','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1961,'Comedy','1.85:1'),
(141,'Breakfast Club','Universal','Out','1.0','LBX',24.98,'R',1985,'Drama','1.85:1'),
(142,'Breathless','MGM/UA','Out','2.0','4:3',24.98,'R',1983,'Drama','1.33:1'),
(143,'Bride Of Chucky','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Horror','1.85:1'),
(144,'Bride Of Frankenstein: Classic Monster Collection','Universal','Out','1.0','4:3',29.98,'NR',1935,'Horror','1.33:1'),
(145,'Bridge At Remagen','MGM/UA','Out','1.0','LBX',24.98,'PG',1969,'Action/Adventure','2.35:1'),
(146,'Bridge Too Far','Warner Brothers','Out','SUR','LBX, 16:9',24.98,'PG',1977,'Action/Adventure','2.35:1'),
(147,'Bridges Of Madison County','Warner Brothers','Out','5.1','4:3',24.98,'PG-13',1995,'Drama','1.33:1'),
(148,'Brigadoon (MGM/UA)','MGM/UA','Discontinued','2.0','LBX',24.98,'NR',1954,'Musical','2.35:1'),
(149,'Brigadoon (Warner)','Warner Brothers','Out','2.0','LBX',24.98,'NR',1954,'Musical','2.35:1'),
(150,'Bringing Out The Dead','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Drama','1.78:1'),
(151,'Buffalo 66','Universal','Out','SUR','LBX, 16:9',24.98,'R',1998,'Comedy','1.85:1'),
(152,'Bulletproof','Universal','Out','5.1','LBX, 16:9',24.98,'R',1996,'Action/Adventure','2.35:1'),
(153,'Bullitt','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1968,'Action/Adventure','1.85:1'),
(154,'Burbs','Universal','Out','SUR','LBX, 16:9',24.98,'PG',1989,'Comedy','1.85:1'),
(155,'Burglar','Warner Brothers','Out','SUR','4:3',14.98,'R',1987,'Comedy','1.33:1'),
(156,'Burn The Floor','Universal','Out','5.1/DTS','LBX, 16:9',29.98,'NR',1999,'Ballet','1.77:1'),
(157,'Cabaret: Special Edition','Warner Brothers','Out','SUR','LBX',24.98,'PG',1972,'Musical','1.85:1'),
(158,'Caddyshack','Warner Brothers','Out','2.0','4:3',24.98,'R',1980,'Comedy','1.33:1'),
(159,'Caddyshack 2','Warner Brothers','Out','SUR','4:3',14.98,'PG',1988,'Comedy','1.33:1'),
(160,'Caddyshack: Special Edition','Warner Brothers','Out','2.0','LBX',24.98,'R',1980,'Comedy','1.85:1'),
(161,'Camelot: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'G',1967,'Musical','2.35:1'),
(162,'Campus Comedy Classics: Collector''s Edition','Universal','Out','VAR','LBX, 16:9',84.98,'R',1973,'Comedy','1.85:1'),
(163,'Candidate','Warner Brothers','Out','2.0','4:3',19.98,'PG',1972,'Drama','1.33:1'),
(164,'Cannonball Run 2','Warner Brothers','Out','2.0','4:3',14.98,'PG',1984,'Comedy','1.33:1'),
(165,'Career Opportunities','Universal','Out','SUR','LBX',24.98,'PG-13',1991,'Comedy','2.35:1'),
(166,'Carlito''s Way','Universal','Out','5.1','LBX',26.98,'R',1993,'Drama','2.35:1'),
(167,'Carnal Knowledge (MGM/UA)','MGM/UA','Out','2.0','4:3, LBX',29.95,'R',1971,'Drama','1.85:1'),
(168,'Carrie','MGM/UA','Discontinued','5.1','LBX',19.98,'R',1976,'Horror','2.35:1'),
(169,'Casablanca: Special Edition','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1942,'Drama','1.33:1'),
(170,'Casablanca: Special Edition (Warner)','Warner Brothers','Out','1.0','4:3',24.98,'NR',1942,'Drama','1.33:1'),
(171,'Casino','Universal','Out','5.1','LBX',26.98,'R',1995,'Drama','2.35:1'),
(172,'Cat On A Hot Tin Roof (1958)','MGM/UA','Discontinued','1.0','4:3, LBX, 16:9',24.98,'NR',1958,'Drama','1.85:1'),
(173,'Cat On A Hot Tin Roof (Warner)','Warner Brothers','Out','1.0','4:3, LBX, 16:9',24.98,'NR',1958,'Drama','1.85:1'),
(174,'Cats (Universal)','Universal','Out','5.1','LBX',29.98,'NR',1998,'Musical','1.78:1'),
(175,'Chamber','Universal','Out','5.1','LBX, 16:9',26.98,'R',1996,'Drama','2.35:1'),
(176,'Chariots Of Fire','Warner Brothers','Out','SUR','4:3',24.98,'PG',1981,'Drama','1.33:1'),
(177,'Child''s Play','MGM/UA','Out','2.0','4:3',19.98,'R',1988,'Horror','1.33:1'),
(178,'Child''s Play 2: Chucky''s Back','Universal','Out','SUR','LBX, 16:9',24.98,'R',1990,'Horror','1.85:1'),
(179,'Chill Factor: Special Edition','Warner Brothers','Out','5.1','LBX',19.98,'R',1999,'Action/Adventure','1.85:1'),
(180,'Chinatown','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1974,'Mystery/Suspense','2.35:1'),
(181,'Chitty Chitty Bang Bang','MGM/UA','Out','5.1','4:3',24.98,'G',1968,'Family','1.33:1'),
(182,'Christmas Story (MGM/UA)','MGM/UA','Discontinued','1.0','4:3',24.98,'PG',1984,'Comedy','1.33:1'),
(183,'Christmas Story (Warner)','Warner Brothers','Out','1.0','4:3',19.98,'PG',1984,'Comedy','1.85:1'),
(184,'Circuit 1:1','Warner Brothers','Out','5.1','4:3',14.98,'NR',1999,'Music','1.33:1'),
(185,'Circuit 1:2','Warner Brothers','Out','5.1','4:3',14.98,'NR',1999,'Music','1.33:1'),
(186,'Circuit 1:3','Warner Brothers','Out','5.1','LBX',14.98,'NR',1999,'Music','1.85:1'),
(187,'Circuit 1:4','Warner Brothers','Out','SUR','4:3, LBX, 16:9',14.98,'NR',1999,'Music','VAR'),
(188,'Circuit 1:5','Warner Brothers','Out','5.1','4:3',14.98,'NR',2000,'Music','1.33:1'),
(189,'Circuit 6','Warner Brothers','Out','5.1','4:3, LBX',14.98,'NR',2000,'Music','1.33:1'),
(190,'City Hall','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1996,'Drama','1.85:1'),
(191,'City Of Angels: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',1998,'Drama','2.35:1'),
(192,'Clan Of The Cave Bear','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1986,'Drama','2.35:1'),
(193,'Classic Steve Martin','Universal','Out','1.0','4:3, LBX',59.98,'R',1973,'Comedy','VAR'),
(194,'Clean And Sober','Warner Brothers','Out','SUR','4:3',14.98,'R',1988,'Drama','1.33:1'),
(195,'Clear And Present Danger','Paramount','Out','5.1','LBX',29.99,'PG-13',1994,'Mystery/Suspense','2.35:1'),
(196,'Cleopatra Jones','Warner Brothers','Out','1.0','LBX, 16:9',14.98,'PG',1973,'Action/Adventure','2.35:1'),
(197,'Client','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG-13',1994,'Drama','2.35:1'),
(198,'Clockers','Universal','Out','5.1','LBX, 16:9',24.98,'R',1995,'Drama','1.85:1'),
(199,'Clockwork Orange','Warner Brothers','Discontinued','1.0','LBX',24.98,'R',1971,'SciFi','1.66:1'),
(200,'Clue','Paramount','Out','1.0','LBX, 16:9',29.99,'PG',1985,'Comedy','1.78:1'),
(201,'Clueless','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1995,'Comedy','1.85:1'),
(202,'CNN Millennium 2000: Incredible Moments From The Celebration','Warner Brothers','Out','2.0','4:3',19.99,'NR',2000,'Documentary','1.33:1'),
(203,'Cobra (1986)','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1986,'Action/Adventure','1.85:1'),
(204,'Color Purple','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',1985,'Drama','1.85:1'),
(205,'Coma','Warner Brothers','Out','1.0','LBX',19.98,'PG',1978,'Mystery/Suspense','1.85:1'),
(206,'Coming To America','Paramount','Out','5.1','LBX',29.99,'R',1988,'Comedy','1.85:1'),
(207,'Conan The Barbarian','Universal','Out','1.0','LBX',24.98,'R',1981,'Action/Adventure','2.35:1'),
(208,'Conan The Barbarian: Collector''s Edtion','Universal','Out','1.0','LBX, 16:9',29.98,'R',1982,'SciFi','2.35:1'),
(209,'Conan The Destroyer','Universal','Out','1.0','LBX',24.98,'PG',1984,'Action/Adventure','2.35:1'),
(210,'Congo','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1995,'Action/Adventure','1.85:1'),
(211,'Conspiracy Theory','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Action/Adventure','2.35:1'),
(212,'Contact: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG',1997,'SciFi','2.35:1'),
(213,'Cool Hand Luke','Warner Brothers','Out','2.0','4:3, LBX, 16:9',19.98,'NR',1967,'Action/Adventure','2.35:1'),
(214,'Cooley High','MGM/UA','Out','1.0','4:3',24.98,'PG',1975,'Comedy','1.33:1'),
(215,'Cop & A Half','Universal','Out','SUR','LBX, 16:9',24.98,'PG',1993,'Comedy','1.85:1'),
(216,'Copycat: Special Edition','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1995,'Action/Adventure','2.35:1'),
(217,'Corrina, Corrina','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1994,'Drama','1.85:1'),
(218,'Corruptor','New Line','Out','5.1','LBX, 16:9',24.98,'R',1999,'Action/Adventure','2.35:1'),
(219,'Court Jester','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1956,'Comedy','1.85:1'),
(220,'Cowboy Way','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(221,'Cowboys','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG',1972,'Western','2.20:1'),
(222,'Crash','New Line','Out','2.0','LBX, 16:9',24.98,'NC-17',1996,'Drama','1.66:1'),
(223,'CreepShow','Warner Brothers','Out','SUR','LBX',19.98,'R',1982,'Horror','1.85:1'),
(224,'Crooklyn','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(225,'Crush','Warner Brothers','Out','5.1','LBX',24.98,'R',1993,'Horror','1.85:1'),
(226,'Cry Freedom','Universal','Out','SUR','LBX',26.98,'PG',1987,'Drama','2.35:1'),
(227,'Cry In The Dark','Warner Brothers','Out','SUR','LBX, 16:9',19.98,'PG-13',1988,'Drama','2.35:1'),
(228,'Cyborg','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1989,'SciFi','1.85:1'),
(229,'Damage','New Line','Out','SUR','LBX, 16:9',24.98,'UNK',1992,'Drama','1.66:1'),
(230,'Dangerous Beauty','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1998,'Drama','2.35:1'),
(231,'Dangerous Ground','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Action/Adventure','1.85:1'),
(232,'Dangerous Liaisons','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1988,'Mystery/Suspense','1.85:1'),
(233,'Dante''s Peak (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1997,'Action/Adventure','2.35:1'),
(234,'Dante''s Peak: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG-13',1997,'Action/Adventure','2.35:1'),
(235,'Dark City: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Action/Adventure','2.35:1'),
(236,'Dark Half','MGM/UA','Out','SUR','4:3',19.98,'R',1993,'Horror','1.33:1'),
(237,'Dark Victory','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1939,'Mystery/Suspense','1.33:1'),
(238,'Darkman','Universal','Out','SUR','LBX, 16:9',24.98,'R',1990,'Horror','1.85:1'),
(239,'Darkman 2: The Return Of Durant','Universal','Out','SUR','LBX',24.98,'R',1994,'SciFi','1.85:1'),
(240,'Dave','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG-13',1993,'Action/Adventure','2.35:1'),
(241,'Day of The Jackal','Universal','Out','1.0','LBX',24.98,'PG',1973,'Action/Adventure','1.85:1'),
(242,'Daylight (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1996,'Action/Adventure','1.85:1'),
(243,'Daylight: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',26.98,'PG-13',1996,'Drama','1.85:1'),
(244,'Days Of Heaven','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1978,'Drama','1.85:1'),
(245,'Days Of Thunder','Paramount','Out','5.1','LBX',29.99,'PG-13',1990,'Action/Adventure','2.35:1'),
(246,'Dazed & Confused','Universal','Out','SUR','LBX',24.98,'R',1993,'Comedy','1.85:1'),
(247,'Dead Again: Special Edition','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1991,'Mystery/Suspense','1.85:1'),
(248,'Dead Bang','Warner Brothers','Out','SUR','4:3',14.98,'R',1989,'Action/Adventure','1.33:1'),
(249,'Dead Calm','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1989,'Mystery/Suspense','2.35:1'),
(250,'Dead Man On Campus','Paramount','Out','5.1','LBX',29.99,'R',1998,'Comedy','1.85:1');
INSERT INTO Movies VALUES
(251,'Dead Man Walking','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1995,'Drama','1.85:1'),
(252,'Dead Men Don''t Wear Plaid','Universal','Out','1.0','LBX',24.98,'PG',1982,'Comedy','1.85:1'),
(253,'Death Becomes Her','Universal','Out','SUR','4:3',24.98,'PG-13',1992,'Comedy','1.33:1'),
(254,'Deathtrap','Warner Brothers','Out','1.0','4:3',14.98,'PG',1982,'Mystery/Suspense','1.33:1'),
(255,'Deconstructing Harry','New Line','Out','1.0','4:3, LBX, 16:9',24.98,'R',1997,'Comedy','1.85:1'),
(256,'Deep Blue Sea: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1999,'Horror','2.35:1'),
(257,'Deep Cover','New Line','Out','5.1','4:3, LBX, 16:9',14.98,'R',1992,'Mystery/Suspense','1.78:1'),
(258,'Deep Impact','Paramount','Out','5.1','LBX',29.99,'PG-13',1998,'Action/Adventure','2.35:1'),
(259,'Deer Hunter','Universal','Out','SUR','LBX',26.98,'R',1978,'Drama','2.35:1'),
(260,'Deliverance','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1972,'Action/Adventure','2.35:1'),
(261,'Demolition Man: Special Edition','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1993,'Action/Adventure','2.35:1'),
(262,'Depeche Mode: The Videos ''86-''98','Warner Brothers','Out','PCM','4:3',24.98,'NR',1998,'Music','1.33:1'),
(263,'Desperately Seeking Susan: Special Edition','MGM/UA','Out','1.0','4:3, LBX',19.98,'PG-13',1985,'Comedy','1.85:1'),
(264,'Detroit Rock City: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1999,'Comedy','2.35:1'),
(265,'Devil''s Advocate: Special Edition (New Release)','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'SciFi','2.35:1'),
(266,'Devil''s Advocate: Special Edition (Original Release)','Warner Brothers','Discontinued','5.1','LBX, 16:9',24.98,'R',1997,'Mystery/Suspense','2.35:1'),
(267,'Diggstown','MGM/UA','Out','2.0','LBX',24.98,'R',1992,'Comedy','1.85:1'),
(268,'Diner','Warner Brothers','Out','2.0','LBX, 16:9',24.98,'R',1982,'Comedy','1.85:1'),
(269,'Dinner Game','Universal','Out','SUR','LBX, 16:9',24.98,'PG-13',1999,'Foreign','2.35:1'),
(270,'Dirty Dozen','MGM/UA','Discontinued','SUR','LBX',24.98,'NR',1967,'Action/Adventure','1.75:1'),
(271,'Dirty Dozen (Warner)','Warner Brothers','Out','SUR','LBX',24.98,'NR',1967,'Action/Adventure','1.75:1'),
(272,'Dirty Harry','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1972,'Action/Adventure','1.85:1'),
(273,'Dirty Work','MGM/UA','Out','5.1','LBX',24.98,'PG-13',1998,'Comedy','1.85:1'),
(274,'Disclosure','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1994,'Drama','2.35:1'),
(275,'Disturbing Behavior: Special Edition','MGM/UA','Out','5.1','4:3, LBX, 16:9',19.98,'R',1998,'Horror','1.85:1'),
(276,'Divine Madness','Warner Brothers','Out','SUR','LBX',14.98,'R',1980,'Comedy','1.85:1'),
(277,'Do The Right Thing','Universal','Out','SUR','LBX',24.98,'R',1989,'Drama','1.66:1'),
(278,'Doc Hollywood','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1991,'Comedy','1.33:1'),
(279,'Doctor Zhivago','MGM/UA','Cancelled','5.1','LBX, 16:9',24.98,'PG-13',1965,'Drama','2.35:1'),
(280,'Dog Day Afternoon','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'R',1975,'Action/Adventure','1.85:1'),
(281,'Dolores Claiborne: Special Edition','Warner Brothers','Out','SUR','LBX, 16:9',19.98,'R',1994,'Mystery/Suspense','2.35:1'),
(282,'Don Juan de Marco','New Line','Out','5.1','4:3, LBX',24.98,'PG-13',1995,'Action/Adventure','1.85:1'),
(283,'Doors: Collector''s Edition','Universal','Out','2.0','4:3',34.98,'NR',1985,'Music','1.33:1'),
(284,'Double Jeopardy','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Mystery/Suspense','1.78:1'),
(285,'Dr. No','MGM/UA','Discontinued','1.0','4:3, LBX, 16:9',24.98,'PG',1962,'Action/Adventure','1.66:1'),
(286,'Dr. No: Special Edition','MGM/UA','Discontinued','1.0','LBX, 16:9',34.98,'PG',1962,'Action/Adventure','1.77:1'),
(287,'Dracula: Classic Monster Collection','Universal','Out','1.0','4:3',29.98,'NR',1931,'Horror','1.33:1'),
(288,'Dragnet','Universal','Out','SUR','LBX, 16:9',24.98,'PG-13',1987,'Comedy','1.77:1'),
(289,'Dragon: The Bruce Lee Story: Collector''s Edition','Universal','Out','SUR','LBX',34.98,'PG-13',1993,'Action/Adventure','2.35:1'),
(290,'Dragonheart (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1996,'SciFi','2.35:1'),
(291,'Dragonheart: Collector''s Edition','Universal','Out','5.1','LBX',34.98,'PG-13',1996,'Action/Adventure','2.35:1'),
(292,'Driving Miss Daisy','Warner Brothers','Out','SUR','4:3',19.98,'PG',1989,'Drama','1.33:1'),
(293,'Drop Dead Gorgeous','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1999,'Comedy','1.85:1'),
(294,'Drop Squad','Universal','Out','SUR','LBX, 16:9',24.98,'R',1994,'Drama','1.85:1'),
(295,'Drop Zone','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1994,'Action/Adventure','2.35:1'),
(296,'Dudley Do Right','Universal','Out','5.1/DTS','4:3, LBX, 16:9',24.98,'PG',1999,'Comedy','2.35:1'),
(297,'Dumb & Dumber','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(298,'Dune','Universal','Out','5.1','LBX',24.98,'PG-13',1984,'SciFi','2.35:1'),
(299,'DVD F/X Gift Set','New Line','Out','5.1','LBX, 16:9',74.98,'VAR',1976,'SciFi','VAR'),
(300,'Ed-TV (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1999,'Comedy','1.85:1'),
(301,'Ed-TV: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG-13',1999,'Comedy','1.85:1'),
(302,'Eiger Sanction','Universal','Out','1.0','LBX',24.98,'R',1975,'Action/Adventure','2.35:1'),
(303,'El Dorado','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1967,'Western','1.85:1'),
(304,'Election','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Comedy','2.35:1'),
(305,'Elvis ''56','Warner Brothers','Out','2.0','4:3',24.98,'NR',1987,'Music','1.33:1'),
(306,'Elvis Presley: Aloha From Hawaii','Warner Brothers','Out','5.1','4:3',24.98,'NR',1973,'Music','1.33:1'),
(307,'Elvis Presley: The Alternate Aloha Concert','Warner Brothers','Out','5.1','4:3',24.98,'NR',1973,'Music','1.33:1'),
(308,'Embrace Of The Vampire','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1994,'Horror','1.85:1'),
(309,'End Of Days: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',29.98,'R',1999,'Horror','2.35:1'),
(310,'End Of Violence','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1996,'Drama','2.35:1'),
(311,'Enter The Dragon: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1973,'Action/Adventure','2.35:1'),
(312,'Eraser','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1996,'Action/Adventure','2.35:1'),
(313,'Eric Clapton & Friends: In Concert: The Crossroads Benefit','Warner Brothers','Out','SUR','4:3',24.99,'NR',1999,'Music','1.33:1'),
(314,'Eric Clapton Unplugged','Warner Brothers','Out','5.1','4:3',24.98,'NR',1992,'Music','1.33:1'),
(315,'Eric Clapton: 24 Nights','Warner Brothers','Out','2.0','4:3',24.99,'NR',1991,'Music','1.33:1'),
(316,'Eric Clapton: Clapton Chronicles: The Best Of Eric Clapton','Warner Brothers','Out','2.0','4:3',24.99,'NR',1999,'Music','1.33:1'),
(317,'Escape From Alcatraz','Paramount','Out','1.0','LBX',29.99,'PG',1979,'Action/Adventure','1.85:1'),
(318,'Escape From L.A.','Paramount','Out','5.1','LBX',29.99,'R',1996,'SciFi','2.35:1'),
(319,'Event Horizon','Paramount','Out','5.1','LBX',29.99,'R',1997,'SciFi','2.35:1'),
(320,'Excalibur','Warner Brothers','Out','5.1','LBX, 16:9',14.98,'R',1981,'SciFi','1.85:1'),
(321,'Executive Decision','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1996,'Action/Adventure','2.35:1'),
(322,'Exorcist, The','Warner Brothers','Discontinued','5.1','4:3, LBX, 16:9',24.98,'R',1973,'Horror','1.85:1'),
(323,'Exorcist 3','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'R',1990,'Horror','1.78:1'),
(324,'Exorcist: 25th Anniversary Special Edition','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1974,'Horror','1.85:1'),
(325,'Extreme Adventures Of Super Dave','MGM/UA','Out','2.0','LBX',24.98,'PG',1999,'Comedy','1.85:1'),
(326,'Extreme DVD Gift Set','New Line','Out','VAR','VAR',99.92,'VAR',1973,'VAR','VAR'),
(327,'Extreme Measures','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1996,'Mystery/Suspense','2.35:1'),
(328,'Eye Of The Needle','MGM/UA','Out','2.0','LBX',24.98,'R',1981,'Mystery/Suspense','1.85:1'),
(329,'Eyes Wide Shut','Warner Brothers','Discontinued','5.1','4:3',24.98,'R',1999,'Drama','1.33:1'),
(330,'F/X','MGM/UA','Out','2.0','4:3, LBX',19.98,'R',1986,'Action/Adventure','1.85:1'),
(331,'F/X 2','MGM/UA','Out','2.0','4:3, LBX',19.98,'PG-13',1991,'Action/Adventure','1.85:1'),
(332,'Face/Off','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1997,'Action/Adventure','2.35:1'),
(333,'Fair Game','Warner Brothers','Out','SUR','4:3',14.98,'R',1995,'Action/Adventure','1.33:1'),
(334,'Falcon & The Snowman','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1985,'Drama','1.85:1'),
(335,'Fallen','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.99,'R',1998,'Drama','1.85:1'),
(336,'Falling Down','Warner Brothers','Out','SUR','4:3, LBX, 16:9',14.98,'R',1993,'Drama','2.35:1'),
(337,'Far And Away','Universal','Out','5.1','LBX, 16:9',26.98,'PG-13',1992,'Drama','2.35:1'),
(338,'Fast Times At Ridgemont High: Collector''s Edition','Universal','Out','1.0','LBX, 16:9',29.98,'R',1982,'Comedy','1.85:1'),
(339,'Father''s Day','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Comedy','2.35:1'),
(340,'Fear (1998)','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Mystery/Suspense','2.35:1'),
(341,'Fear And Loathing In Las Vegas','Universal','Out','SUR','LBX, 16:9',26.98,'R',1998,'Comedy','2.35:1'),
(342,'Fearless','Warner Brothers','Out','SUR','4:3',14.98,'R',1998,'Drama','1.33:1'),
(343,'Feeling Minnesota','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1996,'Mystery/Suspense','2.35:1'),
(344,'Ferris Bueller''s Day Off','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1986,'Comedy','2.35:1'),
(345,'Fiddler on The Roof: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',24.98,'G',1971,'Musical','2.35:1'),
(346,'Field of Dreams: Collector''s Edition','Universal','Out','SUR','LBX',34.98,'PG',1989,'Drama','1.85:1'),
(347,'Fierce Creatures','Universal','Out','5.1','4:3',24.98,'PG-13',1997,'Comedy','1.33:1'),
(348,'Filter: Title Of DVD','Warner Brothers','Out','2.0','4:3',24.99,'NR',1999,'Music','1.33:1'),
(349,'Final Analysis','Warner Brothers','Out','SUR','4:3',14.98,'R',1992,'Mystery/Suspense','1.33:1'),
(350,'Fire Down Below','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1997,'Action/Adventure','1.85:1'),
(351,'Firm','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Mystery/Suspense','1.85:1'),
(352,'First Deadly Sin','Warner Brothers','Out','SUR','4:3',14.98,'R',1980,'Mystery/Suspense','1.33:1'),
(353,'First Wives Club','Paramount','Out','5.1','LBX',29.99,'PG',1996,'Comedy','1.85:1'),
(354,'Fish Called Wanda','MGM/UA','Out','1.0','4:3, LBX',24.98,'R',1988,'Comedy','1.85:1'),
(355,'Fistful Of Dollars','MGM/UA','Out','1.0','4:3, LBX',24.98,'NR',1964,'Western','1.85:1'),
(356,'Five Corners (Universal)','Universal','Out','2.0','4:3',14.95,'R',1988,'Drama','1.33:1'),
(357,'Flawless','MGM/UA','Out','SUR','LBX',24.95,'R',1999,'Comedy','1.85:1'),
(358,'Fled','MGM/UA','Out','5.1','LBX, 16:9',24.98,'R',1996,'Action/Adventure','1.85:1'),
(359,'Fleetwood Mac: The Dance','Warner Brothers','Out','5.1','4:3',24.98,'NR',1997,'Music','1.33:1'),
(360,'Fletch','Universal','Out','SUR','LBX, 16:9',24.98,'PG',1985,'Comedy','1.85:1'),
(361,'Flintstones (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG',1994,'Comedy','1.85:1'),
(362,'Flintstones: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',29.98,'PG',1994,'Comedy','1.85:1'),
(363,'For a Few Dollars More','MGM/UA','Out','1.0','LBX',24.98,'NR',1965,'Western','2.35:1'),
(364,'For Love Of The Game','Universal','Out','5.1','LBX, 16:9',26.98,'PG-13',1999,'Drama','2.35:1'),
(365,'For Richer or Poorer','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1997,'Comedy','1.85:1'),
(366,'For Richer Or Poorer (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1997,'Comedy','1.85:1'),
(367,'For Whom The Bell Tolls','Universal','Out','1.0','4:3',26.98,'NR',1943,'Drama','1.33:1'),
(368,'For Your Eyes Only: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',34.98,'PG',1981,'Action/Adventure','2.35:1'),
(369,'Forbidden Planet (MGM/UA)','MGM/UA','Discontinued','SUR','4:3, LBX, 16:9',24.98,'G',1956,'SciFi','1.85:1'),
(370,'Forbidden Planet (Warner)','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'G',1956,'SciFi','1.85:1'),
(371,'Force 10 From Navarone','MGM/UA','Out','2.0','4:3, LBX',24.98,'PG',1978,'Action/Adventure','2.35:1'),
(372,'Forever Young','Warner Brothers','Out','SUR','4:3',14.98,'PG',1992,'Drama','1.33:1'),
(373,'Forget Paris','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG-13',1995,'Comedy','1.85:1'),
(374,'Four Weddings and a Funeral (MGM/UA)','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1994,'Comedy','1.85:1'),
(375,'Frank Sinatra: A Man & His Music + Ella + Jobim','Warner Brothers','Out','2.0','4:3',24.99,'NR',1965,'Music','1.33:1'),
(376,'Frank Sinatra: A Man & His Music Volume 1','Warner Brothers','Out','PCM','4:3',24.99,'NR',1966,'Music','1.33:1'),
(377,'Frank Sinatra: A Man And His Music Volume 2','Warner Brothers','Out','2.0','4:3',24.99,'NR',1967,'Music','1.33:1'),
(378,'Frank Sinatra: Francis Albert Sinatra Does His Thing','Warner Brothers','Out','PCM','4:3',24.99,'NR',1968,'Music','1.33:1'),
(379,'Frank Sinatra: Ol'' Blue Eyes Is Back','Warner Brothers','Out','PCM','4:3',24.99,'NR',1973,'Music','1.33:1'),
(380,'Frank Sinatra: Sinatra','Warner Brothers','Out','2.0','4:3',24.99,'NR',1969,'Music','1.33:1'),
(381,'Frank Sinatra: Sinatra In Concert At Royal Festival Hall','Warner Brothers','Out','PCM','4:3',24.99,'NR',1971,'Music','1.33:1'),
(382,'Frank Sinatra: The Main Event','Warner Brothers','Out','2.0','4:3',24.99,'NR',1974,'Music','1.33:1'),
(383,'Frank Sinatra: The Man And His Music With The Count Basie Orchestra','Warner Brothers','Out','2.0','4:3',24.99,'NR',1981,'Music','1.33:1'),
(384,'Frankenstein: Classic Monster Collection','Universal','Out','1.0','4:3',29.98,'NR',1931,'Horror','1.33:1'),
(385,'Frantic','Warner Brothers','Out','SUR','4:3',14.98,'R',1988,'Mystery/Suspense','1.33:1'),
(386,'Free Willy','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1993,'Family','2.35:1'),
(387,'Freejack','Warner Brothers','Out','5.1','LBX',24.98,'R',1991,'SciFi','2.35:1'),
(388,'Friday','New Line','Out','SUR','LBX, 16:9',24.98,'R',1995,'Comedy','1.78:1'),
(389,'Friday The 13th','Paramount','Out','1.0','LBX, 16:9',29.99,'R',1980,'Horror','1.85:1'),
(390,'Friday The 13th: Part 2','Paramount','Out','1.0','LBX, 16:9',29.99,'R',1981,'Horror','1.78:1'),
(391,'Fried Green Tomatoes: Collector''s Edition','Universal','Out','SUR','LBX, 16:9',29.98,'PG-13',1991,'Drama','1.85:1'),
(392,'Friends And Lovers','Universal','Out','SUR','4:3',24.98,'R',1999,'Drama','1.33:1'),
(393,'Frighteners','Universal','Out','5.1','LBX, 16:9',24.98,'R',1996,'Horror','1.66:1'),
(394,'From Russia with Love','MGM/UA','Discontinued','1.0','4:3, LBX, 16:9',24.98,'NR',1963,'Action/Adventure','1.66:1'),
(395,'Fugitive','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1993,'Action/Adventure','2.35:1'),
(396,'Full Force DVD Gift Set','New Line','Out','5.1','VAR',99.98,'VAR',1979,'Action/Adventure','VAR'),
(397,'Full Metal Jacket','Warner Brothers','Discontinued','1.0','4:3',24.98,'R',1987,'Drama','1.33:1'),
(398,'Funny Farm','Warner Brothers','Out','SUR','4:3',14.98,'PG',1988,'Comedy','1.33:1'),
(399,'Funny Thing Happened On The Way To The Forum','MGM/UA','Out','2.0','LBX',24.98,'NR',1966,'Comedy','1.85:1'),
(400,'G.I. Blues','Paramount','Out','5.1','LBX, 16:9',19.99,'PG',1960,'Musical','1.78:1'),
(401,'Galaxy Quest','Universal','Out','5.1','LBX, 16:9',26.99,'PG',1999,'Comedy','2.35:1'),
(402,'Galaxy Quest (DTS)','Universal','Out','DTS','LBX, 16:9',26.99,'PG',1999,'Comedy','2.35:1'),
(403,'Gallipoli','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1981,'Action/Adventure','2.35:1'),
(404,'Gauntlet','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'R',1977,'Action/Adventure','2.35:1'),
(405,'General''s Daughter','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Mystery/Suspense','2.35:1'),
(406,'George Balanchine''s Nutcracker','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'G',1993,'Dance / Ballet','2.35:1'),
(407,'Get Real','Paramount','Out','5.1','LBX',29.99,'R',1999,'Comedy','2.35:1'),
(408,'Get Shorty','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1995,'Comedy','2.35:1'),
(409,'Getaway (1972)','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'PG',1972,'Action/Adventure','2.35:1'),
(410,'Getaway (1994)','Universal','Out','5.1','LBX',26.98,'NR',1994,'Action/Adventure','2.35:1'),
(411,'Ghost And The Darkness','Paramount','Out','5.1','LBX',29.99,'R',1996,'Action/Adventure','2.35:1'),
(412,'Ghosts Of Mississippi','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG-13',1996,'Drama','1.85:1'),
(413,'Gigi (MGM/UA)','MGM/UA','Discontinued','SUR','4:3, LBX, 16:9',24.98,'G',1958,'Musical','2.35:1'),
(414,'Gigi (Warner)','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'G',1958,'Musical','2.35:1'),
(415,'Glimmer Man','Warner Brothers','Out','5.1','4:3, 16:9',24.98,'R',1996,'Action/Adventure','2.35:1'),
(416,'Gods And Monsters: Collector''s Edition','Universal','Out','SUR','LBX, 16:9',34.98,'R',1998,'Drama','2.35:1'),
(417,'Going My Way / Holiday Inn','Universal','Discontinued','1.0','4:3',29.98,'NR',1972,'Musical','1.33:1'),
(418,'Golden Child','Paramount','Out','5.1','LBX',29.99,'PG-13',1986,'Comedy','1.85:1'),
(419,'GoldenEye','MGM/UA','Discontinued','5.1','4:3, LBX, 16:9',24.98,'PG-13',1995,'Action/Adventure','2.35:1'),
(420,'Goldeneye: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',34.98,'PG-13',1995,'Action/Adventure','2.35:1'),
(421,'Goldfinger','MGM/UA','Discontinued','1.0','4:3, LBX, 16:9',24.98,'PG',1964,'Action/Adventure','1.66:1'),
(422,'Goldfinger: Special Edition','MGM/UA','Discontinued','1.0','LBX, 16:9',34.98,'PG',1964,'Action/Adventure','1.66:1'),
(423,'Gone With The Wind (MGM/UA)','MGM/UA','Discontinued','5.1','4:3',24.98,'G',1939,'Drama','1.33:1'),
(424,'Gone With The Wind (Warner)','Warner Brothers','Out','5.1','4:3',24.98,'NR',1939,'Drama','1.33:1'),
(425,'Good, The Bad & The Ugly','MGM/UA','Out','1.0','LBX, 16:9',24.98,'R',1966,'Western','2.35:1'),
(426,'Goodbye Girl','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG',1977,'Comedy','1.78:1'),
(427,'Goodbye Lover','Warner Brothers','Out','5.1','4:3, LBX',19.98,'R',1999,'Comedy','2.35:1'),
(428,'GoodFellas','Warner Brothers','Out','5.1','LBX',24.98,'R',1990,'Drama','1.85:1'),
(429,'Gorillas In The Mist','Universal','Out','5.1','LBX, 16:9',26.98,'PG-13',1988,'Drama','1.85:1'),
(430,'Grace Of My Heart: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',29.98,'R',1996,'Drama','1.85:1'),
(431,'Graduate: Special Edition (MGM/UA)','MGM/UA','Out','2.0','LBX',29.98,'R',1967,'Comedy','2.35:1'),
(432,'Great Escape','MGM/UA','Out','1.0','LBX',24.98,'NR',1963,'Action/Adventure','2.35:1'),
(433,'Great Outdoors','Universal','Out','SUR','LBX',24.98,'PG',1988,'Comedy','1.85:1'),
(434,'Great Santini','Warner Brothers','Out','1.0','4:3',19.98,'PG',1979,'Drama','1.33:1'),
(435,'Great Train Robbery','MGM/UA','Out','5.1','LBX',24.98,'PG',1978,'Mystery/Suspense','2.35:1'),
(436,'Greedy','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(437,'Green Berets','Warner Brothers','Out','1.0','LBX',19.98,'G',1968,'Action/Adventure','2.35:1'),
(438,'Green Mile','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1999,'Drama','1.85:1'),
(439,'Gremlins (Discontinued)','Warner Brothers','Discontinued','5.1','4:3, LBX, 16:9',24.98,'PG',1984,'Comedy','1.85:1'),
(440,'Grumpier Old Men','Warner Brothers','Out','5.1','4:3',24.98,'PG-13',1995,'Comedy','1.33:1'),
(441,'Grumpy Old Men','Warner Brothers','Out','SUR','4:3',24.98,'PG-13',1993,'Comedy','1.33:1'),
(442,'Guilty By Suspicion','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1991,'Drama','1.33:1'),
(443,'Guys & Dolls','MGM/UA','Out','5.1','LBX',24.98,'NR',1958,'Musical','2.55:1'),
(444,'Gypsy (Warner)','Warner Brothers','Out','2.0','LBX',24.98,'NR',1962,'Musical','2.35:1'),
(445,'Hackers','MGM/UA','Out','5.1','LBX, 16:9',24.98,'PG-13',1995,'Mystery/Suspense','1.78:1'),
(446,'Hair','MGM/UA','Out','5.1','4:3, LBX',24.98,'PG',1979,'Musical','1.85:1'),
(447,'Half Baked','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Comedy','1.85:1'),
(448,'Hang ''Em High','MGM/UA','Out','1.0','4:3, LBX, 16:9',24.98,'PG-13',1968,'Western','2.35:1'),
(449,'Happy Gilmore','Universal','Out','5.1','4:3',24.98,'PG-13',1996,'Comedy','1.33:1'),
(450,'Hard Rain','Paramount','Out','5.1','LBX',29.99,'R',1998,'Action/Adventure','2.35:1'),
(451,'Hard Target','Universal','Out','5.1','LBX, 16:9',24.98,'R',1993,'Action/Adventure','1.85:1'),
(452,'Hard to Kill','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1990,'Action/Adventure','1.85:1'),
(453,'Hard Way','Universal','Out','SUR','LBX, 16:9',24.98,'R',1991,'Comedy','2.35:1'),
(454,'Harold And Maude','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1971,'Comedy','1.85:1'),
(455,'Havana','Universal','Out','SUR','LBX',26.98,'R',1990,'Drama','1.85:1'),
(456,'Heart And Souls','Universal','Out','5.1','LBX, 16:9',24.98,'PG',1993,'Comedy','2.35:1'),
(457,'Heat (1995)','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'R',1995,'Action/Adventure','2.35:1'),
(458,'Heaven Can Wait','Paramount','Out','1.0','LBX, 16:9',29.99,'PG',1978,'Comedy','1.85:1'),
(459,'Heaven''s Gate','MGM/UA','Out','5.1','LBX',24.98,'R',1980,'Western','2.35:1'),
(460,'Hellfighters','Universal','Out','SUR','LBX',24.98,'G',1968,'Action/Adventure','2.35:1'),
(461,'Henry & June','Universal','Out','SUR','LBX',26.98,'NC-17',1990,'Drama','1.66:1'),
(462,'Her Alibi','Warner Brothers','Out','SUR','4:3',14.98,'PG',1989,'Comedy','1.33:1'),
(463,'Hercules & Xena: Animated Movie','Universal','Out','2.0','4:3',24.98,'PG',1997,'Animation','1.33:1'),
(464,'Hercules Action Pack','Universal','Out','2.0','4:3',49.98,'VAR',1970,'Action/Adventure','1.33:1'),
(465,'Hercules: Lost Kingdom/ Amazon Women','Universal','Out','2.0','4:3',26.98,'NR',1994,'Action/Adventure','1.33:1'),
(466,'Hercules: Warrior Princess/ Gauntlet/ Unchained Heart','Universal','Out','2.0','4:3',26.98,'NR',1995,'Action/Adventure','1.33:1'),
(467,'Hidden: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1987,'SciFi','1.85:1'),
(468,'High Plains Drifter','Universal','Out','1.0','LBX',24.98,'R',1973,'Western','2.35:1'),
(469,'Hindenburg','Universal','Out','SUR','LBX',24.98,'PG',1975,'Mystery/Suspense','2.35:1'),
(470,'Holcroft Covenant: Special Edition','MGM/UA','Out','1.0','LBX',24.98,'R',1985,'Action/Adventure','1.85:1'),
(471,'Hollywood Confidential','Paramount','Out','SUR','4:3',29.99,'R',1997,'Mystery/Suspense','1.33:1'),
(472,'Home Fries','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'PG-13',1998,'Comedy','1.85:1'),
(473,'Honeymoon In Vegas (MGM/UA)','MGM/UA','Out','2.0','4:3',24.98,'PG-13',1992,'Comedy','1.33:1'),
(474,'Hoodlum','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Action/Adventure','1.85:1'),
(475,'Hooper','Warner Brothers','Out','1.0','4:3',14.98,'PG',1978,'Comedy','1.33:1'),
(476,'Hoosiers (MGM/UA)','MGM/UA','Out','5.1','4:3, LBX',24.98,'PG',1986,'Drama','1.85:1'),
(477,'Hootie And The Blowfish: A Series Of Short Trips','Warner Brothers','Out','SUR','4:3',24.98,'NR',1996,'Music','1.33:1'),
(478,'Hot Spot','MGM/UA','Out','2.0','LBX',19.98,'R',1990,'Mystery/Suspense','2.35:1'),
(479,'House On Haunted Hill: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1999,'Horror','1.85:1'),
(480,'House On The Haunted Hill','Warner Brothers','Out','1.0','LBX',19.98,'NR',1958,'Horror','1.85:1'),
(481,'House Party','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1990,'Comedy','1.85:1'),
(482,'House Party 2','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1991,'Comedy','1.85:1'),
(483,'House Party 3','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1994,'Comedy','1.85:1'),
(484,'Housesitter','Universal','Out','SUR','LBX, 16:9',24.98,'PG',1992,'Comedy','1.85:1'),
(485,'How The Grinch Stole Christmas / Horton Hears A Who (MGM/UA)','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1966,'Animation','1.33:1'),
(486,'How The Grinch Stole Christmas / Horton Hears A Who (Warner)','Warner Brothers','Out','1.0','4:3',19.98,'NR',1973,'Animation','1.33:1'),
(487,'How The West Was Won','MGM/UA','Discontinued','SUR','LBX',24.98,'NR',1962,'Western','2.35:1'),
(488,'How To Make An American Quilt','Universal','Out','5.1','LBX',24.98,'PG-13',1995,'Drama','1.78:1'),
(489,'How To Stuff A Wild Bikini','MGM/UA','Recalled','2.0','4:3, LBX',24.98,'NR',1965,'Comedy','2.35:1'),
(490,'How To Succeed In Business Without Really Trying','MGM/UA','Out','2.0','LBX',24.98,'NR',1967,'Musical','2.35:1'),
(491,'Hudsucker Proxy','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1994,'Comedy','1.85:1'),
(492,'Hunchback Of Notre Dame (Warner / 1939)','Warner Brothers','Discontinued','1.0','4:3',24.98,'NR',1939,'Drama','1.33:1'),
(493,'Hunt For Red October','Paramount','Out','5.1','LBX',29.99,'PG',1990,'Action/Adventure','2.35:1'),
(494,'Hunted','Universal','Out','5.1','LBX, 16:9',24.98,'R',1995,'Action/Adventure','1.85:1'),
(495,'Hurlyburly: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Drama','1.78:1'),
(496,'I Married A Strange Person','Universal','Out','SUR','4:3',24.98,'NR',1997,'Animation','1.33:1'),
(497,'Idolmaker','MGM/UA','Out','2.0','4:3',24.98,'PG',1980,'Drama','1.33:1'),
(498,'Imagine: John Lennon','Warner Brothers','Cancelled','2.0','4:3',24.98,'R',1988,'Music','1.33:1'),
(499,'In & Out','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1997,'Comedy','1.78:1'),
(500,'In Country','Warner Brothers','Out','SUR','4:3',14.98,'R',1989,'Drama','1.33:1');
INSERT INTO Movies VALUES
(501,'In Love And War','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Drama','2.40:1'),
(502,'In The Mouth Of Madness: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1995,'Horror','2.35:1'),
(503,'In The Name Of The Father','Universal','Out','SUR','LBX, 16:9',24.98,'R',1993,'Drama','1.85:1'),
(504,'Incognito','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Mystery/Suspense','1.85:1'),
(505,'Innocent Blood','Warner Brothers','Out','SUR','4:3',14.98,'R',1992,'Horror','1.33:1'),
(506,'Internal Affairs','Paramount','Out','5.1','LBX',29.99,'R',1990,'Mystery/Suspense','1.85:1'),
(507,'Interview With The Vampire','Warner Brothers','Discontinued','5.1','4:3, LBX, 16:9',24.98,'R',1994,'Horror','1.85:1'),
(508,'Interview With The Vampire: Special Edition','Warner Brothers','Out','5.1/DTS','LBX',24.98,'R',1994,'Horror','1.85:1'),
(509,'Invasion Of The Body Snatchers (1978)','MGM/UA','Out','SUR','4:3, LBX',24.98,'PG',1978,'SciFi','1.85:1'),
(510,'Iron Giant','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'G',1999,'Animation','2.35:1'),
(511,'Island Of Dr. Moreau: Director''s Cut','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1996,'Horror','2.35:1'),
(512,'Jack Frost (1998)','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1998,'Family','2.35:1'),
(513,'Jackal (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1997,'Action/Adventure','2.35:1'),
(514,'Jackal: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'R',1997,'Action/Adventure','2.35:1'),
(515,'Jackie Chan''s First Strike','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','2.35:1'),
(516,'Jade','Paramount','Out','5.1','4:3',29.99,'R',1995,'Mystery/Suspense','1.33:1'),
(517,'Jailhouse Rock','MGM/UA','Discontinued','1.0','4:3, LBX, 16:9',24.98,'NR',1957,'Musical','2.35:1'),
(518,'James Bond Collection #1','MGM/UA','Discontinued','VAR','LBX, 16:9',199.95,'VAR',1976,'Action/Adventure','VAR'),
(519,'James Bond Collection #2','MGM/UA','Discontinued','VAR','LBX, 16:9',149.98,'PG',1974,'Action/Adventure','VAR'),
(520,'Jason''s Lyric (MGM/UA)','MGM/UA','Out','2.0','LBX',24.98,'R',1994,'Drama','1.85:1'),
(521,'Jaws: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',26.98,'PG',1975,'Horror','2.35:1'),
(522,'Jaws: Collector''s Edition (DTS)','Universal','Out','DTS','LBX, 16:9',26.98,'PG',1975,'Horror','2.35:1'),
(523,'Jennifer 8','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1992,'Mystery/Suspense','1.78:1'),
(524,'Jeremiah Johnson','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'PG',1972,'Western','2.35:1'),
(525,'Jerk','Universal','Out','1.0','4:3',29.98,'R',1979,'Comedy','1.33:1'),
(526,'Jesus Christ Superstar','Universal','Out','5.1','LBX',24.98,'G',1973,'Musical','2.35:1'),
(527,'Jezebel','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1938,'Drama','1.33:1'),
(528,'JFK: Special Edition Director''s Cut','Warner Brothers','Discontinued','SUR','LBX',24.98,'R',1991,'Drama','2.35:1'),
(529,'Jimi Hendrix','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1973,'Music','1.78:1'),
(530,'Joe Kidd','Universal','Out','1.0','LBX',24.98,'PG',1972,'Western','2.35:1'),
(531,'Joe''s Apartment','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1996,'Comedy','1.33:1'),
(532,'John Belushi Collection','Universal','Out','VAR','LBX, 16:9',89.98,'R',1971,'Comedy','VAR'),
(533,'John Fogerty: Premonition','Warner Brothers','Out','5.1','4:3',24.98,'NR',1998,'Music','1.33:1'),
(534,'Joseph & The Amazing Technicolor Dreamcoat','Universal','Out','5.1/DTS','LBX',29.98,'NR',1999,'Musical','1.33:1'),
(535,'Jungle Fever','Universal','Out','SUR','LBX, 16:9',26.98,'R',1991,'Drama','1.85:1'),
(536,'Junior','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(537,'Just Cause','Warner Brothers','Out','SUR','LBX, 16:9',14.98,'R',1995,'Mystery/Suspense','2.35:1'),
(538,'Just The Ticket','MGM/UA','Out','5.1','LBX',24.98,'R',1999,'Comedy','1.85:1'),
(539,'K-9','Universal','Out','SUR','LBX, 16:9',24.98,'PG-13',1989,'Comedy','1.85:1'),
(540,'K-911','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1999,'Comedy','1.78:1'),
(541,'Kelly''s Heroes','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1970,'Action/Adventure','2.35:1'),
(542,'Key Largo','Warner Brothers','Out','1.0','4:3',24.98,'NR',1948,'Drama','1.33:1'),
(543,'Killer Elite','MGM/UA','Out','1.0','LBX',24.98,'R',1975,'Action/Adventure','2.35:1'),
(544,'Killer''s Kiss','MGM/UA','Out','1.0','4:3',24.98,'NR',1955,'Mystery/Suspense','1.33:1'),
(545,'Killing','MGM/UA','Out','1.0','4:3',24.98,'NR',1956,'Mystery/Suspense','1.33:1'),
(546,'Killing Fields','Warner Brothers','Out','5.1','LBX',24.98,'R',1984,'Drama','1.85:1'),
(547,'Kindergarten Cop','Universal','Out','SUR','4:3',24.98,'PG-13',1990,'Comedy','1.33:1'),
(548,'King And I (1999)','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'G',1999,'Animation','1.78:1'),
(549,'King Creole','Paramount','Out','5.1','LBX, 16:9',19.99,'PG',1958,'Musical','2.00:1'),
(550,'King Kong','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1976,'Action/Adventure','2.35:1'),
(551,'Kingpin: Special Edition','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1996,'Comedy','1.85:1'),
(552,'Kiss The Girls','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1997,'Mystery/Suspense','2.35:1'),
(553,'Kiss The Sky','MGM/UA','Out','5.1','4:3',24.98,'NR',1998,'Drama','1.33:1'),
(554,'Kissing A Fool','Universal','Out','5.1','LBX',24.98,'R',1998,'Comedy','1.85:1'),
(555,'Kull Conqueror','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','1.85:1'),
(556,'L. A. Confidential: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Action/Adventure','2.35:1'),
(557,'La Cucaracha: Special Edition','Paramount','Out','5.1','4:3',29.99,'R',1999,'Action/Adventure','1.33:1'),
(558,'La Traviata','Universal','Out','SUR','LBX, 16:9',24.98,'G',1982,'Opera','1.85:1'),
(559,'Ladyhawke','Warner Brothers','Out','5.1','4:3, LBX',19.98,'PG-13',1985,'Drama','2.35:1'),
(560,'Land Before Time','Universal','Out','SUR','4:3',24.98,'G',1988,'Animation','1.33:1'),
(561,'Last Boy Scout','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1991,'Action/Adventure','2.35:1'),
(562,'Last Man Standing','New Line','Out','5.1','4:3, LBX, 16:9',19.98,'R',1996,'Action/Adventure','2.35:1'),
(563,'Last Night','Universal','Out','2.0','4:3',24.98,'NR',1999,'Drama','1.33:1'),
(564,'Last Starfighter: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG',1984,'SciFi','2.35:1'),
(565,'Last Tango In Paris','MGM/UA','Out','1.0','LBX, 16:9',24.98,'NC-17',1973,'Drama','1.66:1'),
(566,'Lawnmower Man: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1992,'SciFi','1.85:1'),
(567,'Lean On Me','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1989,'Drama','1.33:1'),
(568,'Leave it to Beaver','Universal','Out','5.1','4:3',24.98,'PG',1997,'Family','1.33:1'),
(569,'Leaving Las Vegas','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'NR',1995,'Drama','1.85:1'),
(570,'Led Zeppelin: The Song Remains The Same','Warner Brothers','Out','SUR','LBX, 16:9',19.98,'PG',1976,'Music','1.85:1'),
(571,'Lethal Weapon','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1987,'Action/Adventure','1.85:1'),
(572,'Lethal Weapon 2','Warner Brothers','Out','5.1','4:3, LBX',24.98,'R',1989,'Action/Adventure','2.35:1'),
(573,'Lethal Weapon 2: Director''s Cut','Warner Brothers','Out','5.1/DTS','LBX',24.98,'R',1989,'Action/Adventure','2.35:1'),
(574,'Lethal Weapon 3','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1992,'Action/Adventure','2.35:1'),
(575,'Lethal Weapon 3: Director''s Cut','Warner Brothers','Out','5.1/DTS','LBX',24.98,'R',1992,'Action/Adventure','2.35:1'),
(576,'Lethal Weapon 4','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1998,'Action/Adventure','2.35:1'),
(577,'Lethal Weapon Gift Set','Warner Brothers','Out','5.1','VAR',99.92,'R',1979,'Action/Adventure','VAR'),
(578,'Lethal Weapon: Director''s Cut','Warner Brothers','Out','5.1/DTS','LBX',24.98,'R',1987,'Action/Adventure','1.85:1'),
(579,'Leviathan','MGM/UA','Out','SUR','LBX, 16:9',19.98,'R',1989,'SciFi','1.78:1'),
(580,'Liar Liar','Universal','Out','5.1','4:3',24.98,'PG-13',1997,'Comedy','1.33:1'),
(581,'Liar Liar (DTS)','Universal','Out','DTS','4:3',34.98,'PG-13',1997,'Comedy','1.33:1'),
(582,'Liar, Liar: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'PG-13',1997,'Comedy','1.85:1'),
(583,'License To Kill: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',34.98,'PG-13',1989,'Action/Adventure','2.35:1'),
(584,'Life','Universal','Out','5.1','LBX, 16:9',24.98,'R',1999,'Comedy','1.85:1'),
(585,'Lifeforce','MGM/UA','Out','SUR','4:3, LBX',24.98,'R',1985,'Action/Adventure','2.35:1'),
(586,'Lionheart','Universal','Out','SUR','4:3',24.98,'R',1990,'Action/Adventure','1.33:1'),
(587,'Little Princess','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'G',1995,'Family','1.85:1'),
(588,'Little Rascals','Universal','Out','5.1','LBX, 16:9',24.98,'PG',1994,'Comedy','1.85:1'),
(589,'Little Rascals (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG',1994,'Comedy','1.85:1'),
(590,'Little Shop of Horrors: Special Edition (Original Version)','Warner Brothers','Recalled','5.1','LBX, 16:9',24.98,'PG-13',1986,'Musical','1.85:1'),
(591,'Little Shop Of Horrors: Special Edition (Remastered Version)','Warner Brothers','Out','5.1','LBX',24.98,'PG-13',1986,'Musical','1.85:1'),
(592,'Live And Let Die: Special Edition','MGM/UA','Discontinued','1.0','LBX, 16:9',34.98,'PG',1973,'Action/Adventure','1.85:1'),
(593,'Living Out Loud: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1998,'Comedy','2.35:1'),
(594,'Local Hero','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'PG',1983,'Comedy','1.78:1'),
(595,'Logan''s Run: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',24.98,'PG',1976,'SciFi','2.35:1'),
(596,'Lolita','Warner Brothers','Discontinued','1.0','LBX',24.98,'NR',1962,'Drama','1.66:1'),
(597,'Lone Star','Warner Brothers','Out','SUR','LBX, 16:9',19.98,'R',1996,'Mystery/Suspense','2.35:1'),
(598,'Lonely Guy','Universal','Out','1.0','LBX',24.98,'R',1984,'Comedy','1.85:1'),
(599,'Long Kiss Goodnight','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1996,'Action/Adventure','2.35:1'),
(600,'Lord Of Illusions: Special Edition','MGM/UA','Out','5.1','LBX, 16:9',24.98,'NR',1995,'Horror','1.78:1'),
(601,'Lost And Found','Warner Brothers','Out','2.0','LBX',19.98,'PG-13',1999,'Comedy','1.85:1'),
(602,'Lost Boys','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1987,'Drama','2.35:1'),
(603,'Lost In Space: The Movie: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'PG-13',1998,'SciFi','2.35:1'),
(604,'Love And Death On Long Island','Universal','Out','SUR','LBX, 16:9',24.98,'PG-13',1997,'Comedy','1.85:1'),
(605,'Love Jones','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Drama','1.85:1'),
(606,'Lovesick','Warner Brothers','Out','1.0','4:3',14.98,'PG',1983,'Comedy','1.33:1'),
(607,'Mad City','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','2.35:1'),
(608,'Mad Max Beyond Thunderdome','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1985,'SciFi','2.35:1'),
(609,'Made In America','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1993,'Comedy','1.33:1'),
(610,'Madigan','Universal','Out','1.0','LBX',24.98,'NR',1968,'Mystery/Suspense','2.35:1'),
(611,'Madonna: Ciao Italia: Live From Italy','Warner Brothers','Out','PCM','4:3',24.98,'NR',1993,'Music','1.33:1'),
(612,'Madonna: The Girlie Show: Live Down Under','Warner Brothers','Out','SUR','4:3',24.99,'NR',1988,'Music','1.33:1'),
(613,'Madonna: The Video Collection 1992-1999','Warner Brothers','Out','PCM','4:3',24.99,'NR',1999,'Music','1.33:1'),
(614,'Magnificent Seven','MGM/UA','Cancelled','1.0','4:3, LBX, 16:9',24.98,'NR',1960,'Western','2.35:1'),
(615,'Major League 2','Warner Brothers','Out','5.1','LBX',24.98,'PG',1994,'Comedy','1.85:1'),
(616,'Major League 3: Back To The Minors','Warner Brothers','Out','5.1','LBX',24.98,'PG-13',1998,'Comedy','1.85:1'),
(617,'Major Payne','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1995,'Comedy','1.85:1'),
(618,'Malcolm X','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',1992,'Drama','1.85:1'),
(619,'Mallrats: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',29.98,'R',1995,'Comedy','1.85:1'),
(620,'Maltese Falcon','Warner Brothers','Out','1.0','4:3',24.98,'NR',1941,'Mystery/Suspense','1.33:1'),
(621,'Barenaked Ladies: Too Little Too Late DVD Single','Warner Music','Out','2.0','4:3',9.95,'NR',2001,'Music','1.33:1'),
(622,'Casino Lights ''99: Montreux Jazz Festival','Warner Music','Out','2.0','4:3',24.99,'NR',1999,'Music','1.33:1'),
(623,'Dream Theater: Metropolis 2000: Scenes From New York (Special Edition)','Warner Music','Out','2.0','4:3',24.99,'NR',2001,'Music','1.33:1'),
(624,'Static-X: Where The Hell Are We And What Day Is It: This Is Static-X','Warner Music','Postponed','2.0','4:3',24.99,'NR',2001,'Music','1.33:1'),
(625,'Strauss: New Year''s Concert 2001: Nikolaus Harnoncourt (DVD-Audio)','Warner Music','Postponed','5.1','4:3',24.98,'NR',2001,'Music','1.33:1'),
(626,'Vivaldi: The Four Season','Warner Music','Out','2.0','4:3',24.95,'NR',2001,'Music','1.33:1'),
(627,'Alice (1990)','MGM/UA','Out','1.0','LBX, 16:9',19.98,'PG-13',1990,'Comedy','1.85:1'),
(628,'Another Woman','MGM/UA','Out','1.0','LBX, 16:9',19.98,'PG',1988,'Drama','1.85:1'),
(629,'Antitrust (Special Edition)','MGM/UA','Out','5.1','LBX, 16:9',24.98,'PG-13',2000,'Mystery/Suspense','1.78:1'),
(630,'Apartment','MGM/UA','Out','1.0','LBX, 16:9',19.98,'NR',1960,'Comedy','2.35:1'),
(631,'Barefoot Contessa','MGM/UA','Out','1.0','4:3',19.98,'NR',1954,'Drama','1.33:1'),
(632,'Beach Blanket Bingo','MGM/UA','Out','1.0','LBX, 16:9',14.98,'NR',1965,'Comedy','2.35:1'),
(633,'Crimes And Misdemeanors','MGM/UA','Out','1.0','LBX, 16:9',19.98,'PG-13',1989,'Comedy','1.85:1'),
(634,'Donovan''s Brain','MGM/UA','Out','1.0','4:3',14.98,'NR',1953,'SciFi','1.33:1'),
(635,'Dr. Goldfoot And The Bikini Machine','MGM/UA','Out','1.0','LBX, 16:9',14.98,'NR',1965,'SciFi','2.35:1'),
(636,'Entertainer','MGM/UA','Out','1.0','LBX',19.98,'NR',1960,'Drama','1.66:1'),
(637,'Fall Of The House Of Usher (Special Edition/ 1960)','MGM/UA','Out','1.0','LBX, 16:9',14.98,'NR',1960,'Horror','2.35:1'),
(638,'Hope And Glory','MGM/UA','Out','1.0','LBX',19.98,'PG-13',1987,'Drama','1.66:1'),
(639,'Kiss Me Deadly','MGM/UA','Out','1.0','LBX',19.98,'NR',1955,'Mystery/Suspense','1.66:1'),
(640,'Madness Of King George','MGM/UA','Out','2.0','LBX, 16:9',19.98,'PG-13',1994,'Comedy','1.85:1'),
(641,'Marty','MGM/UA','Out','1.0','4:3',19.98,'NR',1954,'Drama','1.33:1'),
(642,'Misfits','MGM/UA','Out','1.0','LBX',19.98,'NR',1961,'Drama','1.66:1'),
(643,'Moby Dick (1956)','MGM/UA','Out','1.0','4:3',19.98,'NR',1956,'Drama','1.33:1'),
(644,'Pit And The Pendulum (Special Edition/ 1961)','MGM/UA','Out','1.0','LBX',14.98,'NR',1961,'Horror','2.35:1'),
(645,'Platoon (Special Edition)','MGM/UA','Out','5.1','LBX, 16:9',19.98,'R',1986,'Drama','1.85:1'),
(646,'Rembrandt','MGM/UA','Out','1.0','4:3',19.98,'NR',1936,'Drama','1.33:1'),
(647,'Salvador (Special Edition)','MGM/UA','Out','5.1','LBX, 16:9',24.98,'R',1985,'Drama','1.85:1'),
(648,'September','MGM/UA','Out','1.0','LBX, 16:9',19.98,'PG',1987,'Drama','1.85:1'),
(649,'Shadows And Fog','MGM/UA','Out','2.0','LBX, 16:9',19.98,'PG-13',1992,'Comedy','1.85:1'),
(650,'Something Wild','MGM/UA','Out','2.0','LBX, 16:9',19.98,'R',1986,'Comedy','1.85:1'),
(651,'Sweet Smell Of Success','MGM/UA','Out','1.0','LBX',19.98,'NR',1957,'Drama','1.66:1'),
(652,'Thing With Two Heads','MGM/UA','Out','1.0','LBX',14.98,'NR',1972,'SciFi','1.85:1'),
(653,'Tom Jones','MGM/UA','Out','1.0','LBX',19.98,'NR',1963,'Comedy','1.66:1'),
(654,'Village Of The Giants','MGM/UA','Out','1.0','4:3',14.98,'NR',1965,'SciFi','1.33:1'),
(655,'Woody Allen Collection 1987-1992','MGM/UA','Out','VAR','LBX, 16:9',83.96,'VAR',1977,'Comedy/Drama','1.85:1'),
(656,'X: The Man With The X-Ray Eyes (Special Edition)','MGM/UA','Out','1.0','LBX, 16:9',14.98,'NR',1963,'SciFi','1.85:1'),
(657,'Gummo','New Line','Out','2.0','LBX',24.98,'R',1997,'Drama','1.85:1'),
(658,'Julien Donkey Boy','New Line','Out','2.0','LBX',24.98,'R',1999,'Drama','1.78:1'),
(659,'Bridges Of Toko-Ri','Paramount','Out','1.0','4:3',29.99,'NR',1954,'Drama','1.33:1'),
(660,'Catch 22 (Special Edition)','Paramount','Out','1.0','LBX, 16:9',29.99,'R',1970,'Comedy/Drama','2.35:1'),
(661,'Donovan''s Reef','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1963,'Comedy','1.78:1'),
(662,'Hell Is For Heroes','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1962,'Action/Comedy','1.78:1'),
(663,'In Harm''s Way','Paramount','Out','5.1','LBX, 16:9',29.99,'NR',1965,'Drama','2.35:1'),
(664,'Kill Shot','Paramount','Out','5.1','4:3',29.99,'R',2001,'Mystery/Suspense','1.33:1'),
(665,'Man Who Shot Liberty Valance','Paramount','Out','5.1','LBX, 16:9',29.99,'NR',1962,'Western','1.66:1'),
(666,'Sons Of Katie Elder','Paramount','Out','1.0','LBX, 16:9',29.99,'NR',1965,'Western','2.35:1'),
(667,'Star Trek TV #23: A Private Little War/ The Gamesters Of Triskelion','Paramount','Out','5.1','4:3',19.99,'NR',1968,'SciFi','1.33:1'),
(668,'Star Trek TV #24: Obsession/ The Immunity Syndrome','Paramount','Out','5.1','4:3',20,'NR',1968,'TV Classics','1.33:1'),
(669,'Sunshine','Paramount','Out','5.1','LBX, 16:9',29.99,'R',2000,'Drama','1.78:1'),
(670,'Uncommon Valor','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1983,'Action/Adventure','1.78:1'),
(671,'Jaws 2','Universal','Out','1.0','LBX, 16:9',26.98,'PG',1978,'Horror','2.35:1'),
(672,'Fugitive (Special Edition)','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'PG-13',1993,'Action/Adventure','1.85:1'),
(673,'Serpent''s Kiss','MGM/UA','Out','2.0','4:3',24.98,'R',1997,'Mystery/Suspense','1.33:1'),
(674,'What Women Want (Special Edition)','Paramount','Out','5.1','4:3, LBX, 16:9',29.99,'PG-13',2000,'Comedy','1.85:1'),
(675,'Gormenghast','Warner Brothers','Out','2.0','4:3',34.98,'NR',2000,'Fantasy','1.33:1'),
(676,'Charlotte''s Web','Paramount','Out','1.0','LBX, 16:9',24.99,'G',1973,'Family','1.85:1'),
(677,'Shadow Of The Vampire (Special Edition)','Universal','Out','5.1/DTS','LBX',26.98,'R',2001,'Horror','2.35:1'),
(678,'Two Family House','Universal','Out','2.0','4:3',24.98,'PG-13',2000,'Comedy','1.33:1'),
(679,'Blue Planet: IMAX','Warner Brothers','Out','5.1','4:3',19.98,'NR',1990,'Special Interest','1.33:1'),
(680,'Cartoon Crack-Ups','Warner Brothers','Out','1.0','4:3',14.98,'NR',2001,'Animation','1.33:1'),
(681,'Dream Is Alive: IMAX','Warner Brothers','Out','5.1','4:3',19.98,'NR',1985,'Special Interest','1.33:1'),
(682,'V: The Original Miniseries (Special Edition)','Warner Brothers','Out','2.0','LBX, 16:9',19.98,'NR',1983,'SciFi','1.85:1'),
(683,'2001: A Space Odyssey','Warner Brothers','Out','5.1','LBX',24.98,'G',1968,'SciFi','2.35:1'),
(684,'Barry Lyndon','Warner Brothers','Out','5.1','4:3',24.98,'PG',1975,'Drama','1.33:1'),
(685,'Before Night Falls (Special Edition)','New Line','Out','5.1','LBX',24.98,'R',2000,'Drama','1.85:1'),
(686,'Best In Show','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',2000,'Comedy','1.85:1'),
(687,'Clockwork Orange','Warner Brothers','Out','5.1','4:3',24.98,'R',1971,'SciFi','1.33:1'),
(688,'Dungeons And Dragons (Special Edition)','New Line','Out','5.1','LBX',24.98,'PG-13',2000,'SciFi','1.85:1'),
(689,'Full Metal Jacket','Warner Brothers','Out','5.1','4:3',24.98,'R',1987,'Drama','1.33:1'),
(690,'Game Of Death (1978)','Warner Brothers','Out','2.0','LBX',19.98,'R',1978,'Action/Adventure','2.35:1'),
(691,'Lolita','Warner Brothers','Out','5.1','4:3',24.98,'NR',1962,'Comedy/Drama','1.33:1'),
(692,'Nutty Professor 2: The Klumps Uncensored (Special Edition)','Universal','Out','5.1/DTS','LBX, 16:9',26.98,'NR',2000,'Comedy','1.85:1'),
(693,'Pay It Forward (Special Edition)','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',2000,'Drama','1.85:1'),
(694,'Playboy 2000: The Party Continues','Universal','Discontinued','2.0','4:3',24.98,'UR',2001,'Late Night','1.33:1'),
(695,'Playboy Centerfold: 2001 Playmate Of The Year','Universal','Out','2.0','4:3',24.98,'UR',2001,'Late Night','1.33:1'),
(696,'Shining','Warner Brothers','Out','5.1','4:3',24.98,'R',1980,'Horror','1.33:1'),
(697,'Stanley Kubrick Collection','Warner Brothers','Out','5.1','VAR',199.92,'VAR',1971,'VAR','VAR'),
(698,'Star Trek TV #25: A Piece Of The Action/ By Any Other Name','Paramount','Out','1.0','4:3',19.99,'NR',1968,'TV Classics','1.33:1'),
(699,'Star Trek TV #26: Return To Tomorrow/ Patterns Of Force','Paramount','Out','1.0','4:3',19.99,'NR',1968,'TV Classics','1.33:1'),
(700,'X-Men: Reunion/ Out Of The Past/ No Mutant Is An Island','Universal','Out','2.0','4:3',24.98,'NR',1970,'Animation','1.33:1'),
(701,'X-Men: Sanctuary/ Proteus/ Weapon X, Lies And Videotape','Universal','Out','2.0','4:3',24.98,'NR',1978,'Animation','1.33:1'),
(702,'Eyes Wide Shut (ReRelease)','Warner Brothers','Out','5.1','4:3',24.98,'R',1999,'Drama','1.33:1'),
(703,'Save The Last Dance (Special Edition)','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',2001,'Drama','1.85:1'),
(704,'You Can Count On Me (Special Edition)','Paramount','Out','5.0','LBX, 16:9',29.99,'R',2000,'Comedy/Drama','1.85:1'),
(705,'Forever Mine','MGM/UA','Out','SUR','4:3',24.98,'R',1999,'Drama','1.33:1'),
(706,'Holiday Heart','MGM/UA','Out','2.0','4:3',24.98,'R',2000,'Drama','1.33:1'),
(707,'Bach: St. Matthew Passion: Harnoncourt (DVD-Audio)','Warner Music','Postponed','2.0','4:3',74.98,'NR',2000,'Music','1.33:1'),
(708,'Chanticleer: Magnificat (DVD-Audio)','Warner Music','TBA','2.0','4:3',24.98,'NR',1976,'Music','1.33:1'),
(709,'Fleetwood Mac: Rumours (DVD-Audio)','Warner Music','Out','5.1','4:3',24.98,'NR',1997,'Music','1.33:1'),
(710,'Messiaen: Vingt Regards Sur L''Enfant Jesus: Aimard (DVD-Audio)','Warner Music','TBA','2.0','4:3',49.98,'NR',1977,'Music','1.33:1'),
(711,'All Revved Up','MGM/UA','Out','2.0','4:3',24.98,'R',1997,'Comedy','1.33:1'),
(712,'Bagdad Cafe','MGM/UA','Out','2.0','LBX, 16:9',19.98,'PG',1987,'Comedy','1.33:1'),
(713,'Black Robe','MGM/UA','Out','SUR','LBX, 16:9',19.98,'R',1991,'Action/Adventure','1.85:1'),
(714,'Claim','MGM/UA','Out','5.1','LBX, 16:9',26.98,'R',2000,'Drama','2.35:1'),
(715,'Cotton Club','MGM/UA','Out','5.1','LBX, 16:9',19.98,'R',1984,'Drama','1.85:1'),
(716,'Cutter''s Way','MGM/UA','Out','1.0','LBX, 16:9',19.98,'R',1981,'Drama','1.85:1'),
(717,'Go Fish','MGM/UA','Out','1.0','4:3',19.98,'R',1994,'Comedy','1.33:1'),
(718,'Hollywood Shuffle','MGM/UA','Out','1.0','LBX',19.98,'R',1987,'Comedy','1.85:1'),
(719,'Hotel New Hampshire','MGM/UA','Out','1.0','LBX',19.98,'R',1984,'Comedy','1.85:1'),
(720,'Liebestraum','MGM/UA','Out','2.0','LBX',19.98,'R',1991,'Mystery/Suspense','1.85:1'),
(721,'Marat Sade','MGM/UA','Out','1.0','LBX',19.98,'NR',1966,'Drama','1.85:1'),
(722,'Theremin: An Electronic Odyssey','MGM/UA','Out','2.0','4:3',19.98,'PG',1993,'Special Interest','1.33:1'),
(723,'Who''ll Stop The Rain','MGM/UA','Out','1.0','LBX',19.98,'R',1978,'Drama','1.85:1'),
(724,'Chocolat','MGM/UA','Out','1.0','LBX',19.98,'PG-13',1988,'Foreign','1.66:1'),
(725,'La Cage Aux Folles','MGM/UA','Out','1.0','LBX',19.98,'R',1979,'Comedy/Drama','1.66:1'),
(726,'La Cage Aux Folles II','MGM/UA','Out','1.0','LBX',19.98,'R',1981,'Comedy/Drama','1.66:1'),
(727,'Madonna: What It Feels Like For A Girl DVD Single','Warner Music','Out','2.0','4:3',9.95,'NR',2000,'Music','1.33:1'),
(728,'Apollo 13 (Special Edition/ Dolby Digital)/ Backdraft','Universal','Out','5.1','LBX',34.98,'VAR',1978,'Action/Adventure','2.35:1'),
(729,'Casino/ Carlito''s Way','Universal','Out','5.1','LBX',34.98,'R',1973,'Drama','2.35:1'),
(730,'12 Monkeys (Special Edition/ Dolby Digital)/ Jackal','Universal','Out','5.1','LBX, 16:9',34.98,'R',1978,'Action/Adventure','VAR'),
(731,'Man In The Iron Mask (MGM/UA)','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1998,'Action/Adventure','1.85:1'),
(732,'Man On The Moon: Collector''s Edition','Universal','Out','5.1/DTS','LBX, 16:9',24.98,'R',1999,'Comedy','2.35:1'),
(733,'Man Who Knew Too Little','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1997,'Comedy','1.85:1'),
(734,'Man Who Would be King','Warner Brothers','Out','1.0','LBX, 16:9',19.98,'PG',1975,'Drama','2.35:1'),
(735,'Man With No Name: Clint Eastwood Gift Set','MGM/UA','Out','1.0','LBX',59.98,'NR',1975,'Western','1.85:1'),
(736,'Man With The Golden Gun: Special Edition','MGM/UA','Discontinued','1.0','LBX, 16:9',34.98,'PG',1974,'Action/Adventure','1.66:1'),
(737,'Man With Two Brains','Warner Brothers','Out','1.0','4:3',14.98,'R',1983,'Comedy','1.33:1'),
(738,'Mana: MTV Unplugged','Warner Brothers','Out','2.0','4:3',24.99,'NR',2000,'Music','1.33:1'),
(739,'Manchurian Candidate: Special Edition','MGM/UA','Out','1.0','4:3, LBX',24.98,'PG-13',1962,'Drama','1.75:1'),
(740,'Marnie: Collector''s Edition','Universal','Out','1.0','LBX, 16:9',29.98,'PG',1964,'Mystery/Suspense','1.85:1'),
(741,'Married To The Mob','MGM/UA','Out','2.0','4:3, LBX',19.98,'R',1988,'Comedy','1.85:1'),
(742,'Mars Attacks!','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1996,'Comedy','2.35:1'),
(743,'Mask: Platinum Edition','New Line','Out','5.1','4:3, LBX',24.98,'PG-13',1994,'Comedy','1.85:1'),
(744,'Matrix, The','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1999,'SciFi','2.35:1'),
(745,'Maverick','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'PG',1994,'Western','2.35:1'),
(746,'McKenzie Break','MGM/UA','Out','2.0','LBX',24.98,'PG',1970,'Action/Adventure','1.85:1'),
(747,'Mean Streets','Warner Brothers','Out','1.0','4:3, LBX',24.98,'R',1973,'Drama','1.85:1'),
(748,'Meet Joe Black','Universal','Discontinued','5.1','LBX, 16:9',24.98,'PG-13',1998,'Drama','1.85:1'),
(749,'Memphis Belle','Warner Brothers','Out','5.1','4:3, LBX',24.98,'PG-13',1990,'Action/Adventure','1.66:1'),
(750,'Menace II Society','New Line','Out','5.1','4:3, LBX',24.98,'R',1993,'Action/Adventure','1.85:1');
INSERT INTO Movies VALUES
(751,'Mercury Rising','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Mystery/Suspense','2.35:1'),
(752,'Mercury Rising (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1998,'Mystery/Suspense','2.35:1'),
(753,'Mercury Rising: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'R',1998,'Mystery/Suspense','2.35:1'),
(754,'Message In A Bottle','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',1999,'Drama','2.35:1'),
(755,'Metallica: A Year & A Half In The Life Of Metallica #1','Warner Brothers','Out','2.0','4:3',29.99,'NR',1992,'Music','1.33:1'),
(756,'Metallica: Cliff ''Em All','Warner Brothers','Out','2.0','4:3',24.99,'NR',1987,'Music','1.33:1'),
(757,'Metallica: Cunning Stunts','Warner Brothers','Out','5.1','4:3',34.99,'NR',1998,'Music','1.33:1'),
(758,'Metallica: With The San Francisco Symphony: S&M','Warner Brothers','Out','5.1','4:3',34.99,'NR',1999,'Music','1.33:1'),
(759,'Meteor','MGM/UA','Out','1.0','LBX',24.98,'PG',1979,'Action/Adventure','2.35:1'),
(760,'Metroland','Universal','Out','SUR','4:3',24.98,'R',1997,'Drama','1.33:1'),
(761,'Michael','Warner Brothers','Out','5.1','4:3',24.98,'PG',1996,'Comedy','1.33:1'),
(762,'Michael Collins','Warner Brothers','Out','5.1','LBX',19.98,'R',1996,'Drama','1.85:1'),
(763,'Michael Crawford In Concert','Warner Brothers','Out','SUR','4:3',19.98,'NR',1975,'Music','1.33:1'),
(764,'Michael Flatley: Lord Of The Dance (Universal)','Universal','Out','2.0','4:3',29.98,'NR',1997,'Ballet','1.33:1'),
(765,'Mickey Blue Eyes','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1999,'Comedy','1.85:1'),
(766,'Midnight Cowboy','MGM/UA','Out','4.0','4:3, LBX',24.98,'R',1969,'Drama','1.85:1'),
(767,'Midnight In The Garden Of Good And Evil','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Drama','1.85:1'),
(768,'Miss Julie','MGM/UA','Out','5.1','LBX',24.98,'R',1999,'Drama','1.85:1'),
(769,'Missing In Action','MGM/UA','Out','2.0','4:3, LBX',19.98,'R',1984,'Action/Adventure','1.85:1'),
(770,'Mission Impossible','Paramount','Out','5.1','4:3, LBX',29.99,'PG-13',1996,'Action/Adventure','2.35:1'),
(771,'Mister Roberts: Premiere Collection','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'NR',1955,'Comedy','2.35:1'),
(772,'Mod Squad: The Movie','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1999,'Action/Adventure','1.85:1'),
(773,'Molly','MGM/UA','Out','2.0','4:3',24.98,'PG-13',1999,'Comedy','1.33:1'),
(774,'Money Talks','New Line','Discontinued','5.1','4:3, LBX, 16:9',19.98,'R',1997,'Comedy','2.35:1'),
(775,'Monkey Shines','MGM/UA','Out','2.0','4:3, LBX',19.98,'R',1988,'Horror','1.85:1'),
(776,'Monterey Jazz Festival: 40 Legendary Years','Warner Brothers','Out','SUR','4:3',19.98,'NR',1998,'Music','1.33:1'),
(777,'Moonraker','MGM/UA','Discontinued','5.1','4:3, LBX, 16:9',24.98,'PG',1979,'Action/Adventure','2.35:1'),
(778,'Moonraker: Special Edition','MGM/UA','Discontinued','5.1','LBX, 16:9',34.98,'PG',1979,'Action/Adventure','2.35:1'),
(779,'Moonstruck: Special Edition','MGM/UA','Out','5.1','4:3',24.98,'PG',1987,'Comedy','1.33:1'),
(780,'More Treasures Of The Twilight Zone','Panasonic','Discontinued','1.0','4:3',24.95,'NR',1977,'TV Classics','1.33:1'),
(781,'Mortal Kombat: Annilihation: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','1.85:1'),
(782,'Mortal Kombat: The Movie','New Line','Out','5.1','4:3, LBX',24.98,'PG-13',1995,'Action/Adventure','1.85:1'),
(783,'Mosquito Coast','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1986,'Drama','1.85:1'),
(784,'Most Wanted','New Line','Out','5.1','4:3, LBX, 16:9',19.98,'R',1997,'Action/Adventure','2.35:1'),
(785,'Mother Night','New Line','Out','5.1','4:3, LBX',24.98,'R',1996,'Drama','1.85:1'),
(786,'Mr. Death: The Rise And Fall Of Fred A. Leuchter Jr.','Universal','Out','SUR','LBX, 16:9',24.98,'PG-13',1999,'Other','1.85:1'),
(787,'Mr. Mom','MGM/UA','Out','2.0','4:3',24.98,'PG',1983,'Comedy','1.33:1'),
(788,'Mr. Mumble','Panorama','Out','2.0','LBX',19.98,'NR',1996,'Comedy','1.85:1'),
(789,'Mr. Nice Guy','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1997,'Action/Adventure','1.78:1'),
(790,'Mr. Wonderful','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG-13',1993,'Comedy','1.85:1'),
(791,'Mummy: Classic Monster Collection (1932)','Universal','Out','1.0','4:3',29.98,'NR',1932,'Horror','1.33:1'),
(792,'Mummy: Collector''s Edition (LBX)','Universal','Discontinued','5.1','LBX, 16:9',29.98,'PG-13',1999,'Horror','2.35:1'),
(793,'Mummy: Collector''s Edition (1999 / P&S)','Universal','Discontinued','5.1','4:3',29.98,'PG-13',1999,'Horror','2.35:1'),
(794,'Murder at 1600','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1997,'Action/Adventure','1.85:1'),
(795,'Murder In The First','Warner Brothers','Out','SUR','4:3, LBX, 16:9',14.98,'R',1995,'Drama','1.78:1'),
(796,'Music Man: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'NR',1962,'Musical','2.35:1'),
(797,'My Blue Heaven','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1990,'Comedy','1.33:1'),
(798,'My Fair Lady: Premiere Collection','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'G',1964,'Musical','2.20:1'),
(799,'My Fellow Americans','Warner Brothers','Out','5.1','4:3',24.98,'PG-13',1996,'Comedy','1.33:1'),
(800,'My Giant','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'PG',1998,'Comedy','1.78:1'),
(801,'My Sergei','Panasonic','Out','2.0','4:3',19.95,'NR',1998,'Documentary','1.33:1'),
(802,'Mystery Men','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1999,'Comedy','1.85:1'),
(803,'Mystery Train','MGM/UA','Out','2.0','LBX',24.98,'R',1989,'Comedy','1.85:1'),
(804,'Natalie Merchant: Live In Concert','Warner Brothers','Out','2.0','4:3',24.99,'NR',1999,'Music','1.33:1'),
(805,'National Geographic: 30 Years Of National Geographic Specials','Warner Brothers','Out','2.0','4:3',24.98,'NR',1970,'Documentary','1.33:1'),
(806,'National Geographic: Nature''s Fury','Warner Brothers','Out','5.1','4:3',24.98,'NR',1978,'Documentary','1.33:1'),
(807,'National Geographic: Secrets Of The Titanic','Warner Brothers','Out','2.0','4:3',24.98,'NR',1970,'Documentary','1.33:1'),
(808,'National Geographic: Surviving Everest','Warner Brothers','Out','SUR','4:3',24.98,'NR',1970,'Documentary','1.33:1'),
(809,'National Geographic: The Battle For Midway','Warner Brothers','Out','2.0','4:3',24.98,'NR',1970,'Documentary','1.33:1'),
(810,'National Geographic: The Photographers','Warner Brothers','Out','SUR','4:3',24.98,'NR',1972,'Documentary','1.33:1'),
(811,'National Geographic: Tigers In The Snow','Warner Brothers','Out','2.0','4:3',24.98,'NR',1974,'Documentary','1.33:1'),
(812,'National Lampoon''s Animal House','Universal','Discontinued','1.0','4:3',24.98,'R',1978,'Comedy','1.33:1'),
(813,'National Lampoon''s Animal House: Collector''s Edition','Universal','Discontinued','1.0','LBX, 16:9',29.98,'R',1978,'Comedy','1.85:1'),
(814,'National Lampoon''s Christmas Vacation','Warner Brothers','Out','SUR','4:3',24.98,'PG-13',1989,'Comedy','1.33:1'),
(815,'National Lampoon''s Loaded Weapon','New Line','Out','5.1','LBX, 16:9',24.98,'PG-13',1993,'Comedy','1.85:1'),
(816,'National Lampoon''s Vacation','Warner Brothers','Out','1.0','4:3',24.98,'R',1983,'Comedy','1.33:1'),
(817,'National Velvet','MGM/UA','Discontinued','1.0','4:3',24.98,'NR',1944,'Family','1.33:1'),
(818,'Negotiator: Premiere Collection','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1998,'Mystery/Suspense','2.35:1'),
(819,'Neil Young: Silver And Gold','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'NR',1999,'Music','1.77:1'),
(820,'Network (MGM/UA)','MGM/UA','Out','1.0','LBX, 16:9',24.98,'R',1976,'Drama','1.85:1'),
(821,'Network (Warner)','Warner Brothers','Out','1.0','4:3, LBX, 16:9',24.98,'R',1976,'Drama','1.85:1'),
(822,'New Jack City','Warner Brothers','Out','5.1','4:3, LBX, 16:9',14.98,'R',1991,'Action/Adventure','1.78:1'),
(823,'Next Friday: Platinum Series','New Line','Out','2.0','LBX',24.98,'R',1999,'Comedy','1.85:1'),
(824,'Next Of Kin','Warner Brothers','Out','SUR','4:3',14.98,'R',1989,'Action/Adventure','1.33:1'),
(825,'Nick Of Time','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1995,'Mystery/Suspense','1.85:1'),
(826,'Night At The Roxbury','Paramount','Out','5.1','LBX',29.99,'PG-13',1998,'Comedy','1.85:1'),
(827,'Night Falls On Manhattan: Special Edition','Paramount','Out','5.1','LBX',29.99,'R',1997,'Drama','1.85:1'),
(828,'Night Of The Hunter','MGM/UA','Out','2.0','4:3',24.98,'NR',1955,'Mystery/Suspense','1.33:1'),
(829,'Night Shift','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'R',1982,'Comedy','1.85:1'),
(830,'Nightmare on Elm Street, A','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1984,'Horror','1.85:1'),
(831,'Nightmare On Elm Street Collection: Platinum Edition','New Line','Out','5.1','LBX, 16:9',129.98,'R',1972,'Horror','VAR'),
(832,'No Way Out','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1987,'Mystery/Suspense','1.85:1'),
(833,'Nothing But Trouble','Warner Brothers','Out','SUR','4:3',14.98,'PG-13',1991,'Comedy','1.33:1'),
(834,'Notting Hill: Collector''s Edition','Universal','Discontinued','5.1','LBX, 16:9',24.98,'PG-13',1999,'Comedy','2.35:1'),
(835,'Now And Then','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'PG-13',1995,'Comedy','1.85:1'),
(836,'Nutty Professor','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1996,'Comedy','1.85:1'),
(837,'Nutty Professor (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1996,'Comedy','1.85:1'),
(838,'October Sky: Collector''s Edition','Universal','Out','5.1','4:3, LBX, 16:9',29.98,'PG',1999,'Drama','2.35:1'),
(839,'Odd Couple II','Paramount','Out','5.1','LBX',29.99,'PG-13',1998,'Comedy','2.35:1'),
(840,'Omega Man','Warner Brothers','Postponed','1.0','4:3, LBX, 16:9',19.98,'PG',1971,'SciFi','2.35:1'),
(841,'On Deadly Ground','Warner Brothers','Out','5.1','4:3, LBX, 16:9',14.98,'R',1994,'Action/Adventure','2.35:1'),
(842,'On Her Majesty''s Secret Service: Special Edition','MGM/UA','Discontinued','1.0','LBX, 16:9',34.98,'PG',1969,'Action/Adventure','2.35:1'),
(843,'On The Beach','MGM/UA','Out','1.0','LBX',24.98,'NR',1959,'Drama','1.66:1'),
(844,'On The Town','Warner Brothers','Out','1.0','4:3',24.98,'NR',1949,'Musical','1.33:1'),
(845,'Once Upon A Time In America','Warner Brothers','Postponed','2.0','LBX',24.98,'UNK',1984,'Drama','1.85:1'),
(846,'One Flew Over The Cuckoo''s Nest','Warner Brothers','Out','2.0','4:3, LBX',24.98,'R',1975,'Drama','1.85:1'),
(847,'One Man''s Hero','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Drama','1.78:1'),
(848,'One Night Stand: Platinum Edition','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Action/Adventure','1.85:1'),
(849,'One True Thing','Universal','Out','SUR','LBX, 16:9',26.98,'R',1998,'Drama','1.85:1'),
(850,'Original Gangstas','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1996,'Action/Adventure','1.85:1'),
(851,'Othello (Warner)','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'R',1995,'Drama','1.85:1'),
(852,'Out For Justice','Warner Brothers','Out','5.1','4:3, LBX, 16:9',14.98,'R',1991,'Action/Adventure','2.35:1'),
(853,'Out Of Africa: Collector''s Edition','Universal','Out','SUR','LBX, 16:9',29.98,'PG',1985,'Drama','1.85:1'),
(854,'Out Of Sight (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1998,'Drama','1.85:1'),
(855,'Out Of Sight: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',34.98,'R',1998,'Drama','1.85:1'),
(856,'Out Of Towners','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1999,'Comedy','1.85:1'),
(857,'Outbreak','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1995,'Action/Adventure','1.85:1'),
(858,'Outland','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1981,'SciFi','2.35:1'),
(859,'Outlaw Josey Wales','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'PG',1976,'Western','2.35:1'),
(860,'Outsiders','Warner Brothers','Out','SUR','4:3, LBX, 16:9',19.98,'PG',1983,'Drama','2.35:1'),
(861,'Overboard','MGM/UA','Out','SUR','LBX',24.98,'PG',1987,'Comedy','1.85:1'),
(862,'Pacific Heights','Warner Brothers','Out','5.1','LBX, 16:9',14.98,'R',1990,'Mystery/Suspense','1.85:1'),
(863,'Package','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1989,'Mystery/Suspense','1.85:1'),
(864,'Pajama Game','Warner Brothers','Out','1.0','4:3, LBX, 16:9',19.98,'NR',1957,'Musical','1.78:1'),
(865,'Pale Rider','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1985,'Western','2.35:1'),
(866,'Palmetto','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1998,'Action/Adventure','1.85:1'),
(867,'Pantera: 3 Vulgar Videos From Hell','Warner Brothers','Out','2.0','4:3',34.99,'NR',1999,'Music','1.33:1'),
(868,'Paper','Universal','Out','5.1','4:3',24.98,'R',1994,'Drama','1.33:1'),
(869,'Papillon','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'PG',1973,'Action/Adventure','2.35:1'),
(870,'Parallax View','Paramount','Out','1.0','LBX, 16:9',29.99,'R',1974,'Mystery/Suspense','2.35:1'),
(871,'Parenthood','Universal','Out','SUR','4:3',24.98,'PG-13',1989,'Comedy','1.33:1'),
(872,'Passenger 57','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1992,'Action/Adventure','2.35:1'),
(873,'Patch Adams','Universal','Out','5.1','4:3',24.98,'PG-13',1998,'Comedy','1.33:1'),
(874,'Patch Adams (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1998,'Comedy','2.35:1'),
(875,'Patch Adams: Collector''s Edition','Universal','Out','5.1','LBX, 16:9',29.98,'PG-13',1998,'Comedy','2.35:1'),
(876,'Paths Of Glory','MGM/UA','Out','1.0','4:3',24.98,'NR',1957,'Drama','1.33:1'),
(877,'Patriot Games','Paramount','Out','5.1','LBX',29.99,'R',1992,'Action/Adventure','2.35:1'),
(878,'Paul Simon: GraceLand: The African Concert','Warner Brothers','Out','PCM','4:3',24.99,'NR',1987,'Music','1.33:1'),
(879,'Payback','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1999,'Action/Adventure','2.35:1'),
(880,'Pebble & The Penguin','MGM/UA','Out','5.1','4:3',24.98,'G',1995,'Animation','1.33:1'),
(881,'Pecker: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1998,'Comedy','1.78:1'),
(882,'Pee-Wee''s Big Adventure: Special Edition','Warner Brothers','Out','5.1','LBX',24.98,'PG',1985,'Comedy','1.85:1'),
(883,'Pelican Brief','Warner Brothers','Out','5.1','LBX, 16:9',19.98,'R',1993,'Action/Adventure','2.35:1'),
(884,'Perfect Murder: Special Edition','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Mystery/Suspense','1.85:1'),
(885,'Phantasm: Special Edition','MGM/UA','Out','2.0','LBX',19.98,'R',1979,'Horror','1.85:1'),
(886,'Phantom','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1996,'Action/Adventure','2.35:1'),
(887,'Philadelphia Story (MGM/UA)','MGM/UA','Out','1.0','4:3',24.98,'NR',1940,'Comedy','1.33:1'),
(888,'Philadelphia Story (Warner)','Warner Brothers','Out','1.0','4:3',24.98,'NR',1940,'Comedy','1.33:1'),
(889,'Pillow Talk','Universal','Out','1.0','LBX',24.98,'NR',1959,'Comedy','2.35:1'),
(890,'Pink Panther','MGM/UA','Out','1.0','4:3, LBX',24.98,'NR',1963,'Comedy','2.35:1'),
(891,'Pink Panther Cartoon Collection: Jet Pink','MGM/UA','Out','1.0','4:3',24.98,'NR',1979,'Animation','1.33:1'),
(892,'Pink Panther Strikes Again','MGM/UA','Out','1.0','4:3, LBX',24.98,'PG',1976,'Comedy','2.35:1'),
(893,'Player: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'R',1992,'Comedy','1.85:1'),
(894,'Players Club','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Comedy','1.85:1'),
(895,'Pleasantville: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'PG-13',1998,'Comedy','1.85:1'),
(896,'Point Of No Return','Warner Brothers','Out','5.1','4:3, LBX, 16:9',19.98,'R',1993,'Action/Adventure','2.35:1'),
(897,'Poison Ivy','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1992,'Mystery/Suspense','1.85:1'),
(898,'Poison Ivy 2: Lily','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1995,'Mystery/Suspense','1.85:1'),
(899,'Poison Ivy III: The New Seduction','New Line','Out','5.1','4:3, LBX, 16:9',24.98,'R',1997,'Mystery/Suspense','1.85:1'),
(900,'Pokemon: The First Movie: Special Edition','Warner Brothers','Out','2.0','4:3',26.98,'G',1999,'Anime','1.33:1'),
(901,'Police Academy','Warner Brothers','Out','2.0','4:3',19.98,'R',1984,'Comedy','1.33:1'),
(902,'Poltergeist (MGM/UA)','MGM/UA','Discontinued','5.1','4:3, LBX, 16:9',24.98,'PG',1982,'Horror','2.35:1'),
(903,'Poltergeist (Warner)','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1982,'Horror','2.35:1'),
(904,'Pork Chop Hill','MGM/UA','Out','1.0','4:3, LBX',24.98,'NR',1959,'Drama','1.85:1'),
(905,'Postman','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Drama','2.35:1'),
(906,'Postman Always Rings Twice','Warner Brothers','Out','1.0','4:3',19.98,'R',1981,'Mystery/Suspense','1.33:1'),
(907,'Power','Warner Brothers','Out','SUR','4:3',14.98,'R',1986,'Drama','1.33:1'),
(908,'Power Of One','Warner Brothers','Out','SUR','LBX',14.98,'PG-13',1993,'Drama','1.85:1'),
(909,'Practical Magic: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG-13',1998,'Comedy','2.35:1'),
(910,'Presidio','Paramount','Out','5.1','LBX',29.99,'R',1988,'Mystery/Suspense','2.35:1'),
(911,'Presumed Innocent','Warner Brothers','Out','SUR','4:3, LBX',19.98,'R',1990,'Mystery/Suspense','1.85:1'),
(912,'Primal Fear','Paramount','Out','5.1','LBX',29.99,'R',1996,'Mystery/Suspense','1.85:1'),
(913,'Primary Colors','Universal','Out','5.1','LBX, 16:9',24.98,'R',1998,'Comedy','2.35:1'),
(914,'Primary Colors (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'R',1998,'Comedy','2.35:1'),
(915,'Prince: The Hits Collection','Warner Brothers','Out','PCM','4:3',24.99,'NR',1993,'Music','1.33:1'),
(916,'Private Benjamin','Warner Brothers','Out','2.0','4:3',19.98,'R',1980,'Comedy','1.33:1'),
(917,'Private Parts','Paramount','Out','5.1','LBX',29.99,'R',1997,'Comedy','1.85:1'),
(918,'Protocol','Warner Brothers','Out','SUR','4:3',14.98,'PG',1984,'Comedy','1.33:1'),
(919,'Psycho: Collector''s Edition','Universal','Out','1.0','LBX',34.98,'NR',1960,'Horror','1.85:1'),
(920,'Psycho: Collector''s Edition (1998)','Universal','Out','5.1','LBX, 16:9',29.98,'R',1998,'Horror','1.85:1'),
(921,'Pump Up The Volume','New Line','Out','5.1','4:3, LBX, 16:9',14.98,'R',1990,'Drama','1.85:1'),
(922,'Pure Country','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'PG',1992,'Drama','1.85:1'),
(923,'Purple Rain','Warner Brothers','Out','5.1','4:3',19.98,'R',1984,'Musical','1.33:1'),
(924,'Quest','Universal','Out','5.1','LBX',24.98,'PG-13',1996,'Action/Adventure','2.35:1'),
(925,'Quest For Camelot: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'G',1998,'Animation','1.85:1'),
(926,'R.E.M. Road Movie','Warner Brothers','Out','2.0','4:3',24.98,'NR',1996,'Music','1.33:1'),
(927,'Rage: Carrie 2: Special Edition','MGM/UA','Out','5.1','4:3, LBX, 16:9',19.98,'R',1999,'Horror','1.78:1'),
(928,'Raging Bull','MGM/UA','Out','SUR','4:3, LBX',24.98,'R',1980,'Drama','1.85:1'),
(929,'Rain Man','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1988,'Drama','1.85:1'),
(930,'Rainmaker','Paramount','Out','5.1','LBX',29.99,'PG-13',1997,'Drama','2.35:1'),
(931,'Raising Cain','Universal','Out','SUR','LBX, 16:9',24.98,'R',1992,'Horror','1.85:1'),
(932,'Real Blonde','Paramount','Out','5.1','LBX',29.99,'R',1998,'Comedy','1.85:1'),
(933,'Real McCoy','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1993,'Action/Adventure','1.85:1'),
(934,'Reality Bites','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Comedy','1.85:1'),
(935,'Reap The Wild Wind','Universal','Out','1.0','4:3',24.98,'NR',1942,'Drama','1.33:1'),
(936,'Rebel Without A Cause: Special Edition','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'NR',1955,'Drama','2.55:1'),
(937,'Red Corner: Special Edition','MGM/UA','Out','5.1','LBX, 16:9',24.98,'R',1997,'Action/Adventure','1.85:1'),
(938,'Red Dawn','MGM/UA','Out','SUR','4:3, LBX, 16:9',24.98,'PG-13',1984,'Action/Adventure','1.85:1'),
(939,'Red Hot Chili Peppers: Funky Monks','Warner Brothers','Out','PCM','4:3',24.99,'NR',1993,'Music','1.33:1'),
(940,'Red River','MGM/UA','Out','1.0','4:3',24.98,'PG',1948,'Western','1.33:1'),
(941,'Red Violin, The','Universal','Out','5.1/DTS','LBX, 16:9',24.98,'R',1999,'Drama','1.85:1'),
(942,'Relic','Paramount','Out','5.1','LBX, 16:9',29.99,'R',1997,'Horror','2.35:1'),
(943,'Retroactive','MGM/UA','Out','5.1','LBX',24.98,'R',1997,'SciFi','1.85:1'),
(944,'Revenge Of The Pink Panther','MGM/UA','Out','1.0','4:3, LBX, 16:9',24.98,'PG',1978,'Comedy','2.35:1'),
(945,'Richard III','MGM/UA','Out','2.0','4:3, LBX',24.98,'R',1995,'Drama','2.35:1'),
(946,'Right Stuff','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'PG',1983,'Action/Adventure','1.85:1'),
(947,'Risky Business','Warner Brothers','Out','SUR','4:3, LBX, 16:9',24.98,'R',1983,'Comedy','1.85:1'),
(948,'River','Universal','Out','5.1','LBX, 16:9',26.98,'PG-13',1984,'Drama','2.35:1'),
(949,'River Wild','Universal','Out','5.1','LBX, 16:9',24.98,'PG-13',1994,'Action/Adventure','2.35:1'),
(950,'River Wild (DTS)','Universal','Out','DTS','LBX, 16:9',34.98,'PG-13',1994,'Action/Adventure','2.35:1'),
(951,'Road Warrior','Warner Brothers','Out','5.1','4:3, LBX, 16:9',24.98,'R',1981,'SciFi','1.78:1'),
(952,'Rob Roy (1995)','MGM/UA','Out','5.1','LBX, 16:9',24.98,'R',1995,'Action/Adventure','2.35:1'),
(953,'Robert De Niro Collection','Warner Brothers','Out','5.1','VAR',119.92,'VAR',1970,'VAR','VAR'),
(954,'Robin Hood: Prince of Thieves','Warner Brothers','Out','SUR','LBX',24.98,'PG-13',1991,'Action/Adventure','1.85:1'),
(955,'Rocky','MGM/UA','Discontinued','SUR','4:3, LBX',24.98,'PG',1976,'Action/Adventure','1.85:1'),
(956,'Rocky II','MGM/UA','Discontinued','SUR','4:3, LBX',24.98,'PG',1979,'Action/Adventure','1.85:1'),
(957,'Rocky IV','MGM/UA','Discontinued','SUR','4:3, LBX',24.98,'PG',1985,'Action/Adventure','1.85:1'),
(958,'Rod Stewart: Storyteller 1984-1991','Warner Brothers','Out','PCM','4:3',24.99,'NR',1991,'Music','1.33:1'),
(959,'Rollerball: Special Edition','MGM/UA','Out','5.1','4:3, LBX',24.98,'R',1975,'Action/Adventure','1.85:1'),
(960,'Rollercoaster','Universal','Out','1.0','LBX',24.98,'PG',1977,'Mystery/Suspense','2.35:1'),
(961,'Rolling Stones: Bridges To Babylon: Live In Concert','Warner Brothers','Out','5.1','4:3',19.98,'NR',1997,'Music','1.33:1'),
(962,'Romeo And Juliet','Paramount','Out','1.0','LBX, 16:9',29.99,'PG',1968,'Drama','1.66:1'),
(963,'Ron Howard Signature Collection','Universal','Out','5.1','LBX',84.98,'R',1974,'Drama','VAR'),
(964,'Ronin','MGM/UA','Out','5.1','4:3, LBX, 16:9',24.98,'R',1998,'Action/Adventure','2.35:1'),
(965,'Rooster Cogburn','Universal','Out','1.0','LBX',24.98,'PG',1975,'Western','2.35:1'),
(966,'Rosewood','Warner Brothers','Out','5.1','LBX, 16:9',24.98,'R',1997,'Action/Adventure','2.35:1'),
(967,'Roustabout','Paramount','Out','5.1','LBX, 16:9',19.99,'PG',1964,'Musical','2.35:1'),
(968,'Rugrats Movie','Paramount','Out','5.1','4:3, LBX',29.99,'G',1998,'Animation','1.85:1'),
(969,'Rumble Fish','Universal','Out','SUR','LBX',24.98,'R',1983,'Drama','1.85:1'),
(970,'Rumble In The Bronx','New Line','Out','5.1','4:3, LBX, 16:9',19.98,'R',1995,'Action/Adventure','2.35:1'),
(971,'Run Silent, Run Deep','MGM/UA','Out','1.0','4:3, LBX',24.98,'NR',1958,'Drama','1.85:1'),
(972,'Runaway Bride','Paramount','Out','5.1','LBX, 16:9',29.99,'PG',1999,'Comedy','1.78:1'),
(973,'Runaway Train','MGM/UA','Out','SUR','4:3, LBX',24.98,'R',1985,'Action/Adventure','1.85:1'),
(974,'Running On Empty','Warner Brothers','Out','1.0','4:3',14.98,'PG-13',1988,'Drama','1.33:1'),
(975,'Rush Hour: Platinum Edition','New Line','Out','5.1','LBX, 16:9',24.98,'PG-13',1998,'Action/Adventure','2.35:1'),
(976,'Saint: Special Edition','Paramount','Out','5.1','LBX, 16:9',29.99,'PG-13',1997,'Mystery/Suspense','2.35:1'),
(977,'Salem''s Lot','Warner Brothers','Out','1.0','4:3',14.98,'PG',1979,'TV Classics','1.33:1'),
(978,'Scarecrow','Warner Brothers','Postponed','2.0','4:3',24.98,'R',1973,'Drama','1.33:1'),
(979,'Scarface: Collector''s Edition','Universal','Discontinued','SUR','LBX',34.98,'R',1983,'Action/Adventure','2.35:1'),