-
Notifications
You must be signed in to change notification settings - Fork 0
/
html.html
1745 lines (1414 loc) · 84.6 KB
/
html.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns:og="http://opengraphprotocol.org/schema/"
xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
<script>
var addClickstreamHeadersToAjax = function(xhr) {
xhr.setRequestHeader("x-imdb-parent-id", "1EFY1CF8WP5W2B3878F3");
};
</script>
<title>Star Wars: Episode VII - The Force Awakens Reviews & Ratings - IMDb</title>
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
<link rel="canonical" href="http://www.imdb.com/title/tt2488496/reviews" /><meta property="og:url" content="http://www.imdb.com/title/tt2488496/reviews" />
<meta name="title" content="Star Wars: Episode VII - The Force Awakens Reviews & Ratings - IMDb">
<meta name="description" content="Review: Why? Why? Why was I bored to tears? They messed up Star Wars! - The only thing good I have to say about this movie is that it has some pretty...">
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits">
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFbffed916d439cb9a451915be4eabd598/css/min/title.css" ><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFee9c9a814eba8342b847680ef4330580/css2/site/consumer-navbar-mega.css" ><script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
<meta name="application-name" content="IMDb" />
<meta name="msapplication-tooltip" content="IMDb Web App" />
<meta name="msapplication-window" content="width=1500;height=900" />
<meta name="msapplication-task" content="name=Find Movie Showtimes;action-uri=/showtimes/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
<meta name="msapplication-task" content="name=Watch HD Trailers;action-uri=/features/hdgallery;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
<meta name="msapplication-task" content="name=What's On TV Tonight;action-uri=/sections/tv/;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
<meta name="msapplication-task" content="name=Get Latest Entertainment News;action-uri=/news/top;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
<meta name="msapplication-task" content="name=Sign-in;action-uri=/register/login;icon-uri=http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico"/>
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<link rel="icon" type="image/ico" href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/favicon.ico" />
<link rel="shortcut icon" type="image/x-icon" href="http://i.media-imdb.com/images/SFff39adb4d259f3c3fd166853a6714a32/desktop-favicon.ico" />
<link href="http://i.media-imdb.com/images/SFf8f1b67827a5df7f13bdfc19d935ed62/mobile/apple-touch-icon-web.png" rel="apple-touch-icon">
<link href="http://i.media-imdb.com/images/SF7992061047d0cfee4f580f432264f5a5/mobile/apple-touch-icon-web-76x76.png" rel="apple-touch-icon" sizes="76x76">
<link href="http://i.media-imdb.com/images/SF6ff760bc2f74d7aa806c6cdea88da4ee/mobile/apple-touch-icon-web-120x120.png" rel="apple-touch-icon" sizes="120x120">
<link href="http://i.media-imdb.com/images/SFf1bafc988ae4011ee3f42c0144284ce4/mobile/apple-touch-icon-web-152x152.png" rel="apple-touch-icon" sizes="152x152">
<link rel="search" type="application/opensearchdescription+xml"
href="http://i.media-imdb.com/images/SFccbe1e4d909ef8b8077201c3c5aac349/imdbsearch.xml" title="IMDb" />
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
<meta property="fb:app_id" content="115109575169727" />
<meta property="og:title" content="Star Wars: Episode VII - The Force Awakens Reviews & Ratings - IMDb" />
<meta property="og:site_name" content="IMDb" />
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
<!-- start m/s/a/_g_a_s , head -->
<script>
window.ads_js_start = new Date().getTime();
var imdbads = imdbads || {}; imdbads.cmd = imdbads.cmd || [];
</script>
<!-- begin SRA -->
<script>
!function a(b,c,d){function e(g,h){if(!c[g]){if(!b[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};b[g][0].call(k.exports,function(a){var c=b[g][1][a];return e(c?c:a)},k,k.exports,a,b,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;g<d.length;g++)e(d[g]);return e}({1:[function(a,b,c){"use strict";a(2)},{2:2}],2:[function(a,b,c){"use strict";!function(){var a,b,c=function(a){return"[object Array]"===Object.prototype.toString.call(a)},d=function(a,b){for(var c=0;c<a.length;c++)c in a&&b.call(null,a[c],c)},e=[],f=!1,g=!1,h=function(){var a=[],b=[],c={};return d(e,function(e){var f="";d(e.dartsite.split("/"),function(b){""!==b&&(b in c||(c[b]=a.length,a.push(b)),f+="/"+c[b])}),b.push(f)}),{iu_parts:a,enc_prev_ius:b}},i=function(){var a=[];return d(e,function(b){var c=[];d(b.sizes,function(a){c.push(a.join("x"))}),a.push(c.join("|"))}),a},j=function(){var a=[];return d(e,function(b){a.push(k(b.targeting))}),a.join("|")},k=function(a,b){var c,d=[];for(var e in a){c=[];for(var f=0;f<a[e].length;f++)c.push(encodeURIComponent(a[e][f]));b?d.push(e+"="+encodeURIComponent(c.join(","))):d.push(e+"="+c.join(","))}return d.join("&")},l=function(){var a=+new Date;g||document.readyState&&"loaded"!==document.readyState||(g=!0,f&&imdbads.cmd.push(function(){for(var b=0;b<e.length;b++)generic.monitoring.record_metric(e[b].name+".fail",csm.duration(a))}))};window.tinygpt={define_slot:function(a,b,c,d){e.push({dartsite:a.replace(/\/$/,""),sizes:b,name:c,targeting:d})},set_targeting:function(b){a=b},callback:function(a){var c,d,f={},g=+new Date;try{for(var h=0;h<e.length;h++)c=e[h].dartsite,d=e[h].name,a[h][c]?f[d]=a[h][c]:window.console&&console.error&&console.error("Unable to correlate GPT response for "+d);imdbads.cmd.push(function(){for(var a=0;a<e.length;a++)ad_utils.slot_events.trigger(e[a].name,"request",{timestamp:b}),ad_utils.slot_events.trigger(e[a].name,"tagdeliver",{timestamp:g});ad_utils.gpt.handle_response(f)})}catch(i){window.console&&console.error&&console.error("Exception in GPT callback: "+i.message)}},send:function(){var d,g,m=[],n=function(a,b){c(b)&&(b=b.join(",")),b&&m.push(a+"="+encodeURIComponent(""+b))};if(0===e.length)return void tinygpt.callback({});n("gdfp_req","1"),n("correlator",Math.floor(4503599627370496*Math.random())),n("output","json_html"),n("callback","tinygpt.callback"),n("impl","fifs"),n("json_a","1");var o=h();n("iu_parts",o.iu_parts),n("enc_prev_ius",o.enc_prev_ius),n("prev_iu_szs",i()),n("prev_scp",j()),n("cust_params",k(a,!0)),d=document.createElement("script"),g=document.getElementsByTagName("script")[0],d.async=!0,d.type="text/javascript",d.src="http://pubads.g.doubleclick.net/gampad/ads?"+m.join("&"),d.id="tinygpt",d.onload=d.onerror=d.onreadystatechange=l,f=!0,g.parentNode.insertBefore(d,g),b=+new Date}}}()},{}]},{},[1]);</script>
<script>
tinygpt.define_slot('/4215/imdb2.consumer.main/',
[[728,90],[1008,150],[1008,200],[1008,30],[970,250],[9,1]],
'top_ad',
{
'p': ['top','t']
});
tinygpt.define_slot('/4215/imdb2.consumer.main/',
[[300,250],[300,600],[11,1]],
'top_rhs',
{
'p': ['tr']
});
tinygpt.set_targeting({
'tt' : ['f'],
'ab' : ['f'],
'coo' : ['us'],
'b' : ['t250','t250a'],
'c' : ['0'],
'g' : ['ac','ad','sf','baa','f'],
'bpx' : ['1'],
'm' : ['PG13'],
'fv' : ['1'],
'mh' : ['PG13'],
'id' : ['tt2488496'],
'ml' : ['PG13'],
'u': ['165225747962'],
'oe': ['utf-8']
});
tinygpt.send();
</script>
<!-- begin ads header -->
<script src="https://ia.media-imdb.com/images/G/01/imdbads/js/collections/tarnhelm-4000355955._CB533829584_.js"></script>
<script id="ads_doWithAds">
doWithAds = function(inside, failureMessage){
if ('consoleLog' in window &&
'generic' in window &&
'ad_utils' in window &&
'custom' in window &&
'monitoring' in generic &&
'document_is_ready' in generic) {
try{
inside.call(this);
}catch(e) {
if ( window.ueLogError ) {
if(typeof failureMessage !== 'undefined'){
e.message = failureMessage;
}
e.attribution = "Advertising";
e.logLevel = "ERROR";
ueLogError(e);
}
if( (document.location.hash.match('debug=1')) &&
(typeof failureMessage !== 'undefined') ){
console.error(failureMessage);
}
}
} else {
if( (document.location.hash.match('debug=1')) &&
(typeof failureMessage !== 'undefined') ){
console.error(failureMessage);
}
}
};
</script><script id="ads_monitoring_setup">
doWithAds(function(){
generic.monitoring.set_forester_info("main");
generic.monitoring.set_twilight_info(
"main",
"UNKNOWN",
"ac6b5db25c1925dfe89a50497bfeeffc053c593b",
"2017-05-06T18%3A30%3A30GMT",
"https://s.media-imdb.com/twilight/?",
"consumer");
generic.monitoring.start_timing("page_load");
generic.seconds_to_midnight = 44970;
generic.days_to_midnight = 0.5204861164093018;
},"Generic not defined, skipping monitoring setup.");
</script>
<script src="https://images-na.ssl-images-amazon.com/images/G/01/dacx/sf/DAsf-1.34_FX1._V275812351_.js"></script>
<script id="ads_safeframe_setup">
doWithAds(function(){
if (typeof DAsf != 'undefined' && typeof DAsf.registerCustomMessageListener === 'function') {
DAsf.registerCustomMessageListener('adFeedback', window.ad_utils.show_ad_feedback);
DAsf.registerCustomMessageListener('sendMetrics', window.generic.monitoring.update_sf_slot_metrics);
DAsf.registerCustomMessageListener('expand', window.ad_utils.expand_overlay);
DAsf.registerCustomMessageListener('collapse', window.ad_utils.collapse_overlay);
}
},"ads js missing, skipping safeframe setup.");
</script>
<script id="ads_general_setup">
doWithAds(function(){
generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
ad_utils.set_slots_on_page({ 'injected_billboard':1, 'injected_navstrip':1, 'bottom_ad':1, 'top_ad':1, 'top_rhs':1 });
custom.full_page.data_url = "https://ia.media-imdb.com/images/G/01/imdbads/js/graffiti_data-538221799._CB536725280_.js";
consoleLog('advertising initialized','ads');
},"ads js missing, skipping general setup.");
var _gaq = _gaq || [];
_gaq.push(['_setCustomVar', 4, 'ads_abtest_treatment', 'f']);
</script>
<script>doWithAds(function() { ad_utils.ads_header.done(); });</script>
<!-- end ads header --><!-- end m/s/a/_g_a_s , head -->
</head>
<body bgcolor="#ffffff" text="#000000" id="styleguide-v2" class="fixed">
<!-- start m/s/a/_g_a_s , body -->
<!-- end m/s/a/_g_a_s , body -->
<div id="wrapper">
<div id="root">
<layer name="root">
<div id="nb20" class="navbarSprite">
<div id="supertab">
<!-- begin TOP_AD -->
<div id="top_ad_wrapper" class="dfp_slot">
<script>
window.generic = window.generic || {};
generic.alphalfaComponents = {
"alphalfa-container.html" : "https://ia.media-imdb.com/images/G/01/imdbads/alphalfa-container-253150330._CB522736199_.html",
"js/collections/alphalfa.js" : "https://ia.media-imdb.com/images/G/01/imdbads/js/collections/alphalfa-3292747090._CB522736629_.js"
};
</script>
<script type="text/javascript">
doWithAds(function(){
if ('dfp_slot' != 'injected_slot') {
ad_utils.register_ad('top_ad');
}
});
</script>
<iframe allowtransparency="true" class="yesScript" data-dart-params="#doubleclick;u=165225747962;ord=165225747962?" frameborder="0" id="top_ad" marginwidth="0" marginheight="0" name="top_ad" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });" scrolling="no" data-original-width="0" data-original-height="85" width="0" height="85" ></iframe> </div>
<noscript> <a href="http://pubads.g.doubleclick.net/gampad/jump?&iu=4215/imdb2.consumer.main/&sz=728x90|1008x150|1008x200|1008x30|970x250|9x1&t=p%3Dtop%26p%3Dt%26g%3Dac%26g%3Dad%26g%3Dsf%26g%3Dbaa%26g%3Df%26tt%3Df%26m%3DPG13%26mh%3DPG13%26ml%3DPG13%26coo%3Dus%26b%3Dt250%26b%3Dt250a%26fv%3D1%26id%3Dtt2488496%26ab%3Df%26bpx%3D1%26c%3D0&tile=0&c=165225747962" target="_blank"> <img src="http://pubads.g.doubleclick.net/gampad/ad?&iu=4215/imdb2.consumer.main/&sz=728x90|1008x150|1008x200|1008x30|970x250|9x1&t=p%3Dtop%26p%3Dt%26g%3Dac%26g%3Dad%26g%3Dsf%26g%3Dbaa%26g%3Df%26tt%3Df%26m%3DPG13%26mh%3DPG13%26ml%3DPG13%26coo%3Dus%26b%3Dt250%26b%3Dt250a%26fv%3D1%26id%3Dtt2488496%26ab%3Df%26bpx%3D1%26c%3D0&tile=0&c=165225747962" border="0" alt="advertisement" /> </a> </noscript>
<div id="top_ad_reflow_helper"></div>
<script id="top_ad_rendering">
doWithAds(function(){
if ('dfp_slot' == 'injected_slot') {
ad_utils.inject_ad.register('top_ad');
} else {
ad_utils.gpt.render_ad('top_ad');
}
}, "ad_utils not defined, unable to render client-side GPT ad or injected ad.");
</script>
<!-- End TOP_AD --><!-- _get_ad_for_slot(TOP_AD) -->
</div>
<div id="navbar">
<noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF52e6b9f11712d3ec552179f6c869b63a/css2/site/consumer-navbar-no-js.css"></noscript>
<span id="home_img_holder"> <a href="/?ref_=nv_home" id='home_img' class='navbarSprite' title='Home' ></a>
<span class="alt_logo">
<a href="/?ref_=nv_home" title='Home' >IMDb</a>
</span>
</span>
<form action="/find" method="get" id="navbar-form" class="nav-searchbar-inner" accept-charset="utf-8" >
<div id="nb_search" >
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
<input type="hidden" name="ref_" value="nv_sr_fn" />
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more..." >
<div class="quicksearch_dropdown_wrapper">
<select
class="quicksearch_dropdown navbarSprite"
name="s"
id="quicksearch"
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
<option
value="all">All</option>
<option
value="tt">Titles</option>
<option
value="ep">TV Episodes</option>
<option
value="nm">Names</option>
<option
value="co">Companies</option>
<option
value="kw">Keywords</option>
<option
value="ch">Characters</option>
<option
value="qu">Quotes</option>
<option
value="bi">Bios</option>
<option
value="pl">Plots</option>
</select>
</div>
<div id="navbar-suggestionsearch"></div>
</div>
</form>
<div id="megaMenu">
<ul id="consumer_main_nav" class="main_nav">
<li class="spacer"></li>
<li class="css_nav_item" id="navTitleMenu" aria-haspopup="true">
<p class="navCategory">
<a href="/movies-in-theaters/?ref_=nv_tp_inth_1" >Movies</a>,
<a href="/chart/toptv/?ref_=nv_tp_tv250_2" >TV</a><br />
& <a href="/showtimes/?ref_=nv_tp_sh_3" >Showtimes</a></p>
<span class="downArrow"></span>
<div id="navMenu1" class="sub_nav">
<div id="titleAd"></div>
<div class="subNavListContainer">
<h5>MOVIES</h5>
<ul>
<li><a href="/movies-in-theaters/?ref_=nv_mv_inth_1" >In Theaters</a></li>
<li><a href="/showtimes/?ref_=nv_mv_sh_2" >Showtimes & Tickets</a></li>
<li><a href="/trailers/?ref_=nv_mv_tr_3" >Latest Trailers</a></li>
<li><a href="/movies-coming-soon/?ref_=nv_mv_cs_4" >Coming Soon</a></li>
<li><a href="/calendar/?ref_=nv_mv_cal_5" >Release Calendar</a></li>
<li><a href="/chart/top/?ref_=nv_mv_250_6" >Top Rated Movies</a></li>
<li><a href="/chart/moviemeter/?ref_=nv_mv_mpm_7" >Most Popular Movies</a></li>
</ul>
<h5>CHARTS & TRENDS</h5>
<ul>
<li><a href="/chart/?ref_=nv_ch_cht_1" >Box Office</a></li>
<li><a href="/search/title?count=100&groups=oscar_best_picture_winners&sort=year,desc&ref_=nv_ch_osc_2" >Oscar Winners</a></li>
<li><a href="/genre/?ref_=nv_ch_gr_3" >Most Popular by Genre</a></li>
</ul>
</div>
<div class="subNavListContainer">
<h5>TV & VIDEO</h5>
<ul>
<li><a href="/tv/?ref_=nv_tvv_tv_1" >IMDb TV</a></li>
<li><a href="/tvgrid/?ref_=nv_tvv_ls_2" >On Tonight</a></li>
<li><a href="/chart/toptv/?ref_=nv_tvv_250_3" >Top Rated TV Shows</a></li>
<li><a href="/chart/tvmeter?ref_=nv_tvv_mptv_4" >Most Popular TV Shows</a></li>
<li><a href="/feature/watch-now-on-amazon/?ref_=nv_tvv_wn_5" >Watch Now on Amazon</a></li>
<li><a href="/sections/dvd/?ref_=nv_tvv_dvd_6" >DVD & Blu-Ray</a></li>
</ul>
<h5>SPECIAL FEATURES</h5>
<ul>
<li><a href="/imdbpicks/?ref_=nv_sf_picks_1" >IMDb Picks</a></li>
<li><a href="/scary-good/?ref_=nv_sf_sg_2" >Scary Good</a></li>
<li><a href="/amazon-originals/?ref_=nv_sf_ams_3" >Amazon Originals</a></li>
<li><a href="/star-wars/?ref_=nv_sf_stw_4" >Star Wars on IMDb</a></li>
</ul>
</div>
</div>
</li>
<li class="spacer"></li>
<li class="css_nav_item" id="navNameMenu" aria-haspopup="true">
<p class="navCategory">
<a href="/search/name?gender=male,female&ref_=nv_tp_cel_1" >Celebs</a>,
<a href="/awards-central/?ref_=nv_tp_awrd_2" >Events</a><br />
& <a href="/gallery/rg784964352?ref_=nv_tp_ph_3" >Photos</a></p>
<span class="downArrow"></span>
<div id="navMenu2" class="sub_nav">
<div id="nameAd"></div>
<div class="subNavListContainer">
<h5>CELEBS</h5>
<ul>
<li><a href="/search/name?birth_monthday=5-6&refine=birth_monthday&ref_=nv_cel_brn_1" >Born Today</a></li>
<li><a href="/news/celebrity?ref_=nv_cel_nw_2" >Celebrity News</a></li>
<li><a href="/search/name?gender=male,female&ref_=nv_cel_m_3" >Most Popular Celebs</a></li>
</ul>
<h5>PHOTOS</h5>
<ul>
<li><a href="/gallery/rg784964352?ref_=nv_ph_ls_1" >Latest Stills</a></li>
<li><a href="/gallery/rg1528338944?ref_=nv_ph_lp_2" >Latest Posters</a></li>
<li><a href="/gallery/rg2465176320?ref_=nv_ph_lv_3" >Photos We Love</a></li>
</ul>
</div>
<div class="subNavListContainer">
<h5>EVENTS</h5>
<ul>
<li><a href="/awards-central/?ref_=nv_ev_awrd_1" >Awards Central</a></li>
<li><a href="/oscars/?ref_=nv_ev_acd_2" >Oscars</a></li>
<li><a href="/golden-globes/?ref_=nv_ev_gg_3" >Golden Globes</a></li>
<li><a href="/sundance/?ref_=nv_ev_sun_4" >Sundance</a></li>
<li><a href="/cannes/?ref_=nv_ev_can_5" >Cannes</a></li>
<li><a href="/comic-con/?ref_=nv_ev_comic_6" >Comic-Con</a></li>
<li><a href="/emmys/?ref_=nv_ev_rte_7" >Emmy Awards</a></li>
<li><a href="/venice/?ref_=nv_ev_venice_8" >Venice Film Festival</a></li>
<li><a href="/toronto/?ref_=nv_ev_tff_9" >Toronto Film Festival</a></li>
<li><a href="/festival-central/?ref_=nv_ev_fc_10" >Festival Central</a></li>
<li><a href="/festival-central/tribeca/?ref_=nv_ev_tff_11" >Tribeca</a></li>
<li><a href="/event/all/?ref_=nv_ev_all_12" >All Events</a></li>
</ul>
</div>
</div>
</li>
<li class="spacer"></li>
<li class="css_nav_item" id="navNewsMenu" aria-haspopup="true">
<p class="navCategory">
<a href="/news/top?ref_=nv_tp_nw_1" >News</a> &<br />
<a href="/czone/?ref_=nv_cm_cz_2" >Community</a>
</p>
<span class="downArrow"></span>
<div id="navMenu3" class="sub_nav">
<div id="latestHeadlines">
<div class="subNavListContainer">
<h5>LATEST HEADLINES</h5>
<ul>
<li itemprop="headline">
<a href="/news/ni61064128/?ref_=nb_nwt_1" >
‘Guardians Of The Galaxy Vol. 2’ Now Orbiting $138M+ Weekend Opening</a><br />
<span class="time">11 hours ago
</span>
</li>
<li itemprop="headline">
<a href="/news/ni61063780/?ref_=nb_nwt_2" >
Loretta Lynn Admitted to Hospital After Suffering Stroke</a><br />
<span class="time">18 hours ago
</span>
</li>
<li itemprop="headline">
<a href="/news/ni61064110/?ref_=nb_nwt_3" >
Loretta Lynn, ‘Coal Miner’s Daughter,’ Hospitalized After Suffering Stroke</a><br />
<span class="time">17 hours ago
</span>
</li>
</ul>
</div>
</div>
<div class="subNavListContainer">
<h5>NEWS</h5>
<ul>
<li><a href="/news/top?ref_=nv_nw_tp_1" >Top News</a></li>
<li><a href="/news/movie?ref_=nv_nw_mv_2" >Movie News</a></li>
<li><a href="/news/tv?ref_=nv_nw_tv_3" >TV News</a></li>
<li><a href="/news/celebrity?ref_=nv_nw_cel_4" >Celebrity News</a></li>
<li><a href="/news/indie?ref_=nv_nw_ind_5" >Indie News</a></li>
</ul>
<h5>COMMUNITY</h5>
<ul>
<li><a href="/czone/?ref_=nv_cm_cz_2" >Contributor Zone</a></li>
<li><a href="/poll/?ref_=nv_cm_pl_3" >Polls</a></li>
</ul>
</div>
</div>
</li>
<li class="spacer"></li>
<li class="css_nav_item" id="navWatchlistMenu" aria-haspopup="true">
<p class="navCategory singleLine watchlist"><a href="/list/watchlist?ref_=nv_wl_all_0" >Watchlist</a>
</p>
<span class="downArrow"></span>
<div id="navMenu4" class="sub_nav">
<h5>
RECENTLY ADDED
</h5>
<ul id="navWatchlist">
</ul>
<script>
if (!('imdb' in window)) { window.imdb = {}; }
window.imdb.watchlistTeaserData = [
{
href : "/register/login",
id : "wlLogin",
src : "http://i.media-imdb.com/images/SF77aec4b719e703a39cac8d5566a9a0e0/navbar/watchlist_slot1_logged_out.jpg"
}
, {
href : "/search/title?count=100&title_type=feature,tv_series",
src : "http://i.media-imdb.com/images/SF58fa0cd127839460ec17b7302830564f/navbar/watchlist_slot2_popular.jpg"
}
, {
href : "/chart/top",
src : "http://i.media-imdb.com/images/SFe1df4328a14bfcbe6b5cf6fad771c2e4/navbar/watchlist_slot3_top250.jpg"
}
];
</script>
</div>
</li>
<li class="spacer"></li>
</ul>
<script>
if (!('imdb' in window)) { window.imdb = {}; }
window.imdb.navbarAdSlots = {"nameAd":{"clickThru":"http://www.imdb.com/name/nm0000234/","imageUrl":"http://ia.media-imdb.com/images/M/MV5BMTMzMTk0MzIwOV5BMl5BanBnXkFtZTcwMjY0NzYxNw@@._V1._SX250_CR0,0,250,315_.jpg","rank":37,"headline":"Charlize Theron"},"titleAd":{"clickThru":"http://www.imdb.com/title/tt0347149/","imageUrl":"http://ia.media-imdb.com/images/M/MV5BMTkyNTExOTM2OV5BMl5BanBnXkFtZTcwNTk1NzEyNw@@._V1._SY315_CR120,0,410,315_.jpg","titleYears":"2004","titleDisplayBase":{"displayTitleTypeOriginal":"movie","primaryTitleText":"Hauru no ugoku shiro","titleId":"tt0347149","displayTitleType":"movie","regionalTitleTexts":[{"region":"AR","title":"El increíble castillo vagabundo"},{"region":"AU","title":"Howl's Moving Castle"},{"language":"fr","region":"BE","title":"Le château ambulant"},{"language":"bg","region":"BG","title":"Ходещият замък на Хаул"},{"region":"BR","title":"O Castelo Animado"},{"region":"CL","title":"El castillo ambulante"},{"region":"CZ","title":"Zámek v oblacích"},{"region":"DE","title":"Das wandelnde Schloss"},{"region":"DK","title":"Det levende slot"},{"region":"ES","title":"El castillo ambulante"},{"language":"ca","region":"ES","title":"El castell ambulant"},{"region":"FI","title":"Liikkuva linna"},{"language":"sv","region":"FI","title":"Det levande slottet"},{"region":"FR","title":"Le château ambulant"},{"region":"GB","title":"Howl's Moving Castle"},{"region":"GR","title":"Το κινούμενο κάστρο"},{"region":"HR","title":"Pokretni dvorac"},{"region":"HU","title":"A vándorló palota"},{"language":"fa","region":"IR","title":"Ghaleye Moteharrek Howl"},{"region":"IT","title":"Il castello errante di Howl"},{"region":"JP","title":"Hauru no ugoku shiro"},{"region":"KR","title":"Howlui umjikineun seong"},{"region":"LT","title":"Keliaujanti pilis"},{"region":"MX","title":"El increíble castillo vagabundo"},{"region":"NO","title":"Det levende slottet"},{"region":"PL","title":"Ruchomy zamek Hauru"},{"region":"PT","title":"O Castelo Andante"},{"region":"RS","title":"Pokretni dvorac"},{"region":"RU","title":"Ходячий замок"},{"region":"SE","title":"Det levande slottet"},{"language":"tr","region":"TR","title":"Yürüyen sato"},{"region":"UA","title":"Мандрiвний замок"},{"region":"US","title":"Howl's Moving Castle"},{"language":"en","region":"XWW","title":"Howl's Moving Castle"}],"year":"2004"},"rank":"140","headline":"Howl's Moving Castle"}};
</script>
</div>
<div id="nb_extra">
<ul id="nb_extra_nav" class="main_nav">
<li class="css_nav_item" id="navProMenu" aria-haspopup="true">
<p class="navCategory">
<a href="http://pro.imdb.com/signup/index.html?rf=cons_nb_hm&ref_=cons_nb_hm" >
<img alt="IMDbPro Menu" src="http://i.media-imdb.com/images/SF4fdfd2dc36b14ed0aabc4f2ccf847c0f/navbar/imdbpro_logo_nb.png" />
</a>
</p>
<span class="downArrow"></span>
<div id="navMenuPro" class="imdb-pro-ad sub_nav">
<a id="proLink" href="http://pro.imdb.com/signup/index.html?rf=cons_nb_hm&ref_=cons_nb_hm" class="imdb-pro-ad__link"
>
<div id="proAd" class="imdb-pro-ad__image">
<img alt="Go to IMDbPro" height="180" width="174"
src="http://i.media-imdb.com/images/SF3cf48fa843440b070cb5b77469e1d3ae/navbar/imdbpro_menu_user.png"
srcset="http://i.media-imdb.com/images/SF3cf48fa843440b070cb5b77469e1d3ae/navbar/imdbpro_menu_user.png 1x,
http://i.media-imdb.com/images/SFb98bc5e7183c9e552c0cc0a4de074b33/navbar/imdbpro_menu_user_2x.png 2x" />
</div>
<section class="imdb-pro-ad__content">
<h1 class="imdb-pro-ad__title">The leading information resource for the entertainment industry</h1>
<p class="imdb-pro-ad__line">Find industry contacts & talent representation</p>
<p class="imdb-pro-ad__line">Manage your photos, credits, & more</p>
<p class="imdb-pro-ad__line">Showcase yourself on IMDb & Amazon</p>
<span role="button" class="imdb-pro-ad__button">Go to IMDbPro</a>
</section>
</a>
</div>
</li>
<li><span class="ghost">|</span></li>
<li>
<a href="/help/?ref_=nb_hlp" >
Help</a>
</li>
<li class="social">
<a href="https://www.facebook.com/imdb" title="Follow IMDb on Facebook"
target="_blank" >
<span class="desktop-sprite follow-facebook"></span>
</a>
<a href="https://twitter.com/imdb" title="Follow IMDb on Twitter"
target="_blank" >
<span class="desktop-sprite follow-twitter"></span>
</a>
<a href="https://instagram.com/imdb/" title="Follow IMDb on Instagram"
target="_blank" >
<span class="desktop-sprite follow-instagram"></span>
</a>
</li>
</ul>
<script>
if (!('imdb' in window)) { window.imdb = {}; }
window.imdb.proMenuTeaser = {
imageUrl : "http://i.media-imdb.com/images/SF3cf48fa843440b070cb5b77469e1d3ae/navbar/imdbpro_menu_user.png"
};
</script>
</div>
<div id="nb_personal">
<ul id="consumer_user_nav" class="main_nav">
<li class="css_nav_item no_arrow" id="navUserMenu" aria-haspopup="true">
<p class="navCategory singleLine">
<a id="facebook-signin-link" class="signin-button" href="https://graph.facebook.com/v2.8/oauth/authorize?client_id=127059960673829&redirect_uri=https%3A%2F%2Fwww.imdb.com%2Fregistration%2Ffacebookhandler%2F&scope=email%2Cuser_about_me%2Cuser_birthday&state=eyJ1IjoiaHR0cHM6Ly93d3cuaW1kYi5jb20iLCI0OWU2YyI6ImRhMjkifQ%3D%3D">
<span class="facebook-logo"></span>
<span class="signin-facebook-text">Sign in with Facebook</span>
</a>
<a id="nblogin" rel=login href="/registration/signin?ref_=nv_usr_lgin_1" class="signin-other-options-text"
>
Other Sign in options
</a>
</p>
</li>
</ul>
</div>
</div>
</div>
<!-- begin INJECTED_NAVSTRIP -->
<div id="injected_navstrip_wrapper" class="injected_slot">
<script type="text/javascript">
doWithAds(function(){
if ('injected_slot' != 'injected_slot') {
ad_utils.register_ad('injected_navstrip');
}
});
</script>
<iframe allowtransparency="true" class="yesScript" data-dart-params="#doubleclick;u=165225747962;ord=165225747962?" frameborder="0" id="injected_navstrip" marginwidth="0" marginheight="0" name="injected_navstrip" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });" scrolling="no" data-original-width="0" data-original-height="0" width="0" height="0" ></iframe> </div>
<div id="injected_navstrip_reflow_helper"></div>
<script id="injected_navstrip_rendering">
doWithAds(function(){
if ('injected_slot' == 'injected_slot') {
ad_utils.inject_ad.register('injected_navstrip');
} else {
ad_utils.gpt.render_ad('injected_navstrip');
}
}, "ad_utils not defined, unable to render client-side GPT ad or injected ad.");
</script>
<!-- End INJECTED_NAVSTRIP --><!-- _get_ad_for_slot(INJECTED_NAVSTRIP) -->
<div id="pagecontent">
<!-- begin INJECTED_BILLBOARD -->
<div id="injected_billboard_wrapper" class="injected_slot">
<script type="text/javascript">
doWithAds(function(){
if ('injected_slot' != 'injected_slot') {
ad_utils.register_ad('injected_billboard');
}
});
</script>
<iframe allowtransparency="true" class="yesScript" data-dart-params="#doubleclick;u=165225747962;ord=165225747962?" frameborder="0" id="injected_billboard" marginwidth="0" marginheight="0" name="injected_billboard" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });" scrolling="no" data-original-width="0" data-original-height="0" width="0" height="0" ></iframe> </div>
<div id="injected_billboard_reflow_helper"></div>
<script id="injected_billboard_rendering">
doWithAds(function(){
if ('injected_slot' == 'injected_slot') {
ad_utils.inject_ad.register('injected_billboard');
} else {
ad_utils.gpt.render_ad('injected_billboard');
}
}, "ad_utils not defined, unable to render client-side GPT ad or injected ad.");
</script>
<!-- End INJECTED_BILLBOARD --><!-- _get_ad_for_slot(INJECTED_BILLBOARD) -->
<div id="tn15" class="reviews">
<div id="tn15crumbs">
<a href="/">IMDb</a> >
<a href="/title/tt2488496/">Star Wars: Episode VII - The Force Awakens (2015)</a> > <b>Reviews & Ratings - IMDb</b>
</div>
<div id="tn15lhs">
<div class="photo">
<a name="poster" href="/rg/action-box-title/primary-photo/media/rm527556608/tt2488496" title="Star Wars: Episode VII - The Force Awakens"><img border="0" id="primary-poster" alt="Star Wars: Episode VII - The Force Awakens" title="Star Wars: Episode VII - The Force Awakens" src="https://images-na.ssl-images-amazon.com/images/M/MV5BOTAzODEzNDAzMl5BMl5BanBnXkFtZTgwMDU1MTgzNzE@._V1._SX95_SY140_.jpg" /></a>
</div>
<div id="action-box" class="action-box">
<p><a href="/rg/action-box-title/own-the-rights/help/show_leaf?uploadyourfilm">Own the rights?</a></p>
<a class="linkasbutton-secondary disabled" href="#">Buy it at Amazon</a>
<hr />
<a class="linkasbutton-secondary" href="/r/tt_shop/http://pro.imdb.com/title/tt2488496/" onclick="(new Image()).src='/rg/tt_shop/prosystem/images/b.gif?link=/rg/tt_shop/prosystem/http://pro.imdb.com/title/tt2488496/';">More at IMDb Pro</a>
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF24f65d592832287a3f3e1da8898d33f3/wheel/btn2.css" >
<span class="wlb_wrapper" data-tconst="tt2488496" data-size="small" data-caller-name="legacy_title_lhs" data-classes="linkasbutton-secondary"
></span>
<a class="linkasbutton-secondary" href="/rg/action-box-title/update-data/updates?auto=legacy/title/tt2488496/">Update Data</a>
</div>
<h6 style="margin-top: 4px">Quicklinks</h6><form><select id="quicklinks_select" onchange="document.location = this.options[this.selectedIndex].value">
<option value="maindetails">main details</option><option value="combined">combined details</option><option value="fullcredits">full cast and crew</option><option value="companycredits">company credits</option><option value="reviews" selected>reviews</option><option value="externalreviews">external reviews</option><option value="awards">awards</option><option value="ratings">user ratings</option><option value="parentalguide">parents guide</option><option value="plotsummary">plot summary</option><option value="synopsis">synopsis</option><option value="keywords">plot keywords</option><option value="quotes">memorable quotes</option><option value="trivia">trivia</option><option value="goofs">goofs</option><option value="soundtrack">soundtrack listing</option><option value="crazycredits">crazy credits</option><option value="alternateversions">alternate versions</option><option value="movieconnections">movie connections</option><option value="faq">FAQ</option><option value="business">box office/business</option><option value="releaseinfo">release dates</option><option value="locations">filming locations</option><option value="technical">technical specs</option><option value="literature">literature listings</option><option value="news">NewsDesk</option><option value="taglines">taglines</option><option value="videogallery">trailers and videos</option><option value="posters">posters</option><option value="photogallery">photo gallery</option><option value="cinemashowtimes">showtimes</option><option value="officialsites">official sites</option><option value="miscsites">miscellaneous</option><option value="photosites">photographs</option><option value="soundsites">sound clips</option><option value="videosites">video clips</option>
</select></form>
<h6>Top Links</h6>
<a onclick="(new Image()).src='/rg/title-top-links/videogallery/images/b.gif?link=/title/tt2488496/videogallery';" href="/title/tt2488496/videogallery" class="link">trailers and videos</a><a onclick="(new Image()).src='/rg/title-top-links/fullcredits/images/b.gif?link=/title/tt2488496/fullcredits';" href="/title/tt2488496/fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-top-links/trivia/images/b.gif?link=/title/tt2488496/trivia';" href="/title/tt2488496/trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-top-links/officialsites/images/b.gif?link=/title/tt2488496/officialsites';" href="/title/tt2488496/officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-top-links/quotes/images/b.gif?link=/title/tt2488496/quotes';" href="/title/tt2488496/quotes" class="link">memorable quotes</a>
<h6>Overview</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/maindetails/images/b.gif?link=/title/tt2488496/maindetails';"href="maindetails" class="link">main details</a><a onclick="(new Image()).src='/rg/title-nav-item/combined/images/b.gif?link=/title/tt2488496/combined';"href="combined" class="link">combined details</a><a onclick="(new Image()).src='/rg/title-nav-item/fullcredits/images/b.gif?link=/title/tt2488496/fullcredits';"href="fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-nav-item/companycredits/images/b.gif?link=/title/tt2488496/companycredits';"href="companycredits" class="link">company credits</a>
<h6>Awards & Reviews</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/reviews/images/b.gif?link=/title/tt2488496/reviews';"href="reviews" class="link selected">user reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/externalreviews/images/b.gif?link=/title/tt2488496/externalreviews';"href="externalreviews" class="link">external reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/awards/images/b.gif?link=/title/tt2488496/awards';"href="awards" class="link">awards</a><a onclick="(new Image()).src='/rg/title-nav-item/ratings/images/b.gif?link=/title/tt2488496/ratings';"href="ratings" class="link">user ratings</a><a onclick="(new Image()).src='/rg/title-nav-item/parentalguide/images/b.gif?link=/title/tt2488496/parentalguide';"href="parentalguide" class="link">parents guide</a>
<h6>Plot & Quotes</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/plotsummary/images/b.gif?link=/title/tt2488496/plotsummary';"href="plotsummary" class="link">plot summary</a><a onclick="(new Image()).src='/rg/title-nav-item/synopsis/images/b.gif?link=/title/tt2488496/synopsis';"href="synopsis" class="link">synopsis</a><a onclick="(new Image()).src='/rg/title-nav-item/keywords/images/b.gif?link=/title/tt2488496/keywords';"href="keywords" class="link">plot keywords</a><a onclick="(new Image()).src='/rg/title-nav-item/quotes/images/b.gif?link=/title/tt2488496/quotes';"href="quotes" class="link">memorable quotes</a>
<h6>Did You Know?</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/trivia/images/b.gif?link=/title/tt2488496/trivia';"href="trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-nav-item/goofs/images/b.gif?link=/title/tt2488496/goofs';"href="goofs" class="link">goofs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundtrack/images/b.gif?link=/title/tt2488496/soundtrack';"href="soundtrack" class="link">soundtrack listing</a><a onclick="(new Image()).src='/rg/title-nav-item/crazycredits/images/b.gif?link=/title/tt2488496/crazycredits';"href="crazycredits" class="link">crazy credits</a><a onclick="(new Image()).src='/rg/title-nav-item/alternateversions/images/b.gif?link=/title/tt2488496/alternateversions';"href="alternateversions" class="link">alternate versions</a><a onclick="(new Image()).src='/rg/title-nav-item/movieconnections/images/b.gif?link=/title/tt2488496/movieconnections';"href="movieconnections" class="link">movie connections</a><a onclick="(new Image()).src='/rg/title-nav-item/faq/images/b.gif?link=/title/tt2488496/faq';"href="faq" class="link">FAQ</a>
<h6>Other Info</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/business/images/b.gif?link=/title/tt2488496/business';"href="business" class="link">box office/business</a><a onclick="(new Image()).src='/rg/title-nav-item/releaseinfo/images/b.gif?link=/title/tt2488496/releaseinfo';"href="releaseinfo" class="link">release dates</a><a onclick="(new Image()).src='/rg/title-nav-item/locations/images/b.gif?link=/title/tt2488496/locations';"href="locations" class="link">filming locations</a><a onclick="(new Image()).src='/rg/title-nav-item/technical/images/b.gif?link=/title/tt2488496/technical';"href="technical" class="link">technical specs</a><a onclick="(new Image()).src='/rg/title-nav-item/literature/images/b.gif?link=/title/tt2488496/literature';"href="literature" class="link">literature listings</a><a onclick="(new Image()).src='/rg/title-nav-item/news/images/b.gif?link=/title/tt2488496/news';"href="news" class="link">NewsDesk</a>
<h6>Promotional</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/taglines/images/b.gif?link=/title/tt2488496/taglines';"href="taglines" class="link">taglines</a>
<a onclick="(new Image()).src='/rg/title-nav-item/videogallery/images/b.gif?link=/title/tt2488496/videogallery';"href="videogallery" class="link">trailers and videos</a>
<a onclick="(new Image()).src='/rg/title-nav-item/posters/images/b.gif?link=/title/tt2488496/posters';"href="posters" class="link">posters</a>
<a onclick="(new Image()).src='/rg/title-nav-item/photogallery/images/b.gif?link=/title/tt2488496/photogallery';"href="photogallery" class="link">photo gallery</a>
<h6>External Links</h6>
<a onclick="(new Image()).src='/rg/title-nav-item/cinemashowtimes/images/b.gif?link=/title/tt2488496/cinemashowtimes';"href="cinemashowtimes" class="link">showtimes</a><a onclick="(new Image()).src='/rg/title-nav-item/officialsites/images/b.gif?link=/title/tt2488496/officialsites';"href="officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-nav-item/miscsites/images/b.gif?link=/title/tt2488496/miscsites';"href="miscsites" class="link">miscellaneous</a><a onclick="(new Image()).src='/rg/title-nav-item/photosites/images/b.gif?link=/title/tt2488496/photosites';"href="photosites" class="link">photographs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundsites/images/b.gif?link=/title/tt2488496/soundsites';"href="soundsites" class="link">sound clips</a><a onclick="(new Image()).src='/rg/title-nav-item/videosites/images/b.gif?link=/title/tt2488496/videosites';"href="videosites" class="link">video clips</a>
</div>
<div id="tn15main">
<div id="tn15adrhs">
<!-- begin TOP_RHS -->
<div id="top_rhs_wrapper" class="dfp_slot">
<script>
window.generic = window.generic || {};
generic.alphalfaComponents = {
"alphalfa-container.html" : "https://ia.media-imdb.com/images/G/01/imdbads/alphalfa-container-253150330._CB522736199_.html",
"js/collections/alphalfa.js" : "https://ia.media-imdb.com/images/G/01/imdbads/js/collections/alphalfa-3292747090._CB522736629_.js"
};
</script>
<script type="text/javascript">
doWithAds(function(){
if ('dfp_slot' != 'injected_slot') {
ad_utils.register_ad('top_rhs');
}
});
</script>
<iframe allowtransparency="true" class="yesScript" data-dart-params="#doubleclick;u=165225747962;ord=165225747962?" frameborder="0" id="top_rhs" marginwidth="0" marginheight="0" name="top_rhs" onload="doWithAds.call(this, function(){ ad_utils.on_ad_load(this); });" scrolling="no" data-original-width="300" data-original-height="250" width="300" height="250" ></iframe> </div>
<noscript> <a href="http://pubads.g.doubleclick.net/gampad/jump?&iu=4215/imdb2.consumer.main/&sz=300x250|300x600|11x1&t=p%3Dtr%26g%3Dac%26g%3Dad%26g%3Dsf%26g%3Dbaa%26g%3Df%26tt%3Df%26m%3DPG13%26mh%3DPG13%26ml%3DPG13%26coo%3Dus%26b%3Dt250%26b%3Dt250a%26fv%3D1%26id%3Dtt2488496%26ab%3Df%26bpx%3D1%26c%3D0&tile=1&c=165225747962" target="_blank"> <img src="http://pubads.g.doubleclick.net/gampad/ad?&iu=4215/imdb2.consumer.main/&sz=300x250|300x600|11x1&t=p%3Dtr%26g%3Dac%26g%3Dad%26g%3Dsf%26g%3Dbaa%26g%3Df%26tt%3Df%26m%3DPG13%26mh%3DPG13%26ml%3DPG13%26coo%3Dus%26b%3Dt250%26b%3Dt250a%26fv%3D1%26id%3Dtt2488496%26ab%3Df%26bpx%3D1%26c%3D0&tile=1&c=165225747962" border="0" alt="advertisement" /> </a> </noscript>
<div id="top_rhs_reflow_helper"></div>
<div id="top_rhs_after" class="after_ad" style="visibility:hidden;">
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
</div>
<script id="top_rhs_rendering">
doWithAds(function(){
if ('dfp_slot' == 'injected_slot') {
ad_utils.inject_ad.register('top_rhs');
} else {
ad_utils.gpt.render_ad('top_rhs');
}
}, "ad_utils not defined, unable to render client-side GPT ad or injected ad.");
</script>
<!-- End TOP_RHS --><!-- _get_ad_for_slot(TOP_RHS) -->
</div>
<div id="tn15title">
<h1><small>Reviews & Ratings for<br></small>
<a class="main" href="/title/tt2488496/">Star Wars: Episode VII - The Force Awakens</a> <span> <span class="pro-link"><a href="http://pro.imdb.com/rg/reviews-title/tconst-pro-header-link/title/tt2488496/">More at <strong>IMDbPro</strong></a> »</span><span class="title-extra"></span></span>
</h1>
</div>
<div id="tn15content">
<a style="margin-top:10px;margin-bottom:10px" class="btn large" href="/title/tt2488496/reviews-enter?ref_=tt_ur_urv">Write review</a><br/>
<style type="text/css"><!--
.click { cursor: pointer; cursor: hand; }
.yn { padding: 2px; background: #eeeeee; }
.yn form { display: inline; margin: 0; }
.yn input { font-weight: bold; padding: 0px 4px 8px; height: 20px }
.yn span { color: #008000; font-weight: bold; font-size: smaller; }
.yn span.error { color: #800000; }
.i1 { background: #eeffee; }
.i2 { background: #ffeeee; }
.i3 { background: #eeeeff; }
.i4 { background: #ffffee; }
.ucft { margin-bottom: 4px }
.ucft td { font-size: smaller }
.ucft .warning { color: #800000; font-weight: bold; }
.ucft input.save { padding: 0px; border: 0; background: none; color: #0000ff; text-decoration: underline; font-size: smaller; }
.ucft input.apply { font-weight: bold; padding: 0px 8px; height: 20px }
img.avatar {
float: left;
margin: 5px 10px 10px 0;
border: 1px solid #ddd;
padding: 1px;
}
div#pagecontent div#tn15 h2 {
margin: 5px 0 0;
}
div#pagecontent div#tn15 .comment-summary {
padding: 0 0 15px 10px;
}
--></style>
<form method="get" action="/title/tt2488496/reviews">
<table class="ucft" border="0" cellpadding="1" cellspacing="1">
<tr>
<td style="font-size: medium; font-weight: bold">Filter:</td>
<td colspan="3">
<select name="filter" onChange="this.form.submit()">
<option value="best" selected>Best</option>
<option value="chrono">Chronological</option>
<option value="prolific">Prolific Authors</option>
<option value="love">Loved It</option>
<option value="hate">Hated It</option>
</select>
Hide Spoilers:
<input type="checkbox" value="hide" name="spoiler" onChange="this.form.submit()">
<noscript>
<input class="apply click linkasbutton-secondary" type="submit" value="Apply">
</noscript>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
<!--
function yn(id, vote) {
if (!document.getElementById || !document.createElement || !document.removeChild || !document.appendChild || !document.childNodes || !document.createTextNode) return true;
var i = new Image();
i.onload = function() { ynd(id, 1) };
i.onerror = function() { ynd(id, 0) };
i.src = 'reviews-vote?yni_'+id+'='+vote;
return false;
}
function ynd(id, status) {
var d, s, t;
if (!(d = document.getElementById('ynd_'+id))) return true;
while (d.childNodes.length) d.removeChild(d.childNodes[0]);
var s = document.createElement('span');
if (!status) s.setAttribute('class', 'error');
s.innerHTML = status ? 'Thank you, your vote will be counted and appear on this page within 24 hours.' : 'Sorry, there was a problem collecting your vote.';
d.appendChild(s);
}
//-->
</script>
<table><tr><td nowrap="1"><font face="Arial, Helvetica, sans-serif" size="-1">Page 39 of 413:</font></td><td nowrap="1"> <a href="reviews?start=370"><img width="10" height="9" border="0" src="http://i.media-imdb.com/f85.gif" alt="[Prev]"></a><a title="34" href="reviews?start=330">[34]</a> <a title="35" href="reviews?start=340">[35]</a> <a title="36" href="reviews?start=350">[36]</a> <a title="37" href="reviews?start=360">[37]</a> <a title="38" href="reviews?start=370">[38]</a> <a title="39" href="reviews?start=380"><b>[39]</b></a> <a title="40" href="reviews?start=390">[40]</a> <a title="41" href="reviews?start=400">[41]</a> <a title="42" href="reviews?start=410">[42]</a> <a title="43" href="reviews?start=420">[43]</a> <a title="44" href="reviews?start=430">[44]</a> <a title="45" href="reviews?start=440">[45]</a> <a title="46" href="reviews?start=450">[46]</a> <a title="47" href="reviews?start=460">[47]</a> <a title="48" href="reviews?start=470">[48]</a> <a title="49" href="reviews?start=480">[49]</a> <a href="reviews?start=390"><img width="10" height="9" border="0" src="http://i.media-imdb.com/f86.gif" alt="[Next]"></a></td></tr></table>
<table border="0"><tr><td>
<a href="reviews-index?">Index</a>
</td><td align="right">
4122 reviews in total
</td></tr></table>
<hr size="1" noshade="1">
<div>
<small>30 out of 32 people found the following review useful:</small><br>
<a href="/user/ur26623010/"><img class="avatar" src="http://ia.media-imdb.com/images/M/MV5BMjI2NDEyMjYyMF5BMl5BanBnXkFtZTcwMzM3MDk0OQ@@._SX40_SY40_SS40_.jpg" height=${avatar.image.size} width=${avatar.image.size}></a>
<h2>Why? Why? Why was I bored to tears? They messed up Star Wars!</h2>
<img width="102" height="12" alt="1/10" src="http://i.media-imdb.com/images/showtimes/10.gif"><br>
<b>Author:</b>
<a href="/user/ur26623010/">mike_moor</a> <small>from London England</small><br>
<small>23 March 2016</small><br>
</div>
<p>
The only thing good I have to say about this movie is that it has some
pretty good looking special effects. If it was something other than
Star Wars I would give it a better rating but since they messed up the
Star Wars brand with this movie I'm giving it a resounding 1 out of 10.
They killed Star Wars! Even more mind boggling to me is the high rating
this movie received here on IMDb... ???<br><br>This movie was a bore to watch. It made me look at my watch, wishing
the torture I was experiencing would end.<br><br>The story line is lacking, predictable and empty. A story with zero
substance. No heart! No soul! Just a cold, uninteresting special
effects monstrosity. A 5 year old could probably have written this
story. Perhaps it was especially created for 5 year olds? Coupled with
the worst acting I have ever seen and this movie is a total whopper in
my book.<br><br>A sad day for the Star Wars franchise. Not like the previous
installments of Star Wars which were the real deal.
</p>
<div class="yn" id="ynd_3436414">
<form method="get"
action="/register/login"
>
Was the above review useful to you?
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3436414_yes" value="Yes"
rel="login"
>
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3436414_no" value="No"
rel="login"
>
</form>
</div>
<hr noshade="1" size="1" align="center">
<div>
<small>30 out of 32 people found the following review useful:</small><br>
<a href="/user/ur25677654/"><img class="avatar" src="http://ia.media-imdb.com/images/M/MV5BMjI2NDEyMjYyMF5BMl5BanBnXkFtZTcwMzM3MDk0OQ@@._SX40_SY40_SS40_.jpg" height=${avatar.image.size} width=${avatar.image.size}></a>
<h2>Unimaginative reboot! Star Wars is dead.</h2>
<img width="102" height="12" alt="1/10" src="http://i.media-imdb.com/images/showtimes/10.gif"><br>
<b>Author:</b>
<a href="/user/ur25677654/">inanout</a> <small>from Washington DC</small><br>
<small>16 February 2016</small><br>
<p><b>*** This review may contain spoilers ***</b></p>
</div>
<p>
I've been a Star Wars fan since I was a young boy. I don't know every
corner and crevice of the Star Wars universe, but I know it quite well
so I was pretty excited about a new film. Well, let me just say that I
am very disappointed with J.J. Abrams and Disney. They had the
opportunity to create something fresh and meaningful and an chance to
add to the story but instead they recreated A New Hope with a few new
characters and far less appeal. Way to go Disney!! I won't go into
details since there are a ton of YouTube videos and articles on the Web
that already do that, but to put it all in a nut shell, The Force
Awakens is a film we have all already seen. The only thing that is new
is some in your face political correctness. I will not be going to the
theater to see the follow up films, and will wait for them to come out
on Netflix. I know I won't be missing much if anything at all.
</p>
<div class="yn" id="ynd_3416529">
<form method="get"
action="/register/login"
>
Was the above review useful to you?
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3416529_yes" value="Yes"
rel="login"
>
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3416529_no" value="No"
rel="login"
>
</form>
</div>
<hr noshade="1" size="1" width="50%" align="center">
<div>
<small>31 out of 34 people found the following review useful:</small><br>
<a href="/user/ur40221834/"><img class="avatar" src="http://ia.media-imdb.com/images/M/MV5BMjI2NDEyMjYyMF5BMl5BanBnXkFtZTcwMzM3MDk0OQ@@._SX40_SY40_SS40_.jpg" height=${avatar.image.size} width=${avatar.image.size}></a>
<h2>What the Actual F.CK</h2>
<img width="102" height="12" alt="1/10" src="http://i.media-imdb.com/images/showtimes/10.gif"><br>
<b>Author:</b>
<a href="/user/ur40221834/">Enes DALMIS</a> <small>from 4th dimesion</small><br>
<small>12 March 2016</small><br>
</div>
<p>
So.... um. Firstly i want my money back. OK let me break down my EXACT
feeling through the movie...<br><br>So it started off with a big nostalgic title STAR WARS EPISODE VII with
its summary i felt pretty good, it was nostalgic and classic and i had
no complaints or whatsoever and the movie began. it looked promising so
i kept watching with high hopes and expectations (Im not gonna put the
ACTUAL parts of the movie since i don't wanna give spoilers in case you
wanna watch this abomination) and stuff happened droid ran with info of
new and huge Death star (So far i was like 'okay i'll overlook that')
and the environment was nice and kinda nostalgic but after a little bit
i was like 'well this is kinda getting bad' , after a bit more later
'wat?' and really funky stuff started to happen i went 'this is awful,
is this an attempt to make a remake or sequel?, either way it failed
miserably' and closing down to 'final' act i was like 'please just end
it or kill me' and after wards the movie ended and i woke up on my
bed... nope sadly no.<br><br>A more short and accurate version of my opinion would be: It tried to
milk the fan base of the old movies, its pretty much a lousy and awful
recap of episode IV and V. It tried make people feel see the movie as
good by making them feel nostalgic, f.cked up the old characters(In a
really dumb Way) and the ending was RIDICULOUS.<br><br>This movie is just..... No Don't COME NEAR IT
</p>
<div class="yn" id="ynd_3430208">
<form method="get"
action="/register/login"
>
Was the above review useful to you?
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3430208_yes" value="Yes"
rel="login"
>
<input class="click linkasbutton-secondary" type="submit"
name="ynb_3430208_no" value="No"
rel="login"
>
</form>
</div>
<hr noshade="1" size="1" width="50%" align="center">
<div>
<small>31 out of 34 people found the following review useful:</small><br>
<a href="/user/ur0530051/"><img class="avatar" src="https://images-na.ssl-images-amazon.com/images/M/MV5BMjA1NTYwNzY0OV5BMl5BanBnXkFtZTcwMTE2NzE5OQ@@._V1._SX40_SY40_SS40_.jpg" height=${avatar.image.size} width=${avatar.image.size}></a>
<h2>Disappointing</h2>
<img width="102" height="12" alt="3/10" src="http://i.media-imdb.com/images/showtimes/30.gif"><br>
<b>Author:</b>
<a href="/user/ur0530051/">tcomx</a> <small>from United Kingdom</small><br>
<small>6 March 2016</small><br>
</div>
<p>
There's not much that I can add to all the other reviews. <br><br>Just like Skyfall, I went yesterday to see this and came out very
disappointed. My 11 year old daughter, who loved Episode 3 and 5 said
this was boring.<br><br>There was nothing, new or exciting about it and as it was just a poor