spotlite 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +5 -0
- data/README.md +2 -2
- data/lib/spotlite/movie.rb +13 -25
- data/lib/spotlite/version.rb +1 -1
- data/spec/fixtures/tt0002186/index +1533 -1734
- data/spec/fixtures/tt0047396/releaseinfo +61 -55
- data/spec/fixtures/tt0133093/fullcredits +55 -56
- data/spec/fixtures/tt0133093/index +3691 -2175
- data/spec/fixtures/tt0133093/keywords +54 -55
- data/spec/fixtures/tt0133093/releaseinfo +58 -59
- data/spec/fixtures/tt0133093/trivia +248 -283
- data/spec/fixtures/tt0169547/index +3612 -2143
- data/spec/fixtures/tt0317248/index +3721 -2158
- data/spec/spotlite/movie_spec.rb +0 -4
- data/tasks/fixtures.rake +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -68,11 +68,11 @@ Install FakeWeb gem:
|
|
68
68
|
If you want to make a new feature that uses data from a page which is not stubbed out yet:
|
69
69
|
|
70
70
|
$ cd spotlite
|
71
|
-
$ curl -is http://www.imdb.com/title/tt[IMDB_ID]/ > spec/fixtures/tt[IMDB_ID]/index
|
71
|
+
$ curl -is http://www.imdb.com/title/tt[IMDB_ID]/ --header "Accept-Language: en-us" > spec/fixtures/tt[IMDB_ID]/index
|
72
72
|
|
73
73
|
or, for example:
|
74
74
|
|
75
|
-
$ curl -is http://www.imdb.com/title/tt[IMDB_ID]/fullcredits > spec/fixtures/tt[IMDB_ID]/fullcredits
|
75
|
+
$ curl -is http://www.imdb.com/title/tt[IMDB_ID]/fullcredits --header "Accept-Language: en-us" > spec/fixtures/tt[IMDB_ID]/fullcredits
|
76
76
|
|
77
77
|
You get the idea. And don't forget to add corresponding line to `IMDB_SAMPLES`
|
78
78
|
hash in `spec/spec_helper.rb` file.
|
data/lib/spotlite/movie.rb
CHANGED
@@ -36,12 +36,12 @@ module Spotlite
|
|
36
36
|
|
37
37
|
# Returns IMDb rating as a float
|
38
38
|
def rating
|
39
|
-
details.at("div.star-box span[itemprop='ratingValue']").text.to_f rescue nil
|
39
|
+
details.at("div.star-box-details span[itemprop='ratingValue']").text.to_f rescue nil
|
40
40
|
end
|
41
41
|
|
42
42
|
# Returns number of votes as an integer
|
43
43
|
def votes
|
44
|
-
details.at("div.star-box span[itemprop='ratingCount']").text.gsub(/[^\d+]/, "").to_i rescue nil
|
44
|
+
details.at("div.star-box-details span[itemprop='ratingCount']").text.gsub(/[^\d+]/, "").to_i rescue nil
|
45
45
|
end
|
46
46
|
|
47
47
|
# Returns short description as a string
|
@@ -57,14 +57,9 @@ module Spotlite
|
|
57
57
|
# Returns a list of countries as an array of hashes
|
58
58
|
# with keys: +code+ (string) and +name+ (string)
|
59
59
|
def countries
|
60
|
-
block = details.at("#maindetails_center_bottom .txt-block a[href^='/country/']").parent
|
61
|
-
names = block.css("a[href^='/country/']").map { |node| node.text } rescue []
|
62
|
-
links = block.css("a[href^='/country/']").map { |node| node["href"] } rescue []
|
63
|
-
codes = links.map { |link| link.split("/").last } unless links.empty?
|
64
|
-
|
65
60
|
array = []
|
66
|
-
|
67
|
-
array << {:code =>
|
61
|
+
details.css("div.txt-block a[href^='/country/']").each do |node|
|
62
|
+
array << {:code => clean_href(node["href"]), :name => node.text.strip}
|
68
63
|
end
|
69
64
|
|
70
65
|
array
|
@@ -73,14 +68,9 @@ module Spotlite
|
|
73
68
|
# Returns a list of languages as an array of hashes
|
74
69
|
# with keys: +code+ (string) and +name+ (string)
|
75
70
|
def languages
|
76
|
-
block = details.at("#maindetails_center_bottom .txt-block a[href^='/language/']").parent
|
77
|
-
names = block.css("a[href^='/language/']").map { |node| node.text } rescue []
|
78
|
-
links = block.css("a[href^='/language/']").map { |node| node["href"] } rescue []
|
79
|
-
codes = links.map { |link| link.split("/").last } unless links.empty?
|
80
|
-
|
81
71
|
array = []
|
82
|
-
|
83
|
-
array << {:code =>
|
72
|
+
details.css("div.txt-block a[href^='/language/']").each do |node|
|
73
|
+
array << {:code => clean_href(node["href"]), :name => node.text.strip}
|
84
74
|
end
|
85
75
|
|
86
76
|
array
|
@@ -92,15 +82,6 @@ module Spotlite
|
|
92
82
|
details.at("#overview-top .infobar").text.strip[/\d{2,3} min/].to_i rescue nil
|
93
83
|
end
|
94
84
|
|
95
|
-
# Returns MPAA content rating as a hash
|
96
|
-
# with keys: +code+ (string) and +description+ (string)
|
97
|
-
def content_rating
|
98
|
-
code = details.at("div.infobar span.titlePageSprite.absmiddle")['title'] rescue nil
|
99
|
-
description = details.at("span[itemprop='contentRating']").text.strip rescue nil
|
100
|
-
|
101
|
-
hash = {:code => code, :description => description} if code
|
102
|
-
end
|
103
|
-
|
104
85
|
# Returns primary poster URL as a string
|
105
86
|
def poster_url
|
106
87
|
src = details.at("#img_primary img")["src"] rescue nil
|
@@ -235,6 +216,13 @@ module Spotlite
|
|
235
216
|
nil
|
236
217
|
end
|
237
218
|
end
|
219
|
+
|
220
|
+
def clean_href(href) # :nodoc:
|
221
|
+
href = href.gsub(/\?ref.+/, "")
|
222
|
+
href = href.gsub("/country/", "")
|
223
|
+
href = href.gsub("/language/", "")
|
224
|
+
href = href.gsub("/name/nm", "")
|
225
|
+
end
|
238
226
|
end
|
239
227
|
|
240
228
|
end
|
data/lib/spotlite/version.rb
CHANGED
@@ -1,101 +1,85 @@
|
|
1
1
|
HTTP/1.1 200 OK
|
2
|
-
Date:
|
2
|
+
Date: Sat, 02 Feb 2013 14:38:50 GMT
|
3
3
|
Server: Server
|
4
|
-
|
5
|
-
|
6
|
-
Content-Type: text/html
|
7
|
-
Set-Cookie: uu=BCYgl4CVG6qYME_EhViERndnmxzYlENtLYlgsygqhY68VdhFl4Ujiu5YiwBbxSfL3ST9y22cc2A0gmLtFvpYIAUulsJMssAbSjcH3qI6jLYhiyZopgjc33J8XME_lydTZf9Mx9-hyT1tgF-BNlr7xjIdQ_G1Z4SiQQ5dz6ec_Ig2-_k;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
8
|
-
Set-Cookie: cs=f604rQtU9HkoLzwkhKO9awbGfbqgkW2NmIHl2qOSHrojAm7ZgDJ+ifCRbYoGES2aoJFb/feVTbqjlzrf99HNybCRWyxAGW26oKdbraCRbbqgsW26oJFt+uDBHYqg==;expires=Fri, 25 Jan 2013 08:00:00 GMT;path=/;domain=.imdb.com
|
9
|
-
Set-Cookie: cs=yBb6RI5tmERZq3DCvzFYFAbGfbqgkW2NmIHl2qOSHrojAm7ZgDJ+ifCRbYoGES2aoJFb/faEzbqjpB4+x9HNySCRWyxAGW26oKdbraCRbbqgsW26oJFt+uDBHYqg==;expires=Fri, 25 Jan 2013 08:00:00 GMT;path=/;domain=.imdb.com
|
4
|
+
Content-Type: text/html;charset=UTF-8
|
5
|
+
Content-Language: en-US
|
10
6
|
Vary: Accept-Encoding,User-Agent
|
7
|
+
Set-Cookie: uu=BCYpEFEvMqB2TaKOpSKqSHCDAk4nP2%2B9OWtBNLXTaYtyMRl2oyYv%2F9ZcrtmYpyZBsolYpl6Cgxd%2F%0D%0Aak1cljorttkE70Z0G4WVuYJiBayiomuh4yWUoGMZQH6MC9x5RsnA%2FmudtsvjRDVtnlVOXMj5Dfog%0D%0A1X%2FuGjeyd8iw0RrNhZvfjSIyFuYLGedPz%2Fp%2BCAlVcmB75JgxIz6PkP7cXkN5dyNhOm1zg57EUqPG%0D%0A%2BhCUFVU5SjvITYFS%2FPxlkZOHTJg9jpUpZqa54Au5m1K%2BEfOJwWUI2g%3D%3D%0D%0A; Domain=.imdb.com; Expires=Thu, 20-Feb-2081 17:52:57 GMT; Path=/
|
8
|
+
Set-Cookie: session-id=000-0000000-0000000; Domain=.imdb.com; Expires=Thu, 20-Feb-2081 17:52:57 GMT; Path=/
|
9
|
+
Set-Cookie: session-id-time=1517582330; Domain=.imdb.com; Expires=Thu, 20-Feb-2081 17:52:57 GMT; Path=/
|
11
10
|
P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="CAO DSP LAW CUR ADM IVAo IVDo CONo OTPo OUR DELi PUBi OTRi BUS PHY ONL UNI PUR FIN COM NAV INT DEM CNT STA HEA PRE LOC GOV OTC "
|
12
11
|
Transfer-Encoding: chunked
|
13
12
|
|
14
13
|
|
15
14
|
|
16
15
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
xmlns:og="http://
|
16
|
+
|
17
|
+
<!DOCTYPE html>
|
18
|
+
<html
|
19
|
+
xmlns:og="http://ogp.me/ns#"
|
21
20
|
xmlns:fb="http://www.facebook.com/2008/fbml">
|
22
21
|
<head>
|
23
|
-
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
|
24
|
-
|
25
|
-
|
26
|
-
<script>
|
27
|
-
var addClickstreamHeadersToAjax = function(xhr) {
|
28
|
-
xhr.setRequestHeader("x-imdb-parent-id", "06PFYQ73CK3NVS3BHSHV");
|
29
|
-
};
|
30
|
-
</script>
|
31
|
-
|
22
|
+
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime(),pt:'java'};</script>
|
23
|
+
|
24
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
32
25
|
<title>The Flying Circus (1912) - IMDb</title>
|
33
|
-
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
34
|
-
|
26
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_title"] = new Date().getTime(); })(IMDbTimer);</script>
|
27
|
+
|
35
28
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
29
|
+
<link rel="canonical" href="http://www.imdb.com/title/tt0002186/" />
|
30
|
+
<meta property="og:url" content="http://www.imdb.com/title/tt0002186/" />
|
31
|
+
|
32
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
33
|
+
<link rel="icon" type="image/ico" href="http://ia.media-imdb.com/images/G/01/imdb/images/favicon-2165806970._V397576410_.ico" />
|
34
|
+
<link rel="shortcut icon" type="image/x-icon" href="http://ia.media-imdb.com/images/G/01/imdb/images/desktop-favicon-2165806970._V397576415_.ico" />
|
35
|
+
<link rel="apple-touch-icon" href="http://ia.media-imdb.com/images/G/01/imdb/images/apple-touch-icon-3173846443._V397576421_.png" />
|
36
|
+
<link rel="search" type="application/opensearchdescription+xml" href="http://z-ecx.images-amazon.com/images/G/01/imdb/images/imdbsearch-3349468880._V398722001_.xml" title="IMDb" />
|
37
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_icon"] = new Date().getTime(); })(IMDbTimer);</script>
|
38
|
+
|
39
|
+
<meta property='og:type' content="video.movie" />
|
40
|
+
<meta property='fb:app_id' content='115109575169727' />
|
41
|
+
<meta property='og:title' content="The Flying Circus (1912)" />
|
42
|
+
<meta property='og:site_name' content='IMDb' />
|
36
43
|
<meta name="title" content="The Flying Circus (1912) - IMDb" />
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
46
|
-
|
47
|
-
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF8b70e464cc883d78a4fe7d6f25a9e50a/css/min/falkor.css" ><!--[if IE]><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFec66a5816f05752bd7e0081357307c4f/css/min/falkor-ie.css" ><![endif]--><link rel='image_src' href='http://i.media-imdb.com/images/SF007a3f88c795cfb71af4856df1fb5fee/imdb-share-logo.png'/><meta property="og:title" content="The Flying Circus (1912)"/><meta property="og:type" content="video.movie"/><meta property="og:image" content="http://i.media-imdb.com/images/SF007a3f88c795cfb71af4856df1fb5fee/imdb-share-logo.png"/><meta property="og:site_name" content="IMDb"/><meta property="fb:app_id" content="115109575169727"/><script type="text/javascript">aax_pubkeywords = [];aax_pubasins = [];</script>
|
48
|
-
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
49
|
-
|
44
|
+
<meta name="keywords" content="Main Details" />
|
45
|
+
<meta name="request_id" content="1BQEF3BAYH5BNRX98DFV" />
|
50
46
|
|
51
|
-
|
52
|
-
|
53
|
-
<
|
54
|
-
<
|
55
|
-
|
56
|
-
<
|
57
|
-
|
58
|
-
<
|
59
|
-
<
|
60
|
-
|
61
|
-
<script>
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
<
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
generic.
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
"c288d35d9359e262340cf66d399d2d36f64421fe",
|
88
|
-
"2013-01-24T21%3A14%3A30GMT",
|
89
|
-
"http://s.media-imdb.com/twilight/?");
|
90
|
-
|
91
|
-
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
92
|
-
|
93
|
-
generic.monitoring.start_timing("page_load");
|
94
|
-
generic.seconds_to_midnight = 42390;
|
95
|
-
generic.days_to_midnight = 0.490625;
|
96
|
-
custom.full_page.data_url = "http://i.media-imdb.com/images/SF52343caf319e887027f13568332cdfd7/a/js/graffiti_data.js";
|
97
|
-
ad_utils.ad_prediction.init();
|
98
|
-
consoleLog('advertising initialized','ads');
|
47
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
48
|
+
<!-- h=ics-1d-i-d2ac42a2.us-east-1 -->
|
49
|
+
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/collections/title_main_details-595713542._V377169828_.css" />
|
50
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_post_css"] = new Date().getTime(); })(IMDbTimer);</script>
|
51
|
+
|
52
|
+
<script>(function(t){ (t.events = t.events || {})["csm_head_pre_ads"] = new Date().getTime(); })(IMDbTimer);</script>
|
53
|
+
<!-- begin ads header -->
|
54
|
+
<script>window.ads_js_start = new Date().getTime();</script>
|
55
|
+
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/js/collections/ads-3154492555._V377104080_.js"></script>
|
56
|
+
<script>generic.monitoring.record_metric("ads_js_request_to_done", (new Date().getTime()) - window.ads_js_start);</script>
|
57
|
+
<script>
|
58
|
+
(function(url,itemName,h,w) {
|
59
|
+
if (flashAdUtils.canPlayFlash(9)) {
|
60
|
+
var flashTags = flashAdUtils.makeFlashAd({ id:itemName, src:url, height:h, width:w });
|
61
|
+
document.write('<div style="position:absolute;visibility:hidden;">' + flashTags + '</div>');
|
62
|
+
}
|
63
|
+
})("http://ia.media-imdb.com/images/M/MV5BMTMzMzgxNzM2M15BMl5Bc3dmXkFtZTcwNzM0MTkxNw@@._V1_.swf","baker",1,1);
|
64
|
+
// Stuff that we need to try a little harder on still...
|
65
|
+
// TODO: weblab stuff
|
66
|
+
|
67
|
+
generic.monitoring.set_forester_info("title");
|
68
|
+
generic.monitoring.set_twilight_info(
|
69
|
+
"title",
|
70
|
+
"EE",
|
71
|
+
"85ac623c7b399f36af2f1987a88f74f35d1dfcef",
|
72
|
+
"2013-02-02T14%3A38%3A50GMT",
|
73
|
+
"http://s.media-imdb.com/twilight/?");
|
74
|
+
|
75
|
+
generic.send_csm_head_metrics && generic.send_csm_head_metrics();
|
76
|
+
|
77
|
+
generic.monitoring.start_timing("page_load");
|
78
|
+
generic.seconds_to_midnight = 62470;
|
79
|
+
generic.days_to_midnight = 0.7230324149131775;
|
80
|
+
custom.full_page.data_url = "http://z-ecx.images-amazon.com/images/G/01/imdbads/js/graffiti_data-2891791370._V397576203_.js";
|
81
|
+
ad_utils.ad_prediction.init();
|
82
|
+
consoleLog('advertising initialized','ads');
|
99
83
|
</script>
|
100
84
|
|
101
85
|
<script>
|
@@ -117,1804 +101,1619 @@ consoleLog('advertising initialized','ads');
|
|
117
101
|
})("http://www.amazon.com/aan/2009-05-01/imdb/default?slot=sitewide-iframe&u=[CLIENT_SIDE_ORD]&ord=[CLIENT_SIDE_ORD]",undefined,custom.amazon.aan_iframe_oncall);
|
118
102
|
</script>
|
119
103
|
|
120
|
-
<!-- end
|
104
|
+
<!-- end ads header -->
|
121
105
|
|
122
|
-
|
123
|
-
<script>
|
124
|
-
if ('csm' in window) {
|
125
|
-
|
126
|
-
}
|
127
|
-
</script>
|
128
|
-
|
129
|
-
</head>
|
106
|
+
|
107
|
+
<script>
|
108
|
+
if ('csm' in window) {
|
109
|
+
csm.measure('csm_head_delivery_finished');
|
110
|
+
}
|
111
|
+
</script>
|
112
|
+
</head>
|
130
113
|
<body id="styleguide-v2" class="fixed">
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
</script>
|
137
|
-
|
138
|
-
<div id="hidden_pre_root_content">
|
139
|
-
<!-- start m/s/a/_g_a_s , body -->
|
140
|
-
|
141
|
-
<script>
|
142
|
-
(function(url,itemName,h,w) {
|
143
|
-
if (flashAdUtils.canPlayFlash(9)) {
|
144
|
-
var flashTags = flashAdUtils.makeFlashAd({
|
145
|
-
id:itemName,
|
146
|
-
src:url,
|
147
|
-
height:h || 1,
|
148
|
-
width:w || 1
|
149
|
-
});
|
150
|
-
document.write('<div style="position:absolute;">' + flashTags + '</div>');
|
151
|
-
}
|
152
|
-
})("http://ia.media-imdb.com/images/M/MV5BMTMzMzgxNzM2M15BMl5Bc3dmXkFtZTcwNzM0MTkxNw@@._V1_.swf","baker",1,1);
|
153
|
-
</script>
|
154
|
-
<!-- end m/s/a/_g_a_s , body -->
|
155
|
-
|
156
|
-
</div>
|
114
|
+
<script>
|
115
|
+
if ('csm' in window) {
|
116
|
+
csm.measure('csm_body_delivery_started');
|
117
|
+
}
|
118
|
+
</script>
|
157
119
|
<div id="wrapper">
|
158
120
|
<div id="root" class="redesign">
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
121
|
<div id="nb20" class="navbarSprite">
|
164
|
-
|
165
|
-
|
166
|
-
|
122
|
+
<div id="supertab">
|
167
123
|
<!-- begin TOP_AD -->
|
168
124
|
<div id="top_ad_wrapper" class="dfp_slot">
|
169
|
-
<script type="text/javascript">
|
125
|
+
<script type="text/javascript">
|
170
126
|
ad_utils.register_ad('top_ad');
|
171
127
|
</script>
|
172
|
-
<iframe data-
|
173
|
-
|
174
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=3;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=3;sz=728x90,1008x150,1008x200,1008x66,1008x30,970x250,9x1;p=t;p=top;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
|
175
|
-
|
128
|
+
<iframe data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_ad" name="top_ad" class="yesScript" width="0" height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
129
|
+
<noscript><a href="http//ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=11;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" target="_blank"><img src="http//ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=11;sz=728x90,1008x150,1008x200,1008x30,970x250,9x1;p=top;p=t;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" border="0" alt="advertisement" /></a></noscript>
|
176
130
|
</div>
|
177
131
|
<div id="top_ad_reflow_helper"></div>
|
178
132
|
<script>ad_utils.render_ad_fast('top_ad'); ad_utils.fallback.start_kill_timer('top_ad'); </script>
|
179
133
|
<!-- End TOP_AD -->
|
180
|
-
</div>
|
181
|
-
<div id="navbar" class="navbarSprite">
|
182
|
-
<noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF52e6b9f11712d3ec552179f6c869b63a/css2/site/consumer-navbar-no-js.css"></noscript>
|
183
|
-
<span id="home_img_holder"> <a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" id='home_img' class='navbarSprite' title='Home' ></a>
|
184
|
-
|
185
|
-
<span class="alt_logo">
|
186
|
-
<a onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=%2F';" href="/" title='Home' >IMDb</a>
|
187
|
-
</span>
|
188
|
-
</span>
|
189
|
-
|
190
|
-
|
191
|
-
<form onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';" action="/find" method="get" id="navbar-form" class="nav-searchbar-inner" >
|
192
|
-
|
193
|
-
<div id="nb_search" >
|
194
|
-
|
195
|
-
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
|
196
|
-
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
|
197
|
-
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more..." >
|
198
|
-
<div class="quicksearch_dropdown_wrapper">
|
199
|
-
|
200
|
-
<select
|
201
|
-
class="quicksearch_dropdown navbarSprite"
|
202
|
-
name="s"
|
203
|
-
id="quicksearch"
|
204
|
-
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
|
205
|
-
|
206
|
-
<option
|
207
|
-
value="all">All</option>
|
208
|
-
<option
|
209
|
-
value="tt">Titles</option>
|
210
|
-
<option
|
211
|
-
value="ep">TV Episodes</option>
|
212
|
-
<option
|
213
|
-
value="nm">Names</option>
|
214
|
-
<option
|
215
|
-
value="co">Companies</option>
|
216
|
-
<option
|
217
|
-
value="kw">Keywords</option>
|
218
|
-
<option
|
219
|
-
value="ch">Characters</option>
|
220
|
-
<option
|
221
|
-
value="vi">Videos</option>
|
222
|
-
<option
|
223
|
-
value="qu">Quotes</option>
|
224
|
-
<option
|
225
|
-
value="bi">Bios</option>
|
226
|
-
<option
|
227
|
-
value="pl">Plots</option>
|
228
|
-
</select>
|
229
|
-
|
230
|
-
</div>
|
231
134
|
|
232
|
-
<div id="navbar-suggestionsearch"></div>
|
233
135
|
</div>
|
234
|
-
|
136
|
+
<div id="navbar" class="navbarSprite">
|
137
|
+
<noscript>
|
138
|
+
<link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/site/consumer-navbar-no-js-4175877511._V397576211_.css" />
|
139
|
+
</noscript>
|
140
|
+
<!--[if IE]><link rel="stylesheet" type="text/css" href="http://z-ecx.images-amazon.com/images/G/01/imdb/css/site/consumer-navbar-ie-470687728._V397576211_.css"><![endif]-->
|
141
|
+
<span id="home_img_holder">
|
142
|
+
<a
|
143
|
+
onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=/';"
|
144
|
+
href="/"
|
145
|
+
title="Home"
|
146
|
+
class="navbarSprite"
|
147
|
+
id="home_img"
|
148
|
+
></a> <span class="alt_logo">
|
149
|
+
<a
|
150
|
+
onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=/';"
|
151
|
+
href="/"
|
152
|
+
title="Home"
|
153
|
+
>IMDb</a>
|
154
|
+
</span>
|
155
|
+
</span>
|
156
|
+
<form
|
157
|
+
onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';"
|
158
|
+
method="get"
|
159
|
+
action="/find"
|
160
|
+
class="nav-searchbar-inner"
|
161
|
+
id="navbar-form"
|
162
|
+
|
163
|
+
>
|
164
|
+
<div id="nb_search">
|
165
|
+
<noscript><div id="more_if_no_javascript"><a href="/search/">More</a></div></noscript>
|
166
|
+
<button id="navbar-submit-button" class="primary btn" type="submit"><div class="magnifyingglass navbarSprite"></div></button>
|
167
|
+
<input type="text" autocomplete="off" value="" name="q" id="navbar-query" placeholder="Find Movies, TV shows, Celebrities and more...">
|
168
|
+
<div class="quicksearch_dropdown_wrapper">
|
169
|
+
<select name="s" id="quicksearch" class="quicksearch_dropdown navbarSprite"
|
170
|
+
onchange="jumpMenu(this); suggestionsearch_dropdown_choice(this);">
|
171
|
+
<option value="all" >All</option>
|
172
|
+
<option value="tt" >Titles</option>
|
173
|
+
<option value="ep" >TV Episodes</option>
|
174
|
+
<option value="nm" >Names</option>
|
175
|
+
<option value="co" >Companies</option>
|
176
|
+
<option value="kw" >Keywords</option>
|
177
|
+
<option value="ch" >Characters</option>
|
178
|
+
<option value="vi" >Videos</option>
|
179
|
+
<option value="qu" >Quotes</option>
|
180
|
+
<option value="bi" >Bios</option>
|
181
|
+
<option value="pl" >Plots</option>
|
182
|
+
</select>
|
183
|
+
</div>
|
184
|
+
<div id="navbar-suggestionsearch"></div>
|
185
|
+
</div>
|
235
186
|
</form>
|
236
|
-
|
237
187
|
<div id="nb_personal">
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
188
|
+
<a
|
189
|
+
onclick="(new Image()).src='/rg/register-v2/navbar/images/b.gif?link=https://secure.imdb.com/register-imdb/form-v2';"
|
190
|
+
href="https://secure.imdb.com/register-imdb/form-v2"
|
191
|
+
>Register</a>
|
192
|
+
| <a
|
193
|
+
onclick="(new Image()).src='/rg/login/navbar/images/b.gif?link=/register/login';"
|
194
|
+
rel="login"
|
195
|
+
href="/register/login"
|
196
|
+
id="nblogin"
|
197
|
+
>Login</a>
|
198
|
+
| <a
|
199
|
+
onclick="(new Image()).src='/rg/help/navbar/images/b.gif?link=/help/';"
|
200
|
+
href="/help/"
|
201
|
+
>Help</a>
|
244
202
|
</div>
|
245
|
-
|
246
|
-
|
247
203
|
<div>
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
<a onclick="(new Image()).src='/rg/navbar-movies/navbar/images/b.gif?link=%2Fmovies-in-theaters%2F%3Fref_%3Dnb_mv_1_inth';" href="/movies-in-theaters/?ref_=nb_mv_1_inth" class='navbarSprite' > Movies</a>
|
254
|
-
|
204
|
+
<ul id="consumer_main_nav" class="main_nav">
|
205
|
+
<li class="css_nav_item" aria-haspopup="true">
|
206
|
+
<a href="/movies-in-theaters/?ref_=nb_mv_1_inth" class="navbarSprite" >Movies</a>
|
255
207
|
<ul class="sub_nav">
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
</li>
|
265
|
-
|
266
|
-
<li>
|
267
|
-
<a onclick="(new Image()).src='/rg/usboxoffice/navbar/images/b.gif?link=%2Fchart%2F%3Fref_%3Dnb_mv_4_cht';" href="/chart/?ref_=nb_mv_4_cht" >US Box Office</a>
|
268
|
-
</li>
|
269
|
-
|
270
|
-
<li>
|
271
|
-
<a onclick="(new Image()).src='/rg/comingsoon/navbar/images/b.gif?link=%2Fmovies-coming-soon%2F%3Fref_%3Dnb_mv_5_cs';" href="/movies-coming-soon/?ref_=nb_mv_5_cs" >Coming Soon</a>
|
272
|
-
</li>
|
273
|
-
|
274
|
-
<li>
|
275
|
-
<a onclick="(new Image()).src='/rg/showtimes/navbar/images/b.gif?link=%2Fshowtimes%2F%3Fref_%3Dnb_mv_6_sh';" href="/showtimes/?ref_=nb_mv_6_sh" >Showtimes</a>
|
276
|
-
</li>
|
277
|
-
|
278
|
-
<li>
|
279
|
-
<a onclick="(new Image()).src='/rg/dvdbluray/navbar/images/b.gif?link=%2Fsections%2Fdvd%2F%3Fref_%3Dnb_mv_7_dvd';" href="/sections/dvd/?ref_=nb_mv_7_dvd" >On DVD & Blu-Ray</a>
|
280
|
-
</li>
|
281
|
-
|
282
|
-
<li>
|
283
|
-
<a onclick="(new Image()).src='/rg/xrayformovies/navbar/images/b.gif?link=%2Fx-ray%2F%3Fref_%3Dnb_mv_8_xray';" href="/x-ray/?ref_=nb_mv_8_xray" >X-Ray for Movies</a>
|
284
|
-
</li>
|
285
|
-
|
286
|
-
<li>
|
287
|
-
<a onclick="(new Image()).src='/rg/oscars/navbar/images/b.gif?link=%2Foscars%2F%3Fref_%3Dnb_mv_9_rto';" href="/oscars/?ref_=nb_mv_9_rto" >Road to the Oscars</a>
|
288
|
-
</li>
|
289
|
-
|
208
|
+
<li><a href="/movies-in-theaters/?ref_=nb_mv_2_inth" >In Theaters</a></li>
|
209
|
+
<li><a href="/chart/top?ref_=nb_mv_3_chttp" >Top 250</a></li>
|
210
|
+
<li><a href="/chart/?ref_=nb_mv_4_cht" >US Box Office</a></li>
|
211
|
+
<li><a href="/movies-coming-soon/?ref_=nb_mv_5_cs" >Coming Soon</a></li>
|
212
|
+
<li><a href="/showtimes/?ref_=nb_mv_6_sh" >Showtimes</a></li>
|
213
|
+
<li><a href="/sections/dvd/?ref_=nb_mv_7_dvd" >On DVD & Blu-Ray</a></li>
|
214
|
+
<li><a href="/x-ray/?ref_=nb_mv_8_xray" >X-Ray for Movies</a></li>
|
215
|
+
<li><a href="/oscars/?ref_=nb_mv_9_rto" >Road to the Oscars</a></li>
|
290
216
|
</ul>
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
<a onclick="(new Image()).src='/rg/navbar-tv/navbar/images/b.gif?link=%2Ftv%2F%3Fref_%3Dnb_tv_1_hm';" href="/tv/?ref_=nb_tv_1_hm" class='navbarSprite' > TV</a>
|
296
|
-
|
217
|
+
</li>
|
218
|
+
<li class="css_nav_item" aria-haspopup="true">
|
219
|
+
<a href="/tv/?ref_=nb_tv_1_hm" class="navbarSprite" >TV</a>
|
297
220
|
<ul class="sub_nav">
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
</li>
|
303
|
-
|
304
|
-
<li>
|
305
|
-
<a onclick="(new Image()).src='/rg/besttv/navbar/images/b.gif?link=%2Fsearch%2Ftitle%3Fnum_votes%3D5000%2C%26amp%3Bsort%3Duser_rating%2Cdesc%26amp%3Btitle_type%3Dtv_series%26amp%3Bref_%3Dnb_tv_3_srs';" href="/search/title?num_votes=5000,&sort=user_rating,desc&title_type=tv_series&ref_=nb_tv_3_srs" >Top TV Series</a>
|
306
|
-
</li>
|
307
|
-
|
308
|
-
<li>
|
309
|
-
<a onclick="(new Image()).src='/rg/tvlistings/navbar/images/b.gif?link=%2Ftvgrid%2F%3Fref_%3Dnb_tv_4_ls';" href="/tvgrid/?ref_=nb_tv_4_ls" >TV Listings</a>
|
310
|
-
</li>
|
311
|
-
|
312
|
-
<li>
|
313
|
-
<a onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=http%3A%2F%2Fwww.imdb.com%2Ffeatures%2Fvideo%2Ftv%2F%3Fref_%3Dnb_tv_5_ep';" href="http://www.imdb.com/features/video/tv/?ref_=nb_tv_5_ep" >TV Episodes</a>
|
314
|
-
</li>
|
315
|
-
|
221
|
+
<li><a href="/tv/?ref_=nb_tv_2_hm" >TV Home</a></li>
|
222
|
+
<li><a href="/search/title?num_votes=5000,&sort=user_rating,desc&title_type=tv_series&ref_=nb_tv_3_srs" >Top TV Series</a></li>
|
223
|
+
<li><a href="/tvgrid/?ref_=nb_tv_4_ls" >TV Listings</a></li>
|
224
|
+
<li><a href="/features/video/tv/?ref_=nb_tv_5_ep" >TV Episodes</a></li>
|
316
225
|
</ul>
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
<a onclick="(new Image()).src='/rg/navbar-news/navbar/images/b.gif?link=%2Fnews%2Ftop%3Fref_%3Dnb_nw_1_tp';" href="/news/top?ref_=nb_nw_1_tp" class='navbarSprite' > News</a>
|
322
|
-
|
226
|
+
</li>
|
227
|
+
<li class="css_nav_item" aria-haspopup="true">
|
228
|
+
<a href="/news/top?ref_=nb_nw_1_tp" class="navbarSprite" >News</a>
|
323
229
|
<ul class="sub_nav">
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
</li>
|
329
|
-
|
330
|
-
<li>
|
331
|
-
<a onclick="(new Image()).src='/rg/movienews/navbar/images/b.gif?link=%2Fnews%2Fmovie%3Fref_%3Dnb_nw_3_mv';" href="/news/movie?ref_=nb_nw_3_mv" >Movie News</a>
|
332
|
-
</li>
|
333
|
-
|
334
|
-
<li>
|
335
|
-
<a onclick="(new Image()).src='/rg/tvnews/navbar/images/b.gif?link=%2Fnews%2Ftv%3Fref_%3Dnb_nw_4_tv';" href="/news/tv?ref_=nb_nw_4_tv" >TV News</a>
|
336
|
-
</li>
|
337
|
-
|
338
|
-
<li>
|
339
|
-
<a onclick="(new Image()).src='/rg/celebritynews/navbar/images/b.gif?link=%2Fnews%2Fcelebrity%3Fref_%3Dnb_nw_5_cel';" href="/news/celebrity?ref_=nb_nw_5_cel" >Celebrity News</a>
|
340
|
-
</li>
|
341
|
-
|
230
|
+
<li><a href="/news/top?ref_=nb_nw_2_tp" >Top News</a></li>
|
231
|
+
<li><a href="/news/movie?ref_=nb_nw_3_mv" >Movie News</a></li>
|
232
|
+
<li><a href="/news/tv?ref_=nb_nw_4_tv" >TV News</a></li>
|
233
|
+
<li><a href="/news/celebrity?ref_=nb_nw_5_cel" >Celebrity News</a></li>
|
342
234
|
</ul>
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
<a onclick="(new Image()).src='/rg/navbar-videos/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_vi_1_tr';" href="/trailers?ref_=nb_vi_1_tr" class='navbarSprite' > Trailers</a>
|
348
|
-
|
235
|
+
</li>
|
236
|
+
<li class="css_nav_item" aria-haspopup="true">
|
237
|
+
<a href="/trailers?ref_=nb_vi_1_tr" class="navbarSprite" >Trailers</a>
|
349
238
|
<ul class="sub_nav">
|
350
|
-
|
351
|
-
|
352
|
-
<li>
|
353
|
-
<a onclick="(new Image()).src='/rg/trailergallery/navbar/images/b.gif?link=%2Ftrailers%3Fref_%3Dnb_vi_2_tr';" href="/trailers?ref_=nb_vi_2_tr" >Trailer Gallery</a>
|
354
|
-
</li>
|
355
|
-
|
239
|
+
<li><a href="/trailers?ref_=nb_vi_2_tr" >Trailer Gallery</a></li>
|
356
240
|
</ul>
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
<a onclick="(new Image()).src='/rg/navbar-community/navbar/images/b.gif?link=%2Fboards%2F%3Fref_%3Dnb_cm_1_bd';" href="/boards/?ref_=nb_cm_1_bd" class='navbarSprite' > Community</a>
|
362
|
-
|
241
|
+
</li>
|
242
|
+
<li class="css_nav_item" aria-haspopup="true">
|
243
|
+
<a href="/boards/?ref_=nb_cm_1_bd" class="navbarSprite" >Community</a>
|
363
244
|
<ul class="sub_nav">
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
<li>
|
371
|
-
<a onclick="(new Image()).src='/rg/lists/navbar/images/b.gif?link=%2Flists%2F%3Fref_%3Dnb_cm_3_nls';" href="/lists/?ref_=nb_cm_3_nls" >Newest Lists</a>
|
372
|
-
</li>
|
373
|
-
|
374
|
-
<li>
|
375
|
-
<a onclick="(new Image()).src='/rg/yourlists/navbar/images/b.gif?link=%2Fprofile%2Flists%3Fref_%3Dnb_cm_4_yls';" href="/profile/lists?ref_=nb_cm_4_yls" >Your Lists</a>
|
376
|
-
</li>
|
377
|
-
|
378
|
-
<li>
|
379
|
-
<a onclick="(new Image()).src='/rg/ratings/navbar/images/b.gif?link=%2Flist%2Fratings%3Fref_%3Dnb_cm_5_yrt';" href="/list/ratings?ref_=nb_cm_5_yrt" >Your Ratings</a>
|
380
|
-
</li>
|
381
|
-
|
382
|
-
<li>
|
383
|
-
<a onclick="(new Image()).src='/rg/contributorzone/navbar/images/b.gif?link=%2Fczone%2F%3Fref_%3Dnb_cm_6_cz';" href="/czone/?ref_=nb_cm_6_cz" >Contributor Zone</a>
|
384
|
-
</li>
|
385
|
-
|
386
|
-
<li>
|
387
|
-
<a onclick="(new Image()).src='/rg/quiz/navbar/images/b.gif?link=%2Fgames%2Fguess%3Fref_%3Dnb_cm_7_qz';" href="/games/guess?ref_=nb_cm_7_qz" >Quiz Game</a>
|
388
|
-
</li>
|
389
|
-
|
245
|
+
<li><a href="/boards/?ref_=nb_cm_2_bd" >Message Boards</a></li>
|
246
|
+
<li><a href="/lists?ref_=nb_cm_3_nls" >Newest Lists</a></li>
|
247
|
+
<li><a href="/profile/lists?ref_=nb_cm_4_yls" >Your Lists</a></li>
|
248
|
+
<li><a href="/list/ratings?ref_=nb_cm_5_yrt" >Your Ratings</a></li>
|
249
|
+
<li><a href="/czone/?ref_=nb_cm_6_cz" >Contributor Zone</a></li>
|
250
|
+
<li><a href="/games/guess?ref_=nb_cm_7_qz" >Quiz Game</a></li>
|
390
251
|
</ul>
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
252
|
+
</li>
|
253
|
+
<li class="css_nav_item" aria-haspopup="true">
|
254
|
+
<a
|
255
|
+
onclick="(new Image()).src='/rg/imdbprohome/navbar/images/b.gif?link=/r/IMDbTabNB/';"
|
256
|
+
href="/r/IMDbTabNB/"
|
257
|
+
class="navbarSprite"
|
258
|
+
>IMDbPro</a>
|
397
259
|
<ul class="sub_nav">
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
</li>
|
411
|
-
|
260
|
+
<li><a
|
261
|
+
onclick="(new Image()).src='/rg/resume/prosystem/images/b.gif?link=/r/Resume/resume/';"
|
262
|
+
href="/r/Resume/resume/"
|
263
|
+
>Add a Resume</a></li>
|
264
|
+
<li><a
|
265
|
+
onclick="(new Image()).src='/rg/procontact/navbar/images/b.gif?link=/r/nm_ovrview_contact/representation/';"
|
266
|
+
href="/r/nm_ovrview_contact/representation/"
|
267
|
+
>Contact Info</a></li>
|
268
|
+
<li><a
|
269
|
+
onclick="(new Image()).src='/rg/demoreels/navbar/images/b.gif?link=/r/DemoReels/demoreels/list';"
|
270
|
+
href="/r/DemoReels/demoreels/list"
|
271
|
+
>Add Demo Reels</a></li>
|
412
272
|
</ul>
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
<a onclick="(new Image()).src='/rg/navbar-apps/navbar/images/b.gif?link=%2Fapps%2F%3Fref_%3Dnb_app_1_hm';" href="/apps/?ref_=nb_app_1_hm" class='navbarSprite' > Apps</a>
|
418
|
-
|
273
|
+
</li>
|
274
|
+
<li class="css_nav_item" aria-haspopup="true">
|
275
|
+
<a href="/apps/?ref_=nb_app_1_hm" class="navbarSprite" >Apps</a>
|
419
276
|
<ul class="sub_nav">
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
</li>
|
425
|
-
|
426
|
-
<li>
|
427
|
-
<a onclick="(new Image()).src='/rg/iosapps/navbar/images/b.gif?link=%2Fapps%2Fios%2F%3Fref_%3Dnb_app_3_ios';" href="/apps/ios/?ref_=nb_app_3_ios" >iPhone + iPad Apps</a>
|
428
|
-
</li>
|
429
|
-
|
430
|
-
<li>
|
431
|
-
<a onclick="(new Image()).src='/rg/androidapps/navbar/images/b.gif?link=%2Fapps%2Fandroid%2F%3Fref_%3Dnb_app_4_andr';" href="/apps/android/?ref_=nb_app_4_andr" >Android Apps</a>
|
432
|
-
</li>
|
433
|
-
|
434
|
-
<li>
|
435
|
-
<a onclick="(new Image()).src='/rg/kindlefireapp/navbar/images/b.gif?link=%2Fapps%2Fkindlefire%2F%3Fref_%3Dnb_app_5_fire';" href="/apps/kindlefire/?ref_=nb_app_5_fire" >Kindle Fire App</a>
|
436
|
-
</li>
|
437
|
-
|
277
|
+
<li><a href="/apps/?ref_=nb_app_2_hm" >Apps Home</a></li>
|
278
|
+
<li><a href="/apps/ios/?ref_=nb_app_3_ios" >iPhone + iPad Apps</a></li>
|
279
|
+
<li><a href="/apps/android/?ref_=nb_app_4_andr" >Android Apps</a></li>
|
280
|
+
<li><a href="/apps/kindlefire/?ref_=nb_app_5_fire" >Kindle Fire App</a></li>
|
438
281
|
</ul>
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
</div>
|
282
|
+
</li>
|
283
|
+
</ul>
|
284
|
+
</div>
|
285
|
+
<div class="nb_extra">
|
286
|
+
<a
|
287
|
+
onclick="(new Image()).src='/rg/watchlist/navbar/images/b.gif?link=/list/watchlist';"
|
288
|
+
href="/list/watchlist"
|
289
|
+
>Your Watchlist</a>
|
290
|
+
</div>
|
291
|
+
</div>
|
452
292
|
</div>
|
453
293
|
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
294
|
+
<!-- no content received for slot: navstrip -->
|
458
295
|
|
459
296
|
|
460
297
|
<!-- begin injectable INJECTED_NAVSTRIP -->
|
461
298
|
<div id="injected_navstrip_wrapper" class="injected_slot">
|
462
|
-
<iframe
|
463
|
-
</div>
|
299
|
+
<iframe id="injected_navstrip" name="injected_navstrip" class="yesScript" width="0" height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe> </div>
|
464
300
|
<script>ad_utils.inject_ad.register('injected_navstrip');</script>
|
465
301
|
<div id="injected_navstrip_reflow_helper"></div>
|
466
302
|
<!-- end injectable INJECTED_NAVSTRIP -->
|
467
303
|
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
304
|
<div id="pagecontent">
|
478
305
|
|
479
|
-
|
480
|
-
|
481
306
|
<!-- begin injectable INJECTED_BILLBOARD -->
|
482
307
|
<div id="injected_billboard_wrapper" class="injected_slot">
|
483
|
-
<iframe
|
484
|
-
</div>
|
308
|
+
<iframe id="injected_billboard" name="injected_billboard" class="yesScript" width="0" height="0" data-config-width="0" data-config-height="0" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe> </div>
|
485
309
|
<script>ad_utils.inject_ad.register('injected_billboard');</script>
|
486
310
|
<div id="injected_billboard_reflow_helper"></div>
|
487
311
|
<!-- end injectable INJECTED_BILLBOARD -->
|
488
312
|
|
489
313
|
|
314
|
+
<script type="text/javascript">setTimeout(function() {
|
315
|
+
var url = "http://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&href=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F";
|
316
|
+
var like = document.getElementById('iframe_like');
|
317
|
+
like.src = url;
|
318
|
+
like.onload = function () { generic.monitoring.stop_timing('facebook_like_iframe', '', false); } }, 5);
|
319
|
+
</script>
|
490
320
|
|
491
321
|
<div id="content-2-wide" class="redesign" itemscope itemtype="http://schema.org/Movie">
|
322
|
+
<div class="maindetails_center" id="maindetails_center_top">
|
323
|
+
|
492
324
|
|
325
|
+
|
326
|
+
<div class="article title-overview">
|
327
|
+
|
328
|
+
<script>
|
329
|
+
if ('csm' in window) {
|
330
|
+
csm.measure('csm_TitleOverviewWidget_started');
|
331
|
+
}
|
332
|
+
</script>
|
333
|
+
<div id="title-overview-widget">
|
334
|
+
<table cellspacing="0" cellpadding="0" border="0" id="title-overview-widget-layout">
|
335
|
+
<tbody>
|
336
|
+
<tr>
|
337
|
+
<td rowspan="2" id="img_primary">
|
338
|
+
</td>
|
339
|
+
<td id="overview-top">
|
340
|
+
|
341
|
+
<div id="prometer_container">
|
342
|
+
<div id="prometer" class="meter-collapsed up">
|
343
|
+
<div id="meterHeaderBox">
|
344
|
+
<div id="meterTitle" class="meterToggleOnHover">MOVIEmeter</div>
|
345
|
+
<a
|
346
|
+
onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=/r/tt_moviemeter_why/title/tt0002186';"
|
347
|
+
href="/r/tt_moviemeter_why/title/tt0002186"
|
348
|
+
id="meterRank"
|
349
|
+
>SEE RANK
|
350
|
+
</a> </div>
|
351
|
+
<div id="meterChangeRow" class="meterToggleOnHover">
|
352
|
+
<span>Up</span>
|
353
|
+
<span id="meterChange">72,257</span>
|
354
|
+
<span>this week</span>
|
355
|
+
</div>
|
356
|
+
<div id="meterSeeMoreRow" class="meterToggleOnHover">
|
357
|
+
<a
|
358
|
+
onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=/r/tt_moviemeter_why/title/tt0002186';"
|
359
|
+
href="/r/tt_moviemeter_why/title/tt0002186"
|
360
|
+
>View rank on IMDbPro</a>
|
361
|
+
<span>»</span>
|
362
|
+
</div>
|
363
|
+
</div>
|
364
|
+
</div>
|
365
|
+
<h1 class="header" itemprop="name"> The Flying Circus
|
493
366
|
|
494
|
-
<
|
367
|
+
<span class="nobr">(<a href="/year/1912/?ref_=tt_ov_inf" >1912</a>)</span>
|
368
|
+
<br/><span class="title-extra">Den flyvende cirkus
|
369
|
+
<i>(original title)</i>
|
370
|
+
</span>
|
371
|
+
</h1>
|
372
|
+
<div class="infobar">
|
495
373
|
|
496
|
-
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
<time itemprop="duration" datetime="PT46M" >
|
378
|
+
46 min
|
379
|
+
</time>
|
380
|
+
-
|
381
|
+
<a href="/genre/Drama?ref_=tt_ov_inf" >Drama</a>
|
382
|
+
|
383
|
+
-
|
384
|
+
<span class="nobr">
|
385
|
+
<a href="/title/tt0002186/releaseinfo?ref_=tt_ov_inf " title="See all release dates" > 28 June 1913
|
386
|
+
(USA)
|
387
|
+
</a> </span>
|
388
|
+
|
389
|
+
</div>
|
390
|
+
<div itemtype="http://schema.org/AggregateRating" itemscope="" itemprop="aggregateRating" class="star-box giga-star">
|
391
|
+
<div class="titlePageSprite star-box-giga-star"> 6.6 </div>
|
392
|
+
<div class="star-box-rating-widget">
|
393
|
+
<span class="star-box-rating-label">Your rating:</span>
|
394
|
+
<div class="rating rating-list" data-starbar-class="rating-list" data-auth="" data-user="" id="tt0002186|imdb|0|0|" data-ga-identifier=""
|
395
|
+
title="Users rated this 6.6/10 (37 votes) - click stars to rate">
|
396
|
+
<span class="rating-bg"> </span>
|
397
|
+
<span class="rating-imdb " style="width: 0px"> </span>
|
398
|
+
<span class="rating-stars">
|
399
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>1</span></a>
|
400
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>2</span></a>
|
401
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>3</span></a>
|
402
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>4</span></a>
|
403
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>5</span></a>
|
404
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>6</span></a>
|
405
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>7</span></a>
|
406
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>8</span></a>
|
407
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>9</span></a>
|
408
|
+
<a rel="nofollow" href="/register/login?why=vote&ref_=tt_ov_rt" title="Register or login to rate this title" ><span>10</span></a>
|
409
|
+
</span>
|
410
|
+
<span class="rating-rating "><span class="value">-</span><span class="grey">/</span><span class="grey"><span itemprop="bestRating">10</span></span></span>
|
411
|
+
<span class="rating-cancel "><a href="/title/tt0002186/vote?v=X;k=" title="Delete" rel="nofollow"><span>X</span></a></span>
|
412
|
+
</div>
|
413
|
+
<span class="hidden" itemprop="ratingValue">-</span>
|
414
|
+
</div>
|
415
|
+
<div class="star-box-details">
|
416
|
+
Ratings:
|
417
|
+
<strong><span itemprop="ratingValue">6.6</span></strong><span class="mellow">/<span itemprop="bestRating">10</span></span> from <a href="ratings?ref_=tt_ov_rt" title="37 IMDb users have given an average vote of 6.6/10" > <span itemprop="ratingCount">37</span> users
|
418
|
+
</a>
|
419
|
+
<br/>
|
420
|
+
Reviews:
|
421
|
+
<a href="reviews?ref_=tt_ov_rt" title="4 IMDb user reviews" > <span itemprop="reviewCount">4 user</span>
|
422
|
+
</a>
|
423
|
+
|
424
|
+
|
425
|
+
|
426
|
+
</div>
|
427
|
+
<div class="clear"></div>
|
428
|
+
</div>
|
429
|
+
<p></p>
|
430
|
+
<p></p>
|
431
|
+
<div class="txt-block">
|
432
|
+
<h4 class="inline">Director:</h4>
|
433
|
+
<span itemprop="director" itemscope itemtype="http://schema.org/Person">
|
434
|
+
<span itemprop="name">
|
435
|
+
<a href="/name/nm0511155/?ref_=tt_ov_dr" itemprop='url'>Alfred Lind</a></span></span>
|
436
|
+
</div>
|
437
|
+
<div class="txt-block">
|
438
|
+
<h4 class="inline">Writers:</h4>
|
439
|
+
<span itemprop="writer" itemscope itemtype="http://schema.org/Person">
|
440
|
+
<span itemprop="name">
|
441
|
+
<a href="/name/nm1921007/?ref_=tt_ov_wr" itemprop='url'>Carl Otto Dumreicher</a></span></span>,
|
442
|
+
<span itemprop="writer" itemscope itemtype="http://schema.org/Person">
|
443
|
+
<span itemprop="name">
|
444
|
+
<a href="/name/nm0511155/?ref_=tt_ov_wr" itemprop='url'>Alfred Lind</a></span></span>
|
445
|
+
</div>
|
446
|
+
|
447
|
+
<div class="txt-block">
|
448
|
+
<h4 class="inline">Stars:</h4>
|
449
|
+
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
450
|
+
<span itemprop="name">
|
451
|
+
<a href="/name/nm0653174/?ref_=tt_ov_st" itemprop='url'>Rasmus Ottesen</a></span></span>,
|
452
|
+
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
453
|
+
<span itemprop="name">
|
454
|
+
<a href="/name/nm0653149/?ref_=tt_ov_st" itemprop='url'>Emilie Otterdahl</a></span></span>,
|
455
|
+
<span itemprop="actors" itemscope itemtype="http://schema.org/Person">
|
456
|
+
<span itemprop="name">
|
457
|
+
<a href="/name/nm0064949/?ref_=tt_ov_st" itemprop='url'>Lili Beck</a></span></span> <span class="ghost">|</span>
|
458
|
+
<span class="see-more inline">
|
459
|
+
<a href="fullcredits?ref_=tt_ov_st_sm#cast" itemprop='url'>See full cast and crew</a> </span>
|
460
|
+
</div>
|
461
|
+
|
462
|
+
|
463
|
+
</td>
|
464
|
+
</tr>
|
465
|
+
<tr>
|
466
|
+
<td id="overview-bottom">
|
467
|
+
<div class="wlb_classic_wrapper">
|
468
|
+
<span class="wlb_wrapper">
|
469
|
+
<a class="wlb_watchlist_btn" data-tconst="tt0002186" data-size="large" data-caller-name="title" data-type="primary">
|
470
|
+
</a>
|
471
|
+
<a class="wlb_dropdown_btn" data-tconst="tt0002186" data-size="large" data-caller-name="title" data-type="primary">
|
472
|
+
</a>
|
473
|
+
</span>
|
474
|
+
<div class="wlb_dropdown_list" style="display:none;">
|
475
|
+
</div>
|
476
|
+
<div class="wlb_alert" style="display:none">
|
477
|
+
</div>
|
478
|
+
</div>
|
479
|
+
|
480
|
+
<div id="share-checkin">
|
481
|
+
<div class="add_to_checkins" data-const="tt0002186" data-lcn="title-maindetails">
|
482
|
+
<span class="btn2_wrapper"><a onclick='' class="btn2 large btn2_text_on disabled checkins_action_btn"><span class="btn2_glyph">0</span><span class="btn2_text">Check in</span></a></span> <div class="popup checkin-dialog">
|
483
|
+
<a class="small disabled close btn">X</a>
|
484
|
+
<span class="beta">Beta</span>
|
485
|
+
<span class="title">I'm Watching This!</span>
|
486
|
+
<div class="body">
|
487
|
+
<div class="info">Keep track of everything you watch; tell your friends.</div>
|
488
|
+
<div class="small message_box">
|
489
|
+
<div class="hidden error"><h2>Error</h2> Please try again!</div>
|
490
|
+
<div class="hidden success"><h2>Added to Your Check-Ins.</h2> <a href="/list/checkins">View</a></div>
|
491
|
+
</div>
|
492
|
+
<textarea data-msg="Enter a comment..."></textarea>
|
493
|
+
<div class="share">
|
494
|
+
<button class="large primary btn"><span>Check in</span></button>
|
495
|
+
<!--
|
496
|
+
Check-ins are more fun when<br>
|
497
|
+
you <a href="/register/sharing">enable Facebook sharing</a>!
|
498
|
+
-->
|
499
|
+
</div>
|
500
|
+
</div>
|
501
|
+
</div>
|
502
|
+
<input type="hidden" name="49e6c" value="da29">
|
503
|
+
</div>
|
504
|
+
</div>
|
505
|
+
<span class="btn2_wrapper"><a onclick='' class="btn2 large btn2_text_on launch-share-popover"><span class="btn2_glyph">0</span><span class="btn2_text">Share...</span></a></span><div id="share-popover">
|
506
|
+
<a class="close-popover" href="#">X</a>
|
507
|
+
<h4>Share</h4>
|
508
|
+
|
509
|
+
<a onclick="window.open('http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186', 'newWindow', 'width=626,height=436'); return false;"
|
510
|
+
href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186"
|
511
|
+
target="_blank"
|
512
|
+
title="Share on Facebook"
|
513
|
+
class="facebook">
|
514
|
+
<div class="option facebook">
|
515
|
+
<span class="titlePageSprite share_facebook"></span>
|
516
|
+
<div>Facebook</div>
|
517
|
+
</div>
|
518
|
+
</a>
|
519
|
+
<a onclick="window.open('http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186', 'newWindow', 'width=815,height=436'); return false;"
|
520
|
+
href="http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186"
|
521
|
+
target="_blank"
|
522
|
+
title="Share on Twitter"
|
523
|
+
class="twitter">
|
524
|
+
<div class="option twitter">
|
525
|
+
<span class="titlePageSprite share_twitter"></span>
|
526
|
+
<div>Twitter</div>
|
527
|
+
</div>
|
528
|
+
</a>
|
529
|
+
|
530
|
+
<a href="mailto:?subject=IMDb%3A%20The%20Flying%20Circus%20(1912)&body=IMDb%3A%20The%20Flying%20Circus%20(1912)%0ACheck%20this%20out%20at%20IMDb%3A%20the%20world's%20leading%20website%20for%20Movie%2C%20TV%2C%20and%20Celebrity%20information.%0Ahttp%3A%2F%2Fwww.imdb.com%2Frg%2Fem_share%2Ftitle_web%2Ftitle%2Ftt0002186" title="Share by e-mail">
|
531
|
+
<div class="option email">
|
532
|
+
<span class="titlePageSprite share_email"></span>
|
533
|
+
<div>E-mail</div>
|
534
|
+
</div>
|
535
|
+
</a>
|
536
|
+
<a href="#" class="open-checkin-popover">
|
537
|
+
<div class="option checkin">
|
538
|
+
<span class="titlePageSprite share_checkin"></span>
|
539
|
+
<div>Check in</div>
|
540
|
+
</div>
|
541
|
+
</a>
|
542
|
+
</div>
|
543
|
+
|
544
|
+
<div class="pro-list-no-trailer-watchlist">
|
545
|
+
<a
|
546
|
+
onclick="(new Image()).src='/rg/title-overview/add-poster/images/b.gif?link=/r/tt_owntherights/https://secure.imdb.com/store/photos/';"
|
547
|
+
href="/r/tt_owntherights/https://secure.imdb.com/store/photos/"
|
548
|
+
>Own the rights? Add a poster</a> » </div>
|
549
|
+
</td>
|
550
|
+
</tr>
|
551
|
+
</tbody>
|
552
|
+
</table>
|
553
|
+
</div>
|
554
|
+
<script>
|
555
|
+
if ('csm' in window) {
|
556
|
+
csm.measure('csm_TitleOverviewWidget_finished');
|
557
|
+
}
|
558
|
+
</script>
|
559
|
+
|
560
|
+
<script>
|
561
|
+
if ('csm' in window) {
|
562
|
+
csm.measure('csm_WatchBarWidget_started');
|
563
|
+
}
|
564
|
+
</script>
|
497
565
|
|
566
|
+
|
567
|
+
<script>
|
568
|
+
if ('csm' in window) {
|
569
|
+
csm.measure('csm_WatchBarWidget_finished');
|
570
|
+
}
|
571
|
+
</script>
|
572
|
+
|
573
|
+
</div>
|
574
|
+
|
575
|
+
|
576
|
+
<script>
|
577
|
+
if ('csm' in window) {
|
578
|
+
csm.measure('csm_atf_main');
|
579
|
+
}
|
580
|
+
</script>
|
581
|
+
|
582
|
+
</div>
|
583
|
+
|
584
|
+
<div id="maindetails_sidebar_top" class="maindetails_sidebar">
|
498
585
|
|
499
586
|
<!-- begin TOP_RHS -->
|
500
587
|
<div id="top_rhs_wrapper" class="dfp_slot">
|
501
|
-
<script type="text/javascript">
|
588
|
+
<script type="text/javascript">
|
502
589
|
ad_utils.register_ad('top_rhs');
|
503
590
|
</script>
|
504
|
-
<iframe data-
|
505
|
-
|
506
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=4;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=4;sz=300x250,300x600,11x1;p=tr;p=tc;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
|
507
|
-
|
591
|
+
<iframe data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=300x250,300x600,11x1;p=tr;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="top_rhs" name="top_rhs" class="yesScript" width="300" height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
592
|
+
<noscript><a href="http//ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=1;sz=300x250,300x600,11x1;p=tr;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" target="_blank"><img src="http//ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=1;sz=300x250,300x600,11x1;p=tr;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" border="0" alt="advertisement" /></a></noscript>
|
508
593
|
</div>
|
509
594
|
<div id="top_rhs_reflow_helper"></div>
|
510
595
|
<script>ad_utils.render_ad_fast('top_rhs'); ad_utils.fallback.start_kill_timer('top_rhs'); </script>
|
511
|
-
|
512
|
-
<
|
513
|
-
|
596
|
+
<div id="top_rhs_after" class="after_ad">
|
597
|
+
<a class="yesScript" href="#" onclick="ad_utils.show_ad_feedback('top_rhs');return false;" id="ad_feedback_top_rhs">ad feedback</a>
|
514
598
|
</div>
|
599
|
+
<!-- End TOP_RHS -->
|
515
600
|
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
<div class="article title-overview" >
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
<div id="title-overview-widget">
|
529
|
-
<table border="0" cellpadding="0" cellspacing="0" id="title-overview-widget-layout">
|
530
|
-
<tr>
|
531
|
-
<td rowspan="2" id="img_primary">
|
532
|
-
</td>
|
533
|
-
|
534
|
-
<td id="overview-top">
|
535
|
-
|
536
|
-
|
537
|
-
<div id="prometer_container">
|
538
|
-
<div id="prometer" class="meter-collapsed down">
|
539
|
-
<div id="meterHeaderBox">
|
540
|
-
<div id="meterTitle" class="meterToggleOnHover">MOVIEmeter</div>
|
541
|
-
<a onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=%2Fr%2Ftt_moviemeter_why%2Ftitle%2Ftt0002186%2F';" href="/r/tt_moviemeter_why/title/tt0002186/" id='meterRank' class='' >SEE RANK</a>
|
542
|
-
</div>
|
543
|
-
<div id="meterChangeRow" class="meterToggleOnHover">
|
544
|
-
<span>Down</span>
|
545
|
-
<span id="meterChange">90,519</span>
|
546
|
-
<span>this week</span>
|
547
|
-
</div>
|
548
|
-
<div id="meterSeeMoreRow" class="meterToggleOnHover">
|
549
|
-
<a onclick="(new Image()).src='/rg/tt_moviemeter_why/prosystem/images/b.gif?link=%2Fr%2Ftt_moviemeter_why%2Ftitle%2Ftt0002186%2F';" href="/r/tt_moviemeter_why/title/tt0002186/" >View rank on IMDbPro</a>
|
550
|
-
<span> »</span>
|
551
|
-
</div>
|
552
|
-
</div>
|
553
|
-
</div>
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
<h1 class="header" itemprop="name">
|
560
|
-
The Flying Circus
|
561
|
-
|
562
|
-
|
563
|
-
<span class="nobr">
|
564
|
-
(<a href="/year/1912/">1912</a>)</span>
|
565
|
-
|
566
|
-
|
567
|
-
<br /><span class="title-extra">
|
568
|
-
Den flyvende cirkus
|
569
|
-
<i>(original title)</i>
|
570
|
-
</span>
|
571
|
-
|
572
|
-
</h1>
|
573
|
-
|
574
|
-
|
575
|
-
<div class="infobar">
|
576
|
-
|
577
|
-
46 min - <a onclick="(new Image()).src='/rg/title-overview/genre/images/b.gif?link=%2Fgenre%2FDrama';" href="/genre/Drama" >Drama</a> -
|
578
|
-
<span class="nobr">
|
579
|
-
<a onclick="(new Image()).src='/rg/title-overview/releaseinfo/images/b.gif?link=%2Ftitle%2Ftt0002186%2Freleaseinfo';" href="/title/tt0002186/releaseinfo" title="See all release dates"
|
580
|
-
>
|
581
|
-
28 June 1913 (USA)</a></span>
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
</div>
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
<div class="star-box giga-star" itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
|
593
|
-
<div class="titlePageSprite star-box-giga-star">
|
594
|
-
6.7
|
595
|
-
</div>
|
596
|
-
<div class="star-box-rating-widget">
|
597
|
-
<span class="star-box-rating-label">Your rating:</span>
|
598
|
-
|
599
|
-
|
600
|
-
<div class="rating rating-list" data-auth="BCYqZdp1VLxZzaYw10knaRM-DR3YlENtLYlgsygqhY68Vdi53gO3KDOmHP0SndO6pLVfvfqu2d1oF0B5mdGv0gZNUDHcNlqEjvKxPW5iWIMo0MoHSr6o6zpD5axe14EHsDa1" id="tt0002186|imdb|0|0|title-maindetails" data-ga-identifier="title"
|
601
|
-
title="Users rated this 6.7/10 (36 votes) - click stars to rate">
|
602
|
-
<span class="rating-bg"> </span>
|
603
|
-
<span class="rating-imdb" style="width: 0px"> </span>
|
604
|
-
<span class="rating-stars">
|
605
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>1</span></a>
|
606
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>2</span></a>
|
607
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>3</span></a>
|
608
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>4</span></a>
|
609
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>5</span></a>
|
610
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>6</span></a>
|
611
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>7</span></a>
|
612
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>8</span></a>
|
613
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>9</span></a>
|
614
|
-
<a href="/register/login?why=vote" title="Register or login to rate this title" rel="nofollow"><span>10</span></a>
|
615
|
-
</span>
|
616
|
-
<span class="rating-rating"><span class="value">-</span><span class="grey">/</span><span class="grey">10</span></span>
|
617
|
-
<span class="rating-cancel"><a href="/title/tt0002186/vote?v=X;k=BCYqZdp1VLxZzaYw10knaRM-DR3YlENtLYlgsygqhY68Vdi53gO3KDOmHP0SndO6pLVfvfqu2d1oF0B5mdGv0gZNUDHcNlqEjvKxPW5iWIMo0MoHSr6o6zpD5axe14EHsDa1" title="Delete" rel="nofollow"><span>X</span></a></span>
|
618
|
-
</div>
|
619
|
-
|
620
|
-
</div>
|
621
|
-
<div class="star-box-details">
|
622
|
-
Ratings: <strong><span itemprop="ratingValue">6.7</span></strong><span class="mellow">/<span itemprop="bestRating">10</span></span> from <a onclick="(new Image()).src='/rg/title-gigastar/votes/images/b.gif?link=ratings';" href="ratings" title="36 IMDb users have given an average vote of 6.7/10"
|
623
|
-
><span itemprop="ratingCount">36</span> users</a>
|
624
|
-
</a>
|
625
|
-
<br/>Reviews: <a onclick="(new Image()).src='/rg/title-gigastar/user-reviews/images/b.gif?link=reviews';" href="reviews" title="4 IMDb user reviews"
|
626
|
-
><span itemprop="reviewCount">4</span> user</a></div>
|
627
|
-
<div class="clear"></div>
|
628
|
-
</div>
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
<p><p itemprop="description">
|
633
|
-
</p>
|
634
|
-
</p>
|
635
|
-
|
636
|
-
|
637
|
-
<div class="txt-block">
|
638
|
-
<h4 class="inline">
|
639
|
-
Director:
|
640
|
-
</h4>
|
641
|
-
<a onclick="(new Image()).src='/rg/title-overview/director-1/images/b.gif?link=%2Fname%2Fnm0511155%2F';" href="/name/nm0511155/" itemprop="director"
|
642
|
-
>Alfred Lind</a></div>
|
643
|
-
|
644
|
-
<div class="txt-block">
|
645
|
-
<h4 class="inline">
|
646
|
-
Writers:
|
647
|
-
</h4>
|
648
|
-
|
649
|
-
<a onclick="(new Image()).src='/rg/title-overview/writer-1/images/b.gif?link=%2Fname%2Fnm0511155%2F';" href="/name/nm0511155/" >Alfred Lind</a>,
|
650
|
-
<a onclick="(new Image()).src='/rg/title-overview/writer-2/images/b.gif?link=%2Fname%2Fnm1921007%2F';" href="/name/nm1921007/" >Carl Otto Dumreicher</a></div>
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
<div class="txt-block">
|
656
|
-
<h4 class="inline">Stars:</h4>
|
657
|
-
<a onclick="(new Image()).src='/rg/title-overview/star-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" itemprop="actors"
|
658
|
-
>Rasmus Ottesen</a>, <a onclick="(new Image()).src='/rg/title-overview/star-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" itemprop="actors"
|
659
|
-
>Emilie Otterdahl</a> and <a onclick="(new Image()).src='/rg/title-overview/star-3/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" itemprop="actors"
|
660
|
-
>Lili Beck</a>
|
661
|
-
<span>|</span>
|
662
|
-
<a onclick="(new Image()).src='/rg/title-overview-w/all-cast/images/b.gif?link=fullcredits%23cast';" href="fullcredits#cast" >See full cast and crew</a>
|
663
|
-
</div>
|
664
|
-
|
665
|
-
|
666
|
-
</td>
|
667
|
-
</tr>
|
668
|
-
|
669
|
-
<tr>
|
670
|
-
<td id="overview-bottom">
|
671
|
-
|
672
|
-
|
673
|
-
<div class="wlb_classic_wrapper wlb_loading_on large" data-tconst="tt0002186" data-ga-identifier="title" data-lcn="title" data-weblab-id="control" data-context="title-overview" data-required-action="login">
|
674
|
-
<span class="btn2_wrapper"><a onclick='' class="wlb_message wlb_is_loading btn2 large primary btn2_glyph_on btn2_text_on" ><span class="btn2_glyph"> </span><span class="btn2_text">Loading</span></a></span><span class="btn2_wrapper"><a onclick='' class="wlb_watchlist_toggle wlb_message wlb_is_enabled lefty btn2 large primary btn2_glyph_on btn2_text_on" ><span class="btn2_glyph">+</span><span class="btn2_text">Watchlist</span></a></span><span class="btn2_wrapper"><a onclick='' class="wlb_dropdown_btn wlb_extra wlb_is_enabled righty btn2 large primary btn2_glyph_on" ><span class="btn2_glyph"><div class="btn2_down"></div>
|
675
|
-
</span><span class="btn2_text"></span></a></span>
|
676
|
-
<div class="wlb_dropdown">
|
677
|
-
|
678
|
-
<div class="wlb_drop_item"><a onclick='' href="/list/watchlist" class="wlb_message"><span class="wlb_text">View Watchlist</span> »
|
679
|
-
</a></div>
|
680
|
-
<div class="wlb_drop_cluster wlb_drop_loading">
|
681
|
-
</div>
|
682
|
-
|
683
|
-
<div class="wlb_drop_item"><a onclick='' href="/list/create" class="wlb_message"><span class="wlb_text">New List</span> »
|
684
|
-
</a></div>
|
685
|
-
</div>
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
<div class="wlb_alert wlb_add_ok" style="display:none">
|
690
|
-
<div class="message_box small">
|
691
|
-
<div class="success">
|
692
|
-
<h2></h2>
|
693
|
-
<p>Added to <span class="wlb_list_name">{$list_name}</span></p>
|
694
|
-
</div>
|
695
|
-
</div>
|
696
|
-
|
697
|
-
</div>
|
698
|
-
<div class="wlb_alert wlb_remove_ok" style="display:none">
|
699
|
-
<div class="message_box small">
|
700
|
-
<div class="success">
|
701
|
-
<h2></h2>
|
702
|
-
<p>Removed from <span class="wlb_list_name">{$list_name}</span></p>
|
703
|
-
</div>
|
704
|
-
</div>
|
705
|
-
|
706
|
-
</div>
|
707
|
-
<div class="wlb_alert wlb_fail" style="display:none">
|
708
|
-
<div class="message_box small">
|
709
|
-
<div class="error">
|
710
|
-
<h2></h2>
|
711
|
-
<p>Could not update <span class="wlb_list_name">{$list_name}</span></p>
|
712
|
-
</div>
|
713
|
-
</div>
|
714
|
-
|
715
|
-
</div>
|
716
|
-
|
717
|
-
</div>
|
718
|
-
</script>
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
<div id="share-checkin">
|
723
|
-
<div class="add_to_checkins" data-const="tt0002186" data-lcn="title" ><span class="btn2_wrapper"><a onclick='' onclick="(new Image()).src='/rg/watchlist/J569/images/b.gif?link=checkins-button-disabled';" class="disabled checkins_action_btn btn2 large btn2_text_on" ><span class="btn2_glyph">0</span><span class="btn2_text">Check In</span></a></span><div class="popup checkin-dialog">
|
724
|
-
<a class="small disabled close btn">X</a>
|
725
|
-
<span class="beta">Beta</span>
|
726
|
-
<span class="title">I'm Watching This!</span>
|
727
|
-
<div class="body">
|
728
|
-
<div class="info">Keep track of everything you watch; tell your friends.</div>
|
729
|
-
<div class="small message_box">
|
730
|
-
<div class="hidden error"><h2>Error</h2> Please try again!</div>
|
731
|
-
<div class="hidden success"><h2>Added to Your Check-Ins.</h2> <a href="/list/checkins">View</a></div>
|
732
|
-
</div>
|
733
|
-
<textarea data-msg="Enter a comment..."></textarea>
|
734
|
-
<div class="share">
|
735
|
-
<button class="large primary btn"><span>Check in</span></button>
|
736
|
-
Check-ins are more fun when<br>
|
737
|
-
you <a href="/register/sharing">enable Facebook sharing</a>!
|
738
|
-
</div>
|
739
|
-
</div>
|
740
|
-
</div>
|
741
|
-
<input type="hidden" name="49e6c" value="da29" />
|
742
|
-
|
743
|
-
</div>
|
744
|
-
|
745
|
-
|
746
|
-
</div>
|
747
|
-
<span class="btn2_wrapper"><a onclick='' class="launch-share-popover btn2 large btn2_text_on" ><span class="btn2_glyph">0</span><span class="btn2_text">Share...</span></a></span>
|
748
|
-
<div id="share-popover">
|
749
|
-
<a class="close-popover" href="#">X</a>
|
750
|
-
<h4>Share</h4>
|
751
|
-
<a onclick="window.open('http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186%2F', 'newWindow', 'width=626, height=436'); return false;" href="http://www.facebook.com/sharer.php?u=http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F3%2Ftitle%2Ftt0002186%2F" target="_blank" title="Share on Facebook" class="facebook">
|
752
|
-
<div class="option facebook">
|
753
|
-
<span class="titlePageSprite share_facebook"></span>
|
754
|
-
<div>Facebook</div>
|
755
|
-
</div>
|
756
|
-
</a>
|
757
|
-
<a onclick="window.open('http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186%2F', 'newWindow', 'width=815, height=436'); return false;" href="http://twitter.com/home?status=The%20Flying%20Circus%20(1912)%20-%20http%3A%2F%2Fwww.imdb.com%2Frg%2Fs%2F1%2Ftitle%2Ftt0002186%2F" target="_blank" title="Share on Twitter" class="twitter">
|
758
|
-
<div class="option twitter">
|
759
|
-
<span class="titlePageSprite share_twitter"></span>
|
760
|
-
<div>Twitter</div>
|
761
|
-
</div>
|
762
|
-
</a>
|
763
|
-
<a href="mailto:?subject=IMDb%3A%20The%20Flying%20Circus%20(1912)&body=The%20Flying%20Circus%20(1912)%0Ahttp://www.imdb.com/rg/em_share/title_web/title/tt0002186/" title="Share by e-mail">
|
764
|
-
<div class="option email">
|
765
|
-
<span class="titlePageSprite share_email"></span>
|
766
|
-
<div>E-mail</div>
|
767
|
-
</div>
|
768
|
-
</a>
|
769
|
-
<a href="#" class="open-checkin-popover">
|
770
|
-
<div class="option checkin">
|
771
|
-
<span class="titlePageSprite share_checkin"></span>
|
772
|
-
<div>Check in</div>
|
773
|
-
</div>
|
774
|
-
</a>
|
775
|
-
</div>
|
776
|
-
|
777
|
-
<div class="pro-list-no-trailer-watchlist">
|
778
|
-
<a onclick="(new Image()).src='/rg/title-overview/add-poster/images/b.gif?link=%2Fr%2Ftt_owntherights%2Fhttps%3A%2F%2Fsecure.imdb.com%2Fstore%2Fphotos%2F';" href="/r/tt_owntherights/https://secure.imdb.com/store/photos/" > Own the rights? Add a poster</a> »
|
779
|
-
</div>
|
780
|
-
</td>
|
781
|
-
|
782
|
-
</tr>
|
783
|
-
|
784
|
-
</table>
|
785
|
-
</div>
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
</div>
|
795
|
-
|
796
|
-
|
797
|
-
<script>
|
798
|
-
if ('csm' in window){
|
799
|
-
csm.measure('csm_atf_main');
|
800
|
-
}
|
801
|
-
</script>
|
802
|
-
|
803
|
-
|
804
|
-
</div>
|
805
|
-
|
806
|
-
<div id="maindetails_sidebar_top" class="maindetails_sidebar">
|
807
|
-
|
808
|
-
|
809
|
-
<script>
|
810
|
-
if ('csm' in window){
|
811
|
-
csm.measure('csm_atf_sidebar');
|
812
|
-
}
|
813
|
-
</script>
|
814
|
-
|
815
|
-
|
816
|
-
</div>
|
817
|
-
|
818
|
-
<script src="http://i.media-imdb.com/images/SF14176f459bd0474f6a0284a9c3ba61f7/a/js/beacon.js" ></script><script>COMSCORE.beacon({c1:2,c2:"6034961",c3:"",c4:"http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",c5:"",c6:"",c15:""});</script>
|
819
|
-
<noscript><img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F&c5=c6=&15=&cj=1"/></noscript>
|
820
|
-
|
601
|
+
<script>
|
602
|
+
if ('csm' in window) {
|
603
|
+
csm.measure('csm_atf_sidebar');
|
604
|
+
}
|
605
|
+
</script>
|
606
|
+
</div>
|
821
607
|
|
822
608
|
<div id="maindetails_sidebar_bottom" class="maindetails_sidebar">
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
<div class="aux-content-widget-2" >
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
<div class="social">
|
833
|
-
<script type="text/javascript">
|
834
|
-
generic.monitoring.start_timing("facebook_like_iframe");
|
835
|
-
</script>
|
836
|
-
<div class="social_networking_like" ><iframe id="iframe_like" name="fbLikeIFrame_0" class="social-iframe" scrolling="no" frameborder="0" allowTransparency="allowTransparency" width=280 height=65></iframe></div>
|
837
|
-
|
838
|
-
</div>
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
</div>
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
<div class="aux-content-widget-3 links" >
|
848
|
-
|
849
|
-
<h4 class="inline">Quick Links:</h4>
|
850
|
-
<form style="display:inline;">
|
851
|
-
<select id="quicklinks_select" name="quicklinks_select">
|
852
|
-
|
853
|
-
<option selected="selected" value="/title/tt0002186/maindetails" dataslot="maindetails" datatag="title-quicklinks">overview</option>
|
854
|
-
|
855
|
-
<option value="/title/tt0002186/fullcredits" dataslot="fullcredits" datatag="title-quicklinks">full cast and crew</option>
|
856
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
857
|
-
<option value="/title/tt0002186/keywords" dataslot="keywords" datatag="title-quicklinks">plot keywords</option>
|
858
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
859
|
-
<option value="/title/tt0002186/trivia?tab=mc" dataslot="trivia?tab=mc" datatag="title-quicklinks">connections</option>
|
860
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
861
|
-
<option value="/title/tt0002186/releaseinfo" dataslot="releaseinfo" datatag="title-quicklinks">release dates</option>
|
862
|
-
|
863
|
-
<option value="/title/tt0002186/companycredits" dataslot="companycredits" datatag="title-quicklinks">company credits</option>
|
864
|
-
|
865
|
-
<option value="/title/tt0002186/locations" dataslot="locations" datatag="title-quicklinks">filming locations</option>
|
866
|
-
|
867
|
-
<option value="/title/tt0002186/technical" dataslot="technical" datatag="title-quicklinks">technical specs</option>
|
868
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
869
|
-
<option value="/title/tt0002186/photogallery" dataslot="photogallery" datatag="title-quicklinks">photo gallery</option>
|
870
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
871
|
-
<option value="/title/tt0002186/recommendations" dataslot="recommendations" datatag="title-quicklinks">recommendations</option>
|
872
|
-
<option value="">- - - - - - - - - - - - - - - - - - - - -</option>
|
873
|
-
<option value="/title/tt0002186/reviews" dataslot="reviews" datatag="title-quicklinks">user reviews</option>
|
874
|
-
|
875
|
-
<option value="/title/tt0002186/ratings" dataslot="ratings" datatag="title-quicklinks">user ratings</option>
|
876
|
-
|
877
|
-
</select>
|
878
|
-
</form>
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
</div>
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
<div class="aux-content-widget-2" >
|
892
|
-
|
893
|
-
|
894
|
-
<div>
|
895
|
-
<div class="rightcornerlink">
|
896
|
-
<a href="/list/create">Create a list </a> »
|
897
|
-
</div>
|
898
|
-
<h3>Related Lists</h3>
|
899
|
-
<div class="list-preview even">
|
900
609
|
|
901
|
-
<div class="
|
902
|
-
<
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
|
914
|
-
|
915
|
-
|
916
|
-
<div class="list-preview odd">
|
917
|
-
|
918
|
-
<div class="list-preview-item-narrow">
|
919
|
-
<a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-image/images/b.gif?link=%2Flist%2FSlIUqt40foI%2F';" href="/list/SlIUqt40foI/" ><img
|
920
|
-
height="86"
|
921
|
-
width="86"
|
922
|
-
alt="image of title" title="image of title"
|
923
|
-
|
924
|
-
src="http://i.media-imdb.com/images/SFaa265aa19162c9e4f3781fbae59f856d/nopicture/medium/film.png" class="" />
|
925
|
-
</a></div>
|
926
|
-
|
927
|
-
<div class="list_name"><b><a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/list-title/images/b.gif?link=%2Flist%2FSlIUqt40foI%2F';" href="/list/SlIUqt40foI/" >MyCollection - Timeline</a></b></div>
|
928
|
-
<div class="list_meta">a list of 612 titles by <a onclick="(new Image()).src='/rg/top-lists-by-const-narrow/byline/images/b.gif?link=%2Fuser%2Fur18787288%2Flists';" href="/user/ur18787288/lists" >mark-4345</a>
|
929
|
-
created 10 Sep 2011
|
930
|
-
</div>
|
931
|
-
<div class="clear"> </div>
|
932
|
-
</div>
|
933
|
-
<div class="see-more"><a href="/lists/tt0002186">See all related lists</a> »</div>
|
934
|
-
</div>
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
</div>
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
<div class="aux-content-widget-2">
|
944
|
-
<h3>Connect with IMDb</h3>
|
945
|
-
<div style="overflow: hidden; width: 278px; height: 156px;">
|
946
|
-
<iframe src="http://www.facebook.com/plugins/likebox.php?href=facebook.com%2Fimdb&width=300&connections=5&stream=false&header=false&height=190" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:298px; height:188px; margin: -4px -10px;" allowTransparency="true"></iframe>
|
947
|
-
</div>
|
948
|
-
<hr>
|
949
|
-
<iframe allowtransparency="true" frameborder="0" role="presentation" scrolling="no" style="width:100%;height:21px" src="http://i.media-imdb.com/images/social/twitter.html?10#imdb"></iframe>
|
950
|
-
</div>
|
951
|
-
|
952
|
-
|
953
|
-
|
954
|
-
<div class="aux-content-widget-2" >
|
955
|
-
|
956
|
-
<div id="ratingWidget">
|
957
|
-
<h3>Share this Rating</h3>
|
958
|
-
<p>
|
959
|
-
Title: <strong>The Flying Circus</strong>
|
960
|
-
(1912)
|
961
|
-
</p>
|
962
|
-
|
963
|
-
<span class="imdbRatingPlugin" data-user="" data-title="tt0002186" data-style="t1">
|
964
|
-
<a href="http://www.imdb.com/title/tt0002186/?ref_=plg_rt_1">
|
965
|
-
<img src="http://g-ecx.images-amazon.com/images/G/01/imdb/plugins/rating/images/imdb_46x22.png" alt="The Flying Circus (1912) on IMDb" />
|
966
|
-
</a></span><script>
|
967
|
-
(function(d,s,id){var js,stags=d.getElementsByTagName(s)[0];
|
968
|
-
if(d.getElementById(id)){return;}js=d.createElement(s);js.id=id;
|
969
|
-
js.src="http://g-ec2.images-amazon.com/images/G/01/imdb/plugins/rating/js/rating.min.js";
|
970
|
-
stags.parentNode.insertBefore(js,stags);})(document,'script','imdb-rating-api');
|
971
|
-
</script>
|
972
|
-
|
973
|
-
<p>Want to share IMDb's rating on your own site? Use the HTML below.</p>
|
974
|
-
<div id="ratingPluginHTML" class="hidden">
|
975
|
-
<div class="message_box small">
|
976
|
-
<div class="error">
|
977
|
-
<p>
|
978
|
-
You must be a registered user to use the IMDb rating plugin.
|
979
|
-
<a href="/register/login" class="cboxElement" rel="login">Login</a>
|
980
|
-
</p>
|
981
|
-
</div>
|
982
|
-
</div>
|
983
|
-
</div>
|
984
|
-
<div id="ratingWidgetLinks">
|
985
|
-
<span class="titlePageSprite arrows show"></span>
|
986
|
-
<a id="toggleRatingPluginHTML" href="/plugins?titleId=tt0002186&ref_=tt_plg_rt">Show HTML</a>
|
987
|
-
<a href="/plugins?titleId=tt0002186&ref_=tt_plg_rt">View more styles</a>
|
988
|
-
</div>
|
989
|
-
</div>
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
</div>
|
994
|
-
|
995
|
-
|
996
|
-
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFaea7f5161b58ce93ee6aef91d67dc694/css2/app/games/promote_widget.css" >
|
997
|
-
<div class="aux-content-widget-2 games_guess_promote_widget">
|
998
|
-
<h3>Take The Quiz!</h3>
|
999
|
-
<a class="icon" href="/rg/quiz/title/games/guess/tt0002186"></a><span>Test your knowledge of <a href="/rg/quiz/title/games/guess/tt0002186">"The Flying Circus"</a>.</span>
|
1000
|
-
</div>
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
<div class="rhs-sl" id="rhs-sl">
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
<!-- sid: test01-channel : RHS_SL -->
|
1013
|
-
|
1014
|
-
<script type="text/javascript">
|
1015
|
-
if (typeof afc_data == "undefined") {
|
1016
|
-
afc_data = new Object();
|
1017
|
-
}
|
1018
|
-
|
1019
|
-
afc_data["RHS_SL"] = { channel: "test01-channel",
|
1020
|
-
client: "ca-amazon-imdb_js",
|
1021
|
-
title: "Sponsored Links",
|
1022
|
-
help: "What's This?",
|
1023
|
-
hints: "circus,circus performer"
|
1024
|
-
};
|
1025
|
-
</script>
|
1026
|
-
|
1027
|
-
<div id="sponsored_links_afc_div_RHS_SL" name="sponsored_links_afc_div_RHS_SL"></div>
|
1028
|
-
|
1029
|
-
<iframe id="sponsored_links_afc_iframe_RHS_SL" width="0" height="0" scrolling="no" frameborder="0"
|
1030
|
-
allowtransparency="true" marginheight="0" marginwidth="0"
|
1031
|
-
name="sponsored_links_afc_iframe"
|
1032
|
-
src="/images/a/ifb/google_afc_rhs.html#key:RHS_SL">
|
1033
|
-
</iframe>
|
1034
|
-
|
1035
|
-
|
1036
|
-
</div>
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
<div class="btf-rhs2" id="btf-rhs2">
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
<!-- begin BTF_RHS2 -->
|
1047
|
-
<div id="btf_rhs2_wrapper" class="dfp_slot">
|
1048
|
-
<script type="text/javascript">
|
1049
|
-
ad_utils.register_ad('btf_rhs2');
|
1050
|
-
</script>
|
1051
|
-
<iframe data-bid-url="" data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="btf_rhs2" name="btf_rhs2" class="yesScript" width="300" height="250" data-original-width="300" data-original-height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
1052
|
-
|
1053
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=2;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=2;sz=300x250,16x1;p=br2;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
|
1054
|
-
|
1055
|
-
</div>
|
1056
|
-
<div id="btf_rhs2_reflow_helper"></div>
|
1057
|
-
<script>ad_utils.render_ad_fast('btf_rhs2'); ad_utils.fallback.start_kill_timer('btf_rhs2'); </script>
|
1058
|
-
<!-- End BTF_RHS2 -->
|
1059
|
-
|
1060
|
-
|
1061
|
-
</div>
|
1062
|
-
|
1063
|
-
|
610
|
+
<div class="aux-content-widget-2">
|
611
|
+
<div class="social">
|
612
|
+
<script type="text/javascript">generic.monitoring.start_timing("facebook_like_iframe");</script>
|
613
|
+
<div class="social_networking_like">
|
614
|
+
<iframe
|
615
|
+
id="iframe_like"
|
616
|
+
name="fbLikeIFrame_0"
|
617
|
+
class="social-iframe"
|
618
|
+
scrolling="no"
|
619
|
+
frameborder="0"
|
620
|
+
allowTransparency="allowTransparency"
|
621
|
+
ref="http://www.imdb.com/title/tt0002186/"
|
622
|
+
width=280
|
623
|
+
height=65></iframe>
|
624
|
+
</div>
|
1064
625
|
</div>
|
1065
|
-
|
1066
|
-
|
626
|
+
</div>
|
627
|
+
|
628
|
+
<script>
|
629
|
+
if ('csm' in window) {
|
630
|
+
csm.measure('csm_TitleQuickLinksWidgetRHS_started');
|
631
|
+
}
|
632
|
+
</script>
|
633
|
+
<div class="aux-content-widget-3 links" div="quicklinks">
|
634
|
+
<h4 class="inline">Quick Links:</h4>
|
635
|
+
<form style="display:inline;">
|
636
|
+
<select id="quicklinks_select" name="quicklinks_select" data-ref="tt_ql">
|
637
|
+
<option value="/title/tt0002186/" data-ql="">Overview</option>
|
638
|
+
<option value="/title/tt0002186/fullcredits" data-ql="">Full Cast and Crew</option>
|
639
|
+
<option disabled>- - - - - - - - - - - - - - - - - - - - -</option>
|
640
|
+
<option value="/title/tt0002186/keywords" data-ql="">Plot Keywords</option>
|
641
|
+
<option disabled>- - - - - - - - - - - - - - - - - - - - -</option>
|
642
|
+
<option value="/title/tt0002186/trivia?tab=mc" data-ql="">Connections</option>
|
643
|
+
<option disabled>- - - - - - - - - - - - - - - - - - - - -</option>
|
644
|
+
<option value="/title/tt0002186/releaseinfo" data-ql="">Release Dates</option>
|
645
|
+
<option value="/title/tt0002186/companycredits" data-ql="">Company Credits</option>
|
646
|
+
<option value="/title/tt0002186/locations" data-ql="">Filming Locations</option>
|
647
|
+
<option value="/title/tt0002186/technical" data-ql="">Technical Specs</option>
|
648
|
+
<option disabled>- - - - - - - - - - - - - - - - - - - - -</option>
|
649
|
+
<option value="/title/tt0002186/reviews" data-ql="">User Reviews</option>
|
650
|
+
<option value="/title/tt0002186/ratings" data-ql="">User Ratings</option>
|
651
|
+
<option value="/title/tt0002186/board/" data-ql="">Message Board</option>
|
652
|
+
</select>
|
653
|
+
</form>
|
654
|
+
</div>
|
655
|
+
<script>
|
656
|
+
if ('csm' in window) {
|
657
|
+
csm.measure('csm_TitleQuickLinksWidgetRHS_finished');
|
658
|
+
}
|
659
|
+
</script>
|
660
|
+
|
1067
661
|
|
1068
662
|
|
663
|
+
<!-- no content received for slot: middle_rhs -->
|
1069
664
|
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
<span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-cast/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
|
1081
|
-
|
1082
|
-
|
1083
|
-
<h2>Cast</h2>
|
1084
|
-
|
1085
|
-
<table class="cast_list">
|
1086
|
-
|
1087
|
-
<tr><td class="castlist_label" colspan="4">Credited cast:</td></tr>
|
1088
|
-
|
1089
|
-
<tr class="odd">
|
1090
|
-
<td class="primary_photo">
|
1091
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" >
|
1092
|
-
|
1093
|
-
<img
|
1094
|
-
height="44"
|
1095
|
-
width="32"
|
1096
|
-
alt="Rasmus Ottesen" title="Rasmus Ottesen"
|
1097
|
-
|
1098
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1099
|
-
</a>
|
1100
|
-
</td>
|
1101
|
-
<td class="name">
|
1102
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0653174%2F';" href="/name/nm0653174/" >Rasmus Ottesen</a>
|
1103
|
-
</td>
|
1104
|
-
<td class="ellipsis">
|
1105
|
-
...
|
1106
|
-
</td>
|
1107
|
-
<td class="character">
|
1108
|
-
|
1109
|
-
<div>
|
1110
|
-
|
1111
|
-
Borgmester Strøm
|
1112
|
-
|
1113
|
-
|
1114
|
-
</div>
|
1115
|
-
|
1116
|
-
</td>
|
1117
|
-
</tr>
|
1118
|
-
|
1119
|
-
|
1120
|
-
<tr class="even">
|
1121
|
-
<td class="primary_photo">
|
1122
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" >
|
1123
|
-
|
1124
|
-
<img
|
1125
|
-
height="44"
|
1126
|
-
width="32"
|
1127
|
-
alt="Emilie Otterdahl" title="Emilie Otterdahl"
|
1128
|
-
|
1129
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1130
|
-
</a>
|
1131
|
-
</td>
|
1132
|
-
<td class="name">
|
1133
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm0653149%2F';" href="/name/nm0653149/" >Emilie Otterdahl</a>
|
1134
|
-
</td>
|
1135
|
-
<td class="ellipsis">
|
1136
|
-
...
|
1137
|
-
</td>
|
1138
|
-
<td class="character">
|
1139
|
-
|
1140
|
-
<div>
|
1141
|
-
|
1142
|
-
Erna, hans Datter
|
1143
|
-
|
1144
|
-
|
1145
|
-
</div>
|
1146
|
-
|
1147
|
-
</td>
|
1148
|
-
</tr>
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
<tr><td class="castlist_label" colspan="4">Rest of cast listed alphabetically:</td></tr>
|
1153
|
-
|
1154
|
-
<tr class="odd">
|
1155
|
-
<td class="primary_photo">
|
1156
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" >
|
1157
|
-
|
1158
|
-
<img
|
1159
|
-
height="44"
|
1160
|
-
width="32"
|
1161
|
-
alt="Lili Beck" title="Lili Beck"
|
1162
|
-
|
1163
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1164
|
-
</a>
|
1165
|
-
</td>
|
1166
|
-
<td class="name">
|
1167
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-1/images/b.gif?link=%2Fname%2Fnm0064949%2F';" href="/name/nm0064949/" >Lili Beck</a>
|
1168
|
-
</td>
|
1169
|
-
<td class="ellipsis">
|
1170
|
-
...
|
1171
|
-
</td>
|
1172
|
-
<td class="character">
|
1173
|
-
|
1174
|
-
<div>
|
1175
|
-
|
1176
|
-
Ula Kiri-Maja, Slangetæmmerske
|
1177
|
-
|
1178
|
-
|
1179
|
-
(as Lilli Beck)
|
1180
|
-
</div>
|
1181
|
-
|
1182
|
-
</td>
|
1183
|
-
</tr>
|
1184
|
-
|
1185
|
-
|
1186
|
-
<tr class="even">
|
1187
|
-
<td class="primary_photo">
|
1188
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm1932889%2F';" href="/name/nm1932889/" >
|
1189
|
-
|
1190
|
-
<img
|
1191
|
-
height="44"
|
1192
|
-
width="32"
|
1193
|
-
alt="Kirstine Friis-Hjort" title="Kirstine Friis-Hjort"
|
1194
|
-
|
1195
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1196
|
-
</a>
|
1197
|
-
</td>
|
1198
|
-
<td class="name">
|
1199
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-2/images/b.gif?link=%2Fname%2Fnm1932889%2F';" href="/name/nm1932889/" >Kirstine Friis-Hjort</a>
|
1200
|
-
</td>
|
1201
|
-
<td class="ellipsis">
|
1202
|
-
</td>
|
1203
|
-
<td class="character">
|
1204
|
-
|
1205
|
-
|
1206
|
-
</td>
|
1207
|
-
</tr>
|
1208
|
-
|
1209
|
-
|
1210
|
-
<tr class="odd">
|
1211
|
-
<td class="primary_photo">
|
1212
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-3/images/b.gif?link=%2Fname%2Fnm1925034%2F';" href="/name/nm1925034/" >
|
1213
|
-
|
1214
|
-
<img
|
1215
|
-
height="44"
|
1216
|
-
width="32"
|
1217
|
-
alt="Kirstine Friis-Hjorth" title="Kirstine Friis-Hjorth"
|
1218
|
-
|
1219
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1220
|
-
</a>
|
1221
|
-
</td>
|
1222
|
-
<td class="name">
|
1223
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-3/images/b.gif?link=%2Fname%2Fnm1925034%2F';" href="/name/nm1925034/" >Kirstine Friis-Hjorth</a>
|
1224
|
-
</td>
|
1225
|
-
<td class="ellipsis">
|
1226
|
-
...
|
1227
|
-
</td>
|
1228
|
-
<td class="character">
|
1229
|
-
|
1230
|
-
<div>
|
1231
|
-
|
1232
|
-
Cirkustjener
|
1233
|
-
|
1234
|
-
|
1235
|
-
</div>
|
1236
|
-
|
1237
|
-
</td>
|
1238
|
-
</tr>
|
1239
|
-
|
1240
|
-
|
1241
|
-
<tr class="even">
|
1242
|
-
<td class="primary_photo">
|
1243
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-4/images/b.gif?link=%2Fname%2Fnm0421656%2F';" href="/name/nm0421656/" >
|
1244
|
-
|
1245
|
-
<img
|
1246
|
-
height="44"
|
1247
|
-
width="32"
|
1248
|
-
alt="Richard Jensen" title="Richard Jensen"
|
1249
|
-
|
1250
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1251
|
-
</a>
|
1252
|
-
</td>
|
1253
|
-
<td class="name">
|
1254
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-4/images/b.gif?link=%2Fname%2Fnm0421656%2F';" href="/name/nm0421656/" >Richard Jensen</a>
|
1255
|
-
</td>
|
1256
|
-
<td class="ellipsis">
|
1257
|
-
...
|
1258
|
-
</td>
|
1259
|
-
<td class="character">
|
1260
|
-
|
1261
|
-
<div>
|
1262
|
-
|
1263
|
-
Laurento, Linedanser
|
1264
|
-
|
1265
|
-
|
1266
|
-
</div>
|
1267
|
-
|
1268
|
-
</td>
|
1269
|
-
</tr>
|
1270
|
-
|
1271
|
-
|
1272
|
-
<tr class="odd">
|
1273
|
-
<td class="primary_photo">
|
1274
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-5/images/b.gif?link=%2Fname%2Fnm1923782%2F';" href="/name/nm1923782/" >
|
1275
|
-
|
1276
|
-
<img
|
1277
|
-
height="44"
|
1278
|
-
width="32"
|
1279
|
-
alt="Stella Lind" title="Stella Lind"
|
1280
|
-
|
1281
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1282
|
-
</a>
|
1283
|
-
</td>
|
1284
|
-
<td class="name">
|
1285
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-5/images/b.gif?link=%2Fname%2Fnm1923782%2F';" href="/name/nm1923782/" >Stella Lind</a>
|
1286
|
-
</td>
|
1287
|
-
<td class="ellipsis">
|
1288
|
-
...
|
1289
|
-
</td>
|
1290
|
-
<td class="character">
|
1291
|
-
|
1292
|
-
<div>
|
1293
|
-
|
1294
|
-
Strøms stuepige
|
1295
|
-
|
1296
|
-
|
1297
|
-
</div>
|
1298
|
-
|
1299
|
-
</td>
|
1300
|
-
</tr>
|
1301
|
-
|
1302
|
-
|
1303
|
-
<tr class="even">
|
1304
|
-
<td class="primary_photo">
|
1305
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-6/images/b.gif?link=%2Fname%2Fnm0517327%2F';" href="/name/nm0517327/" >
|
1306
|
-
|
1307
|
-
<img
|
1308
|
-
height="44"
|
1309
|
-
width="32"
|
1310
|
-
alt="Charles Løwaas" title="Charles Løwaas"
|
1311
|
-
|
1312
|
-
src="http://i.media-imdb.com/images/SF984f0c61cc142e750d1af8e5fb4fc0c7/nopicture/small/name.png" class="" />
|
1313
|
-
</a>
|
1314
|
-
</td>
|
1315
|
-
<td class="name">
|
1316
|
-
<a onclick="(new Image()).src='/rg/tt-cast/cast-6/images/b.gif?link=%2Fname%2Fnm0517327%2F';" href="/name/nm0517327/" >Charles Løwaas</a>
|
1317
|
-
</td>
|
1318
|
-
<td class="ellipsis">
|
1319
|
-
...
|
1320
|
-
</td>
|
1321
|
-
<td class="character">
|
1322
|
-
|
1323
|
-
<div>
|
1324
|
-
|
1325
|
-
Cirkusgæst
|
1326
|
-
|
1327
|
-
|
1328
|
-
</div>
|
1329
|
-
|
1330
|
-
</td>
|
1331
|
-
</tr>
|
1332
|
-
|
1333
|
-
|
1334
|
-
</table>
|
1335
|
-
|
1336
|
-
<div class="see-more">
|
1337
|
-
<a onclick="(new Image()).src='/rg/tt-cast/full/images/b.gif?link=fullcredits%23cast';" href="fullcredits#cast" >Full cast and crew</a> »
|
1338
|
-
</div>
|
1339
|
-
<div id="charlink_move_from" class="hidden">
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
<div class="form-box">
|
1344
|
-
<form action="/character/create" method="post" onsubmit="$('#nblogin').click(); return false;">
|
1345
|
-
<input type="hidden" name="title" value="tt0002186">
|
1346
|
-
<div class="form-txt">Create a character page for:</div>
|
1347
|
-
<select name="name"
|
1348
|
-
onchange="if (this.options[this.selectedIndex].value == '...') document.location='fullcredits#cast'">
|
1349
|
-
|
1350
|
-
<option>Borgmester Strøm</option>
|
1351
|
-
<option>Erna, hans Datter</option>
|
1352
|
-
<option>Ula Kiri-Maja, Slangetæmmerske</option>
|
1353
|
-
<option>Cirkustjener</option>
|
1354
|
-
<option>Laurento, Linedanser</option>
|
1355
|
-
<option>Strøms stuepige</option>
|
1356
|
-
<option>Cirkusgæst</option>
|
1357
|
-
|
1358
|
-
|
1359
|
-
<option disabled="disabled">-----------</option>
|
1360
|
-
<option value="...">more...</option>
|
1361
|
-
</select> <button class="btn small" >Create »</button> <a target="_blank" class="btn small"
|
1362
|
-
href="/help/show_leaf?createchar">?</a>
|
1363
|
-
</form>
|
1364
|
-
</div>
|
1365
|
-
|
1366
|
-
</div>
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
</div>
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
<div class="article" >
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
<span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-storyline/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
|
1385
|
-
|
1386
|
-
|
1387
|
-
<h2>Storyline</h2>
|
1388
|
-
|
1389
|
-
<span class="see-more inline">
|
1390
|
-
<span class=""><a onclick="(new Image()).src='/rg/tt-storyline/addplot/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Add Full Plot</a></span>
|
1391
|
-
<span>|</span>
|
1392
|
-
<a onclick="(new Image()).src='/rg/tt-storyline/addsynopsis/images/b.gif?link=synopsis';" href="synopsis" >Add Synopsis</a>
|
1393
|
-
</span>
|
1394
|
-
|
1395
|
-
<hr />
|
1396
|
-
<div class="see-more inline canwrap">
|
1397
|
-
<h4 class="inline">Plot Keywords:</h4>
|
1398
|
-
<a onclick="(new Image()).src='/rg/tt-storyline/plotkeyword-1/images/b.gif?link=%2Fkeyword%2Fcircus';" href="/keyword/circus" >Circus</a> <span>|</span> <a onclick="(new Image()).src='/rg/tt-storyline/plotkeyword-2/images/b.gif?link=%2Fkeyword%2Fcircus-performer';" href="/keyword/circus-performer" >Circus Performer</a>
|
1399
|
-
</div>
|
1400
|
-
|
1401
|
-
|
1402
|
-
<hr />
|
1403
|
-
<div class="see-more inline canwrap">
|
1404
|
-
<h4 class="inline">Genres:</h4>
|
1405
|
-
<a onclick="(new Image()).src='/rg/tt-storyline/genre-1/images/b.gif?link=%2Fgenre%2FDrama';" href="/genre/Drama" itemprop="genre"
|
1406
|
-
>Drama</a>
|
1407
|
-
</div>
|
1408
|
-
|
1409
|
-
<hr/>
|
1410
|
-
|
1411
|
-
|
1412
|
-
<div class="txt-block">
|
1413
|
-
<h4 class="inline">Parents Guide:</h4>
|
1414
|
-
<span class="see-more inline">
|
1415
|
-
<a onclick="(new Image()).src='/rg/tt-storyline/advisory/images/b.gif?link=parentalguide';" href="parentalguide" >Add content advisory for parents</a> »
|
1416
|
-
</a></span>
|
1417
|
-
</div>
|
1418
|
-
|
1419
|
-
|
1420
|
-
</div>
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
<div class="article" >
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
<span class="rightcornerlink"><a onclick="(new Image()).src='/rg/tt-details/edit/images/b.gif?link=%2Fregister%2Flogin%3Fwhy%3Dedit';" href="/register/login?why=edit" rel="login" >Edit</a></span>
|
1431
|
-
|
1432
|
-
|
1433
|
-
<h2>Details</h2>
|
1434
|
-
|
1435
|
-
|
1436
|
-
<div class="txt-block">
|
1437
|
-
<h4 class="inline">Country:</h4>
|
1438
|
-
|
1439
|
-
<a onclick="(new Image()).src='/rg/tt-details/country/images/b.gif?link=%2Fcountry%2Fdk';" href="/country/dk" >Denmark</a>
|
1440
|
-
</div>
|
1441
|
-
|
1442
|
-
|
1443
|
-
<div class="txt-block">
|
1444
|
-
<h4 class="inline">Release Date:</h4>
|
1445
|
-
<time itemprop="datePublished" datetime="1913-06-28">28 June 1913</time>
|
1446
|
-
(USA)
|
1447
|
-
<span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/releasedate/images/b.gif?link=releaseinfo';" href="releaseinfo" >See more</a></span> »
|
1448
|
-
</div>
|
1449
|
-
|
1450
|
-
<div class="txt-block">
|
1451
|
-
<h4 class="inline">Also Known As:</h4> Der fliegende Cirkus
|
1452
|
-
<span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/aka/images/b.gif?link=releaseinfo%23akas';" href="releaseinfo#akas" >See more</a></span> »
|
1453
|
-
</div>
|
1454
|
-
|
1455
|
-
<div class="txt-block">
|
1456
|
-
<h4 class="inline">Filming Locations:</h4>
|
1457
|
-
<a onclick="(new Image()).src='/rg/tt-details/location/images/b.gif?link=%2Fsearch%2Ftitle%3Flocations%3DBr%25F8nsh%25F8j%2C%2520Copenhagen%2C%2520Denmark';" href="/search/title?locations=Br%F8nsh%F8j,%20Copenhagen,%20Denmark" >Brønshøj, Copenhagen, Denmark</a>
|
1458
|
-
</div>
|
1459
|
-
|
1460
|
-
|
1461
|
-
|
1462
|
-
<hr />
|
1463
|
-
<h3>Company Credits</h3>
|
1464
|
-
<div class="txt-block">
|
1465
|
-
<h4 class="inline">Production Co:</h4>
|
1466
|
-
|
1467
|
-
|
1468
|
-
<a onclick="(new Image()).src='/rg/tt-details/company-1/images/b.gif?link=%2Fcompany%2Fco0154222%2F';" href="/company/co0154222/" >Det Skandinavisk-Russiske Handelshus</a>
|
1469
|
-
<span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-details/company-more/images/b.gif?link=companycredits';" href="companycredits" >See more</a></span> »
|
1470
|
-
</div>
|
1471
|
-
|
1472
|
-
<div class="txt-block">
|
1473
|
-
Show detailed
|
1474
|
-
<a onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=%2Fr%2Ftt_details_contact%2Ftitle%2Ftt0002186%2Fcompanycredits';" href="/r/tt_details_contact/title/tt0002186/companycredits" >company contact information</a> on
|
1475
|
-
<a onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=%2Fr%2Ftt_details_contact%2F';" href="/r/tt_details_contact/" >IMDbPro</a> »
|
1476
|
-
</div>
|
1477
|
-
|
1478
|
-
<hr />
|
1479
|
-
<h3>Technical Specs</h3>
|
1480
|
-
<div class="txt-block">
|
1481
|
-
<h4 class="inline">Runtime:</h4>
|
1482
|
-
|
1483
|
-
<time itemprop="duration" datetime="PT46M">46 min</time>
|
1484
|
-
|
1485
|
-
</div>
|
1486
|
-
<div class="txt-block">
|
1487
|
-
<h4 class="inline">Sound Mix:</h4> <a onclick="(new Image()).src='/rg/tt-details/soundmix-1/images/b.gif?link=%2Fsearch%2Ftitle%3Fsound_mixes%3Dsilent';" href="/search/title?sound_mixes=silent" >Silent</a>
|
1488
|
-
</div>
|
1489
|
-
<div class="txt-block">
|
1490
|
-
<h4 class="inline">Color:</h4>
|
1491
|
-
<a onclick="(new Image()).src='/rg/tt-details/color/images/b.gif?link=%2Fsearch%2Ftitle%3Fcolors%3Dblack_and_white';" href="/search/title?colors=black_and_white" >Black and White</a>
|
1492
|
-
</div>
|
1493
|
-
<div class="txt-block">
|
1494
|
-
<h4 class="inline">Aspect Ratio:</h4> 1.33 : 1
|
1495
|
-
</div>
|
1496
|
-
See <a onclick="(new Image()).src='/rg/tt-details/technicalspecs/images/b.gif?link=technical';" href="technical" >full technical specs</a> »
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
</div>
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
<div class="article" >
|
1509
|
-
|
665
|
+
|
666
|
+
<script>
|
667
|
+
if ('csm' in window) {
|
668
|
+
csm.measure('csm_RelatedListsWidget_started');
|
669
|
+
}
|
670
|
+
</script>
|
1510
671
|
|
672
|
+
<div class="aux-content-widget-2">
|
673
|
+
<div id="relatedListsWidget">
|
674
|
+
<div class="rightcornerlink">
|
675
|
+
<a href="/list/create?ref_=tt_rls" >Create a list</a> »
|
676
|
+
</div>
|
677
|
+
<h3>User Lists</h3>
|
678
|
+
<p>Related lists from IMDb users</p>
|
679
|
+
|
680
|
+
<div class="list-preview even">
|
681
|
+
<div class="list-preview-item-narrow">
|
682
|
+
<a href="/list/1dVkOjknDTA/?ref_=tt_rls_0" >
|
683
|
+
<img itempprop="image" height="86" width="86" alt="list image" title="list image"
|
684
|
+
src="/images/nopicture/medium/film.png" class="rec_poster_img" />
|
685
|
+
</a> </div>
|
686
|
+
<div class="list_name">
|
687
|
+
<b><a href="/list/1dVkOjknDTA/?ref_=tt_rls_0" >My favorite 100 movies from the tens</a></b>
|
688
|
+
</div>
|
689
|
+
<div class="list_meta">
|
690
|
+
a list of 100 titles
|
691
|
+
created 11 Aug 2011
|
692
|
+
</div>
|
693
|
+
<div class="clear"> </div>
|
694
|
+
</div>
|
695
|
+
<div class="list-preview odd">
|
696
|
+
<div class="list-preview-item-narrow">
|
697
|
+
<a href="/list/SlIUqt40foI/?ref_=tt_rls_1" >
|
698
|
+
<img itempprop="image" height="86" width="86" alt="list image" title="list image"
|
699
|
+
src="/images/nopicture/medium/film.png" class="rec_poster_img" />
|
700
|
+
</a> </div>
|
701
|
+
<div class="list_name">
|
702
|
+
<b><a href="/list/SlIUqt40foI/?ref_=tt_rls_1" >MyCollection - Timeline</a></b>
|
703
|
+
</div>
|
704
|
+
<div class="list_meta">
|
705
|
+
a list of 612 titles
|
706
|
+
created 10 Sep 2011
|
707
|
+
</div>
|
708
|
+
<div class="clear"> </div>
|
709
|
+
</div>
|
710
|
+
<div class="see-more">
|
711
|
+
<a href="/lists/tt0002186?ref_=tt_rls_sm" >See all related lists</a> »
|
712
|
+
</div>
|
713
|
+
</div>
|
714
|
+
</div>
|
715
|
+
|
716
|
+
<script>
|
717
|
+
if ('csm' in window) {
|
718
|
+
csm.measure('csm_RelatedListsWidget_finished');
|
719
|
+
}
|
720
|
+
</script>
|
721
|
+
|
1511
722
|
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
<h2>Did You Know?</h2>
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1522
|
-
<div class="txt-block">
|
1523
|
-
<h4>Connections</h4>
|
1524
|
-
Featured in
|
1525
|
-
|
1526
|
-
<a href="/title/tt1622075/" >"Cinema Europe: The Other Hollywood: Art's Promised Land (#1.2)"</a> (1995)
|
1527
|
-
<span class="see-more inline"><a onclick="(new Image()).src='/rg/tt-didyouknow/connections-more/images/b.gif?link=trivia%3Ftab%3Dmc';" href="trivia?tab=mc" class="nobr" >See more</a></span> »
|
723
|
+
<!-- no content received for slot: btf_rhs1 -->
|
1528
724
|
|
725
|
+
<div class="aux-content-widget-2">
|
726
|
+
<h3>Connect with IMDb</h3>
|
727
|
+
<div id="facebookWrapper">
|
728
|
+
<iframe src="http://www.facebook.com/plugins/likebox.php?href=facebook.com%2Fimdb&width=300&connections=5&stream=false&header=false&height=190"
|
729
|
+
scrolling="no"
|
730
|
+
frameborder="0"
|
731
|
+
id="facebookIframe"
|
732
|
+
allowTransparency="true"></iframe>
|
733
|
+
</div>
|
734
|
+
<hr>
|
735
|
+
<iframe allowtransparency="true"
|
736
|
+
frameborder="0"
|
737
|
+
role="presentation"
|
738
|
+
scrolling="no"
|
739
|
+
id="twitterIframe"
|
740
|
+
src="http://i.media-imdb.com/images/social/twitter.html?10#imdb"></iframe>
|
1529
741
|
</div>
|
1530
742
|
|
743
|
+
|
744
|
+
|
745
|
+
<div class="aux-content-widget-2">
|
746
|
+
<div id="ratingWidget">
|
747
|
+
<h3>Share this Rating</h3>
|
748
|
+
<p>
|
749
|
+
Title:
|
750
|
+
<strong>The Flying Circus</strong>
|
751
|
+
(1912)
|
752
|
+
</p>
|
753
|
+
<span class="imdbRatingPlugin imdbRatingStyle1" data-user="" data-title="tt0002186" data-style="t1">
|
754
|
+
<a href="/title/tt0002186/?ref_=tt_plg_rt" > <img alt="The Flying Circus (1912) on IMDb"
|
755
|
+
src="http://ia.media-imdb.com/images/G/01/imdb/images/plugins/imdb_46x22-2264473254._V377175616_.png">
|
756
|
+
</a> <span class="rating">6.6<span class="ofTen">/10</span></span>
|
757
|
+
<img src="http://ia.media-imdb.com/images/G/01/imdb/images/plugins/imdb_star_22x21-2889147855._V377175623_.png" class="star">
|
758
|
+
</span>
|
759
|
+
<p>Want to share IMDb's rating on your own site? Use the HTML below.</p>
|
760
|
+
<div id="ratingPluginHTML" class="hidden">
|
761
|
+
<div class="message_box small">
|
762
|
+
<div class="error">
|
763
|
+
<p>
|
764
|
+
You must be a registered user to use the IMDb rating plugin.
|
765
|
+
</p>
|
766
|
+
<a href="/register/login?ref_=tt_plg_rt" class="cboxElement" rel='login'>Login</a>
|
767
|
+
</div>
|
768
|
+
</div>
|
769
|
+
</div>
|
770
|
+
<div id="ratingWidgetLinks">
|
771
|
+
<span class="titlePageSprite arrows show"></span>
|
772
|
+
<a href="/plugins?titleId=tt0002186&ref_=tt_plg_rt" id="toggleRatingPluginHTML" itemprop='url' >Show HTML</a>
|
773
|
+
<a href="/plugins?titleId=tt0002186&ref_=tt_plg_rt" itemprop='url'>View more styles</a>
|
774
|
+
</div>
|
775
|
+
</div>
|
776
|
+
</div>
|
777
|
+
|
1531
778
|
|
779
|
+
<!-- no content received for slot: bottom_rhs -->
|
1532
780
|
|
781
|
+
|
1533
782
|
|
1534
|
-
|
1535
|
-
|
1536
|
-
|
1537
|
-
|
783
|
+
<!-- sid: test01-channel : RHS_SL -->
|
784
|
+
|
785
|
+
<script>
|
786
|
+
if (typeof afc_data == "undefined") {
|
787
|
+
afc_data = new Object();
|
788
|
+
}
|
789
|
+
|
790
|
+
afc_data["RHS_SL"] = {
|
791
|
+
channel: "test01-channel",
|
792
|
+
client: "ca-amazon-imdb_js",
|
793
|
+
title: "Sponsored Links",
|
794
|
+
help: "What's This?",
|
795
|
+
hints: "circus,circus-performer"
|
796
|
+
};
|
797
|
+
</script>
|
798
|
+
|
799
|
+
<div id="sponsored_links_afc_div_RHS_SL" name="sponsored_links_afc_div_RHS_SL"></div>
|
800
|
+
|
801
|
+
<iframe id="sponsored_links_afc_iframe_RHS_SL" width="0" height="0" scrolling="no" frameborder="0"
|
802
|
+
allowtransparency="true" marginheight="0" marginwidth="0" name="sponsored_links_afc_iframe"
|
803
|
+
src="/images/a/ifb/google_afc_rhs.html#key:RHS_SL">
|
804
|
+
</iframe>
|
1538
805
|
|
1539
|
-
<div class="article" >
|
1540
806
|
|
1541
|
-
|
1542
807
|
|
1543
|
-
|
808
|
+
<!-- begin BTF_RHS2 -->
|
809
|
+
<div id="btf_rhs2_wrapper" class="dfp_slot">
|
810
|
+
<script type="text/javascript">
|
811
|
+
ad_utils.register_ad('btf_rhs2');
|
812
|
+
</script>
|
813
|
+
<iframe data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=300x250,16x1;p=br2;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="btf_rhs2" name="btf_rhs2" class="yesScript" width="300" height="250" data-config-width="300" data-config-height="250" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
814
|
+
<noscript><a href="http//ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=5;sz=300x250,16x1;p=br2;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" target="_blank"><img src="http//ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=5;sz=300x250,16x1;p=br2;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" border="0" alt="advertisement" /></a></noscript>
|
1544
815
|
</div>
|
816
|
+
<div id="btf_rhs2_reflow_helper"></div>
|
817
|
+
<script>ad_utils.render_ad_fast('btf_rhs2'); ad_utils.fallback.start_kill_timer('btf_rhs2'); </script>
|
818
|
+
<!-- End BTF_RHS2 -->
|
1545
819
|
|
820
|
+
|
821
|
+
</div>
|
822
|
+
|
823
|
+
<div id="maindetails_center_bottom" class="maindetails_center">
|
824
|
+
<script>
|
825
|
+
if ('csm' in window) {
|
826
|
+
csm.measure('csm_TitleEpisodesWidget_started');
|
827
|
+
}
|
828
|
+
</script>
|
829
|
+
<script>
|
830
|
+
if ('csm' in window) {
|
831
|
+
csm.measure('csm_TitleEpisodesWidget_finished');
|
832
|
+
}
|
833
|
+
</script>
|
834
|
+
|
835
|
+
|
836
|
+
|
837
|
+
|
1546
838
|
|
839
|
+
<script>
|
840
|
+
if ('csm' in window) {
|
841
|
+
csm.measure('csm_TitleRecsWidget_started');
|
842
|
+
}
|
843
|
+
</script>
|
1547
844
|
|
1548
845
|
|
846
|
+
<script>
|
847
|
+
if ('csm' in window) {
|
848
|
+
csm.measure('csm_TitleRecsWidget_finished');
|
849
|
+
}
|
850
|
+
</script>
|
1549
851
|
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
852
|
+
<script>
|
853
|
+
if ('csm' in window) {
|
854
|
+
csm.measure('csm_TitleCastWidget_started');
|
855
|
+
}
|
856
|
+
</script>
|
857
|
+
<div class="article" id="titleCast">
|
858
|
+
<span class=rightcornerlink >
|
859
|
+
<a href="/register/login?why=edit&ref_=tt_cl" rel="login">Edit</a>
|
860
|
+
</span>
|
861
|
+
<h2>Cast</h2>
|
862
|
+
|
863
|
+
<table class="cast_list">
|
864
|
+
<tr><td colspan="4" class="castlist_label">Credited cast:</td></tr>
|
865
|
+
<tr class="odd">
|
866
|
+
<td class="primary_photo">
|
867
|
+
<a href="/name/nm0653174/?ref_=tt_cl_i1" ><img height="44" width="32" alt="Rasmus Ottesen" title="Rasmus Ottesen"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
868
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
869
|
+
<a href="/name/nm0653174/?ref_=tt_cl_t1" itemprop='name'> Rasmus Ottesen
|
870
|
+
</a> </td>
|
871
|
+
<td class="ellipsis">
|
872
|
+
...
|
873
|
+
</td>
|
874
|
+
<td class="character">
|
875
|
+
<div>
|
876
|
+
Borgmester Strøm
|
877
|
+
|
878
|
+
</div>
|
879
|
+
</td>
|
880
|
+
</tr>
|
881
|
+
<tr class="even">
|
882
|
+
<td class="primary_photo">
|
883
|
+
<a href="/name/nm0653149/?ref_=tt_cl_i2" ><img height="44" width="32" alt="Emilie Otterdahl" title="Emilie Otterdahl"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
884
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
885
|
+
<a href="/name/nm0653149/?ref_=tt_cl_t2" itemprop='name'> Emilie Otterdahl
|
886
|
+
</a> </td>
|
887
|
+
<td class="ellipsis">
|
888
|
+
...
|
889
|
+
</td>
|
890
|
+
<td class="character">
|
891
|
+
<div>
|
892
|
+
Erna, hans Datter
|
893
|
+
|
894
|
+
</div>
|
895
|
+
</td>
|
896
|
+
</tr>
|
897
|
+
<tr><td colspan="4" class="castlist_label">Rest of cast listed alphabetically:</td></tr>
|
898
|
+
<tr class="odd">
|
899
|
+
<td class="primary_photo">
|
900
|
+
<a href="/name/nm0064949/?ref_=tt_cl_i3" ><img height="44" width="32" alt="Lili Beck" title="Lili Beck"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
901
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
902
|
+
<a href="/name/nm0064949/?ref_=tt_cl_t3" itemprop='name'> Lili Beck
|
903
|
+
</a> </td>
|
904
|
+
<td class="ellipsis">
|
905
|
+
...
|
906
|
+
</td>
|
907
|
+
<td class="character">
|
908
|
+
<div>
|
909
|
+
Ula Kiri-Maja, Slangetæmmerske
|
910
|
+
(as Lilli Beck)
|
911
|
+
|
912
|
+
</div>
|
913
|
+
</td>
|
914
|
+
</tr>
|
915
|
+
<tr class="even">
|
916
|
+
<td class="primary_photo">
|
917
|
+
<a href="/name/nm1932889/?ref_=tt_cl_i4" ><img height="44" width="32" alt="Kirstine Friis-Hjort" title="Kirstine Friis-Hjort"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
918
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
919
|
+
<a href="/name/nm1932889/?ref_=tt_cl_t4" itemprop='name'> Kirstine Friis-Hjort
|
920
|
+
</a> </td>
|
921
|
+
<td class="ellipsis">
|
922
|
+
</td>
|
923
|
+
<td class="character">
|
924
|
+
<div>
|
925
|
+
|
926
|
+
</div>
|
927
|
+
</td>
|
928
|
+
</tr>
|
929
|
+
<tr class="odd">
|
930
|
+
<td class="primary_photo">
|
931
|
+
<a href="/name/nm1925034/?ref_=tt_cl_i5" ><img height="44" width="32" alt="Kirstine Friis-Hjorth" title="Kirstine Friis-Hjorth"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
932
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
933
|
+
<a href="/name/nm1925034/?ref_=tt_cl_t5" itemprop='name'> Kirstine Friis-Hjorth
|
934
|
+
</a> </td>
|
935
|
+
<td class="ellipsis">
|
936
|
+
...
|
937
|
+
</td>
|
938
|
+
<td class="character">
|
939
|
+
<div>
|
940
|
+
Cirkustjener
|
941
|
+
|
942
|
+
</div>
|
943
|
+
</td>
|
944
|
+
</tr>
|
945
|
+
<tr class="even">
|
946
|
+
<td class="primary_photo">
|
947
|
+
<a href="/name/nm0421656/?ref_=tt_cl_i6" ><img height="44" width="32" alt="Richard Jensen" title="Richard Jensen"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
948
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
949
|
+
<a href="/name/nm0421656/?ref_=tt_cl_t6" itemprop='name'> Richard Jensen
|
950
|
+
</a> </td>
|
951
|
+
<td class="ellipsis">
|
952
|
+
...
|
953
|
+
</td>
|
954
|
+
<td class="character">
|
955
|
+
<div>
|
956
|
+
Laurento, Linedanser
|
957
|
+
|
958
|
+
</div>
|
959
|
+
</td>
|
960
|
+
</tr>
|
961
|
+
<tr class="odd">
|
962
|
+
<td class="primary_photo">
|
963
|
+
<a href="/name/nm1923782/?ref_=tt_cl_i7" ><img height="44" width="32" alt="Stella Lind" title="Stella Lind"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
964
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
965
|
+
<a href="/name/nm1923782/?ref_=tt_cl_t7" itemprop='name'> Stella Lind
|
966
|
+
</a> </td>
|
967
|
+
<td class="ellipsis">
|
968
|
+
...
|
969
|
+
</td>
|
970
|
+
<td class="character">
|
971
|
+
<div>
|
972
|
+
Strøms stuepige
|
973
|
+
|
974
|
+
</div>
|
975
|
+
</td>
|
976
|
+
</tr>
|
977
|
+
<tr class="even">
|
978
|
+
<td class="primary_photo">
|
979
|
+
<a href="/name/nm0517327/?ref_=tt_cl_i8" ><img height="44" width="32" alt="Charles Løwaas" title="Charles Løwaas"src="http://ia.media-imdb.com/images/G/01/imdb/images/nopicture/32x44/name-2138558783._V397576332_.png" class="" itemprop="" /></a> </td>
|
980
|
+
<td class="name" itemprop="actor" itemscope itemtype="http://schema.org/Person">
|
981
|
+
<a href="/name/nm0517327/?ref_=tt_cl_t8" itemprop='name'> Charles Løwaas
|
982
|
+
</a> </td>
|
983
|
+
<td class="ellipsis">
|
984
|
+
...
|
985
|
+
</td>
|
986
|
+
<td class="character">
|
987
|
+
<div>
|
988
|
+
Cirkusgæst
|
989
|
+
|
990
|
+
</div>
|
991
|
+
</td>
|
992
|
+
</tr>
|
993
|
+
</table>
|
994
|
+
<div class="see-more">
|
995
|
+
<a href="fullcredits?ref_=tt_cl_sm#cast" >Full cast and crew</a> »
|
996
|
+
</div>
|
997
|
+
</div>
|
998
|
+
<script>
|
999
|
+
if ('csm' in window) {
|
1000
|
+
csm.measure('csm_TitleCastWidget_finished');
|
1001
|
+
}
|
1002
|
+
</script>
|
1003
|
+
|
1004
|
+
<script>
|
1005
|
+
if ('csm' in window) {
|
1006
|
+
csm.measure('csm_TitleStorylineWidget_started');
|
1007
|
+
}
|
1008
|
+
</script>
|
1009
|
+
<div class = "article" id="titleStoryLine">
|
1010
|
+
<span class=rightcornerlink >
|
1011
|
+
<a href="/register/login?why=edit&ref_=tt_stry" rel="login">Edit</a>
|
1012
|
+
</span>
|
1013
|
+
|
1014
|
+
<h2>Storyline</h2>
|
1015
|
+
|
1016
|
+
<span class="see-more inline">
|
1017
|
+
<span class="" >
|
1018
|
+
<a href="/register/login?why=edit&ref_=tt_stry_pl" rel="login">Add Full Plot</a>
|
1019
|
+
</span>
|
1020
|
+
<span>|</span>
|
1021
|
+
<a href="/title/tt0002186/synopsis?ref_=tt_stry_pl" >Add Synopsis</a>
|
1022
|
+
</span>
|
1023
|
+
<hr />
|
1024
|
+
<div class="see-more inline canwrap" itemprop="keywords">
|
1025
|
+
<h4 class="inline">Plot Keywords:</h4>
|
1026
|
+
<a href="/keyword/circus?ref_=tt_stry_kw" > Circus</a>
|
1027
|
+
<span>|</span>
|
1028
|
+
<a href="/keyword/circus-performer?ref_=tt_stry_kw" > Circus Performer</a>
|
1029
|
+
</div>
|
1030
|
+
<hr />
|
1031
|
+
<div class="see-more inline canwrap" itemprop="genre">
|
1032
|
+
<h4 class="inline">Genres:</h4>
|
1033
|
+
<a href="/genre/Drama?ref_=tt_stry_gnr" > Drama</a>
|
1034
|
+
</div>
|
1035
|
+
|
1036
|
+
<hr/>
|
1037
|
+
|
1038
|
+
<div class="txt-block" itemprop="audience" >
|
1039
|
+
<h4 class="inline">Parents Guide:</h4>
|
1040
|
+
<span class="see-more inline">
|
1041
|
+
<a href="/title/tt0002186/parentalguide?ref_=tt_stry_pg" > Add content advisory for parents</a> »
|
1042
|
+
</span>
|
1043
|
+
</div>
|
1044
|
+
</div>
|
1045
|
+
<script>
|
1046
|
+
if ('csm' in window) {
|
1047
|
+
csm.measure('csm_TitleStorylineWidget_finished');
|
1048
|
+
}
|
1049
|
+
</script>
|
1050
|
+
|
1051
|
+
<script>
|
1052
|
+
if ('csm' in window) {
|
1053
|
+
csm.measure('csm_TitleDetailsWidget_started');
|
1054
|
+
}
|
1055
|
+
</script>
|
1056
|
+
<div class = "article" id="titleDetails" itemscope itemtype="http://schema.org/Movie" >
|
1057
|
+
<span class=rightcornerlink >
|
1058
|
+
<a href="/register/login?why=edit&ref_=tt_dt_dt" rel="login">Edit</a>
|
1059
|
+
</span>
|
1060
|
+
<h2>Details</h2>
|
1061
|
+
|
1062
|
+
<div class="txt-block">
|
1063
|
+
<h4 class="inline">Country:</h4>
|
1064
|
+
<a href="/country/dk?ref_=tt_dt_dt" itemprop='url'>Denmark</a>
|
1065
|
+
</div>
|
1066
|
+
|
1067
|
+
|
1068
|
+
|
1069
|
+
<div class="txt-block">
|
1070
|
+
<h4 class="inline">Release Date:</h4> 28 June 1913 (USA)
|
1071
|
+
<span class="see-more inline">
|
1072
|
+
<a href="releaseinfo?ref_=tt_dt_dt" itemprop='url'>See more</a> »
|
1073
|
+
</span>
|
1555
1074
|
</div>
|
1075
|
+
|
1076
|
+
<div class="txt-block">
|
1077
|
+
<h4 class="inline">Also Known As:</h4> Der fliegende Cirkus
|
1078
|
+
<span class="see-more inline">
|
1079
|
+
<a href="releaseinfo?ref_=tt_dt_dt#akas" itemprop='url'>See more</a> »
|
1080
|
+
</span>
|
1081
|
+
</div>
|
1082
|
+
|
1083
|
+
<div class="txt-block">
|
1084
|
+
<h4 class="inline">Filming Locations:</h4>
|
1085
|
+
<a href="/search/title?locations=Brønshøj, Copenhagen, Denmark&ref_=tt_dt_dt" itemprop='url'>Brønshøj, Copenhagen, Denmark</a>
|
1086
|
+
</div>
|
1087
|
+
|
1088
|
+
<hr />
|
1089
|
+
<h3>Company Credits</h3>
|
1090
|
+
<div class="txt-block">
|
1091
|
+
<h4 class="inline">Production Co:</h4>
|
1092
|
+
<a href="/company/co0154222?ref_=tt_dt_co" itemprop='url'>Det Skandinavisk-Russiske Handelshus</a> <span class="see-more inline">
|
1093
|
+
<a href="companycredits?ref_=tt_dt_co" itemprop='url'>See more</a> »
|
1094
|
+
</span>
|
1095
|
+
</div>
|
1096
|
+
<div class="txt-block">
|
1097
|
+
Show detailed
|
1098
|
+
<a
|
1099
|
+
onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=/r/tt_details_contact/title/tt0002186/companycredits';"
|
1100
|
+
href="/r/tt_details_contact/title/tt0002186/companycredits"
|
1101
|
+
itemprop='url'>company contact information</a>
|
1102
|
+
on
|
1103
|
+
<a
|
1104
|
+
onclick="(new Image()).src='/rg/tt_details_contact/prosystem/images/b.gif?link=/r/tt_details_contact/#';"
|
1105
|
+
href="/r/tt_details_contact/#"
|
1106
|
+
itemprop='url'>IMDbPro</a> »
|
1107
|
+
</div>
|
1108
|
+
|
1556
1109
|
|
1110
|
+
<hr />
|
1111
|
+
<h3>Technical Specs</h3>
|
1112
|
+
|
1113
|
+
<div class="txt-block">
|
1114
|
+
<h4 class="inline">Runtime:</h4>
|
1115
|
+
<time itemprop="duration" datetime="PT46M">46 min</time>
|
1116
|
+
</div>
|
1117
|
+
|
1118
|
+
<div class="txt-block">
|
1119
|
+
<h4 class="inline">Sound Mix:</h4>
|
1120
|
+
<a href="/search/title?sound_mixes=silent&ref_=tt_dt_spec" itemprop='url'>Silent</a>
|
1121
|
+
</div>
|
1122
|
+
|
1123
|
+
<div class="txt-block">
|
1124
|
+
<h4 class="inline">Color:</h4>
|
1125
|
+
<a href="/search/title?colors=black_and_white&ref_=tt_dt_spec" itemprop='url'> Black and White</a>
|
1126
|
+
</div>
|
1127
|
+
|
1128
|
+
<div class="txt-block">
|
1129
|
+
<h4 class="inline">Aspect Ratio:</h4> 1.33 : 1
|
1130
|
+
</div>
|
1131
|
+
|
1132
|
+
See <a href="technical?ref_=tt_dt_spec" itemprop='url'>full technical specs</a> »
|
1133
|
+
</div>
|
1134
|
+
<script>
|
1135
|
+
if ('csm' in window) {
|
1136
|
+
csm.measure('csm_TitleDetailsWidget_finished');
|
1137
|
+
}
|
1138
|
+
</script>
|
1139
|
+
|
1140
|
+
<script>
|
1141
|
+
if ('csm' in window) {
|
1142
|
+
csm.measure('csm_TitleDidYouKnowWidget_started');
|
1143
|
+
}
|
1144
|
+
</script>
|
1145
|
+
<div id="titleDidYouKnow" class="article" itemscope>
|
1146
|
+
<span class=rightcornerlink >
|
1147
|
+
<a href="/register/login?why=edit&ref_=tt_trv_trv" rel="login">Edit</a>
|
1148
|
+
</span>
|
1149
|
+
<h2>Did You Know?</h2>
|
1150
|
+
<div id="connections" class="text-block" itemprop="mentions" itemscope itemtype="http://schema.org/Movie">
|
1151
|
+
<h4>Connections</h4>
|
1152
|
+
Featured in <span itemprop="name"><a href="/title/tt1622075/?ref_=tt_trv_cnn">Cinema Europe: The Other Hollywood: Art's Promised Land</a> (1995)
|
1153
|
+
|
1154
|
+
<br />clip shown</span>
|
1155
|
+
<a href="trivia?tab=mc&ref_=tt_trv_cnn" class="nobr" >See more</a> »
|
1156
|
+
</div>
|
1557
1157
|
</div>
|
1158
|
+
<script>
|
1159
|
+
if ('csm' in window) {
|
1160
|
+
csm.measure('csm_TitleDidYouKnowWidget_finished');
|
1161
|
+
}
|
1162
|
+
</script>
|
1163
|
+
</div>
|
1164
|
+
</div>
|
1558
1165
|
|
1559
1166
|
<div id="content-1" class="redesign clear">
|
1560
|
-
<div class="
|
1561
|
-
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1167
|
+
<div class="article" id="titleFAQ">
|
1168
|
+
<h2>Frequently Asked Questions</h2>
|
1169
|
+
<a href="/title/tt0002186/faq?ref_=tt_faq_sm" >This FAQ is empty. Add the first question.</a>
|
1170
|
+
</div>
|
1171
|
+
|
1172
|
+
<script>
|
1173
|
+
if ('csm' in window) {
|
1174
|
+
csm.measure('csm_TitleUserReviewsWidget_started');
|
1175
|
+
}
|
1176
|
+
</script>
|
1177
|
+
<div class="article" id="titleUserReviewsTeaser" itemprop="review" itemscope itemtype="http://schema.org/Review">
|
1178
|
+
<h2>User Reviews</h2>
|
1179
|
+
<div class="user-comments">
|
1180
|
+
<meta itemprop="ratingValue" content="6">
|
1181
|
+
<div class="tinystarbar" title="6/10">
|
1182
|
+
<div style="width: 60px;"> </div>
|
1183
|
+
</div>
|
1184
|
+
<span itemprop="name"><strong>"A good performance"</strong></span>
|
1185
|
+
|
1186
|
+
<div class="comment-meta">
|
1187
|
+
<meta itemprop="datePublished" content="2008-09-17">
|
1188
|
+
17 September 2008 | by <a href="/user/ur10334028/comments?ref_=tt_urv" itemprop="author">ackstasis</a>
|
1189
|
+
(Australia)
|
1190
|
+
– <a href="/user/ur10334028/comments?ref_=tt_urv" >See all my reviews</a>
|
1191
|
+
</div>
|
1192
|
+
|
1193
|
+
<div>
|
1194
|
+
<p itemprop="description">The Danes apparently had quite a fixation with the circus. 'The Flying Circus (1912)' was only one of many such-themed films that were released in the early years of the 1910s, and the film itself spawned a sequel, also directed by Alfred Lind, called 'The Bear Tamer (1912).' Indeed, circuses were a popular cinematic theme in film-making for many years. With their extraordinary collection of the weird and wonderful – high-wire acts, performing animals, clowns and strong-men – such a setting was prime material for exciting movie viewing {notably, the most entertaining example of all is probably Chaplin's 'The Circus (1927)'}. This particular Danish effort starts a bit slow, almost as a documentary of circus life, but eventually draws on its characters to provide an interesting and intermittently exciting slice of melodrama and escapism. Behind the sparkle and glamour of circus life lurks the scourge of lust, passion, jealousy and treachery, personified in the sleazy, cigar-smoking snake-charmer, Ula Kiri-Maja (Lili Bech), who fires up the screen with her smoldering sexual domination.<br /><br />Though I had been expecting more of a straight documentary, the dramatisation and character development in 'The Flying Circus' was a welcome deviation. Borgmester Strøm (Rasmus Ottesen) is purportedly the circus' greatest tight-rope walker. His first effort does little to convince us of this – it's a completely lame three-metre trot along a rope that's about three metres above the stage, but the audience in the film seemed impressed enough, as did the mayor's daughter, Erna (Emilie Otterdahl). Considerably more impressive is a later feat, when Borgmester utilises his tight-rope skills to rescue Erna from the window of a burning building {even if I clearly noticed a crewman's head crop up where there ought to have been nothing but thin air}. Though he soon wants to marry Erna, his request is declined by her father, who is adamant that no daughter of his will ever marry a performing peasant. To secure enough money to ensure a respectable marriage, Borgmester decides to tight-rope walk a long rope to the top of a church tower.<br /><br />Offering to perform a dangerous stunt to acquire much-needed marital funds sounds a bit like Harold Lloyd's 'Safety Last! (1923),' even if this Danish version is only mildly exciting in comparison. The performances are more understated than might be expected – there's certainly nothing that would be called naturalistic, but, as far as silent cinema goes, the main cast members manage to keep their exaggerated gestures to an acceptable minimum. Lili Bech, calling to mind the vampiric French actress Musidora (of Louis Feuillade's serials), totally steals the show, her every action leading me to curse her unfettered nastiness. The film's running-time of 46 minutes was around average for features of the time, though the cinematic techniques used are still relatively primitive, especially compared to the excellent work that D.W. Griffith during those same years. Alfred Lind's 'The Flying Circus' deserves at least a single viewing, as a historical curiosity, a Danish curiosity and as a pleasant-enough circus melodrama – a beautifully-restored print is available on DVD from the Danish Film Institute.</p>
|
1195
|
+
</div>
|
1196
|
+
<hr />
|
1197
|
+
|
1198
|
+
<div class="yn" id="ynd_1947318">
|
1199
|
+
0 of 0 people found this review helpful.
|
1200
|
+
Was this review helpful to you?
|
1201
|
+
<button class="btn small" value="Yes" name="ynb_1947318_yes" onclick="CS.TMD.user_review_vote(1947318, 'tt0002186', 'yes');" >Yes</button>
|
1202
|
+
<button class="btn small" value="No" name="ynb_1947318_no" onclick="CS.TMD.user_review_vote(1947318, 'tt0002186', 'no');" >No</button>
|
1203
|
+
| <a href="/title/tt0002186/reviews-vote?ynr_1947318=tt0002186; return false;&ref_=tt_urv" >Report this</a></p>
|
1204
|
+
</div>
|
1205
|
+
<div class="see-more">
|
1206
|
+
<a href="/title/tt0002186/reviews-enter?ref_=tt_urv" >Review this title</a>
|
1207
|
+
<span>|</span>
|
1208
|
+
<a href="/title/tt0002186/reviews?ref_=tt_urv" >See all 4 user reviews</a> »
|
1209
|
+
</div>
|
1210
|
+
</div>
|
1566
1211
|
</div>
|
1212
|
+
<script>
|
1213
|
+
if ('csm' in window) {
|
1214
|
+
csm.measure('csm_TitleUserReviewsWidget_finished');
|
1215
|
+
}
|
1216
|
+
</script>
|
1567
1217
|
|
1568
|
-
|
1218
|
+
<script>
|
1219
|
+
if ('csm' in window) {
|
1220
|
+
csm.measure('csm_TitleMessageBoardsWidget_started');
|
1221
|
+
}
|
1222
|
+
</script>
|
1223
|
+
<div class="article" id="titleBoardsTeaser">
|
1224
|
+
<h2>Message Boards</h2>
|
1225
|
+
|
1226
|
+
|
1227
|
+
<div class="see-more">
|
1228
|
+
<a href="/title/tt0002186/board/?ref_=tt_bd_sm" >Discuss The Flying Circus (1912)</a> on the IMDb message boards »
|
1229
|
+
</div>
|
1569
1230
|
</div>
|
1231
|
+
<script>
|
1232
|
+
if ('csm' in window) {
|
1233
|
+
csm.measure('csm_TitleMessageBoardsWidget_finished');
|
1234
|
+
}
|
1235
|
+
</script>
|
1236
|
+
|
1237
|
+
<script>
|
1238
|
+
if ('csm' in window) {
|
1239
|
+
csm.measure('csm_TitleContributeWidget_started');
|
1240
|
+
}
|
1241
|
+
</script>
|
1242
|
+
<div class="article contribute">
|
1243
|
+
<div class="rightcornerlink">
|
1244
|
+
<a href="/help/?adding/&ref_=tt_cn" >Getting Started</a>
|
1245
|
+
<span>|</span>
|
1246
|
+
<a href="/czone/?ref_=tt_cn" >Contributor Zone</a> »</div>
|
1247
|
+
<h2>Contribute to This Page</h2>
|
1248
|
+
|
1249
|
+
|
1250
|
+
<div class="button-box">
|
1251
|
+
<form method="post" action="/updates?ref_=tt_cn">
|
1252
|
+
<input type="hidden" name="auto" value="legacy/title/tt0002186/">
|
1253
|
+
<button class="btn primary large" type="submit">Edit page</button>
|
1254
|
+
</form>
|
1255
|
+
</div>
|
1256
|
+
|
1570
1257
|
|
1258
|
+
<div class="button-box">
|
1259
|
+
<a href="/title/tt0002186/reviews-enter?ref_=tt_cn" class="btn large" >Write review</a>
|
1260
|
+
</div>
|
1261
|
+
|
1262
|
+
|
1263
|
+
<div class="form-box">
|
1264
|
+
<form method="post" action="/character/create?ref_=tt_cn">
|
1265
|
+
<input type="hidden" value="tt0002186" name="title">
|
1266
|
+
<div class="form-txt">Create a character page for:</div>
|
1267
|
+
<select id="character_select" name="name" data-tconst="tt0002186">
|
1268
|
+
<option value="Borgmester Strøm">Borgmester Strøm</option>
|
1269
|
+
<option value="Erna, hans Datter">Erna, hans Datter</option>
|
1270
|
+
<option value="Ula Kiri-Maja, Slangetæmmerske">Ula Kiri-Maja, Slangetæmmerske</option>
|
1271
|
+
<option value="Cirkustjener">Cirkustjener</option>
|
1272
|
+
<option value="Laurento, Linedanser">Laurento, Linedanser</option>
|
1273
|
+
<option value="Strøms stuepige">Strøms stuepige</option>
|
1274
|
+
<option value="Cirkusgæst">Cirkusgæst</option>
|
1275
|
+
<option disabled="disabled">-----------</option>
|
1276
|
+
<option value="...">more...</option>
|
1277
|
+
</select>
|
1278
|
+
<button class="btn small">Create »</button>
|
1279
|
+
<a href="/help/show_leaf?createchar&ref_=tt_cn" class="btn small" >?</a>
|
1280
|
+
</form>
|
1281
|
+
</div>
|
1282
|
+
|
1283
|
+
</div>
|
1284
|
+
<script>
|
1285
|
+
if ('csm' in window) {
|
1286
|
+
csm.measure('csm_TitleContributeWidget_finished');
|
1287
|
+
}
|
1288
|
+
</script>
|
1289
|
+
|
1290
|
+
<script>
|
1291
|
+
if ('csm' in window) {
|
1292
|
+
csm.measure('csm_TitleFooterLinksWidget_started');
|
1293
|
+
}
|
1294
|
+
</script>
|
1295
|
+
<div class="article links" id="title_footer_links">
|
1296
|
+
<h2>Explore More About
|
1297
|
+
The Flying Circus
|
1298
|
+
</h2>
|
1299
|
+
<div class="link_column">
|
1300
|
+
<h4>Credits</h4>
|
1301
|
+
<a href="/title/tt0002186/?ref_=tt_ft" class="link" id="footer_link_Overview" >Overview</a> <br />
|
1302
|
+
<a href="/title/tt0002186/fullcredits?ref_=tt_ft" class="link" id="footer_link_Full_Cast_and_Crew" >Full Cast and Crew</a> <br />
|
1303
|
+
<a href="/partners/wga?ref_=tt_ft" class="link" id="footer_link_About_WGA" >About WGA</a> <br />
|
1304
|
+
|
1305
|
+
<h4>Story</h4>
|
1306
|
+
<a href="/title/tt0002186/taglines?ref_=tt_ft" class="link empty" id="footer_link_Taglines" >Taglines</a> <br />
|
1307
|
+
<a href="/title/tt0002186/plotsummary?ref_=tt_ft" class="link empty" id="footer_link_Plot_Summary" >Plot Summary</a> <br />
|
1308
|
+
<a href="/title/tt0002186/synopsis?ref_=tt_ft" class="link empty" id="footer_link_Synopsis" >Synopsis</a> <br />
|
1309
|
+
<a href="/title/tt0002186/keywords?ref_=tt_ft" class="link" id="footer_link_Plot_Keywords" >Plot Keywords</a> <br />
|
1310
|
+
<a href="/title/tt0002186/parentalguide?ref_=tt_ft" class="link empty" id="footer_link_Parents_Guide" >Parents Guide</a> <br />
|
1311
|
+
|
1312
|
+
<h4>Did You Know?</h4>
|
1313
|
+
<a href="/title/tt0002186/quotes?ref_=tt_ft" class="link empty" id="footer_link_Quotes" >Quotes</a> <br />
|
1314
|
+
<a href="/title/tt0002186/trivia?ref_=tt_ft" class="link empty" id="footer_link_Trivia" >Trivia</a> <br />
|
1315
|
+
<a href="/title/tt0002186/trivia?tab=gf&ref_=tt_ft" class="link empty" id="footer_link_Goofs" >Goofs</a> <br />
|
1316
|
+
<a href="/title/tt0002186/trivia?tab=cz&ref_=tt_ft" class="link empty" id="footer_link_Crazy_Credits" >Crazy Credits</a> <br />
|
1317
|
+
<a href="/title/tt0002186/alternateversions?ref_=tt_ft" class="link empty" id="footer_link_Alternate_Versions" >Alternate Versions</a> <br />
|
1318
|
+
<a href="/title/tt0002186/trivia?tab=mc&ref_=tt_ft" class="link" id="footer_link_Connections" >Connections</a> <br />
|
1319
|
+
<a href="/title/tt0002186/soundtrack?ref_=tt_ft" class="link empty" id="footer_link_Soundtracks" >Soundtracks</a> <br />
|
1320
|
+
</div>
|
1321
|
+
|
1322
|
+
<div class="link_column">
|
1323
|
+
<h4>Details</h4>
|
1324
|
+
<a href="/title/tt0002186/releaseinfo?ref_=tt_ft" class="link" id="footer_link_Release_Dates" >Release Dates</a> <br />
|
1325
|
+
<a href="/title/tt0002186/officialsites?ref_=tt_ft" class="link empty" id="footer_link_Official_Sites" >Official Sites</a> <br />
|
1326
|
+
<a href="/title/tt0002186/business?ref_=tt_ft" class="link empty" id="footer_link_Box_Office/Business" >Box Office/Business</a> <br />
|
1327
|
+
<a href="/title/tt0002186/companycredits?ref_=tt_ft" class="link" id="footer_link_Company_Credits" >Company Credits</a> <br />
|
1328
|
+
<a href="/title/tt0002186/locations?ref_=tt_ft" class="link" id="footer_link_Filming_Locations" >Filming Locations</a> <br />
|
1329
|
+
<a href="/title/tt0002186/technical?ref_=tt_ft" class="link" id="footer_link_Technical_Specs" >Technical Specs</a> <br />
|
1330
|
+
<a href="/title/tt0002186/literature?ref_=tt_ft" class="link empty" id="footer_link_Literature" >Literature</a> <br />
|
1331
|
+
|
1332
|
+
<h4>Photos & Video</h4>
|
1333
|
+
<a href="/title/tt0002186/mediaindex?ref_=tt_ft" class="link empty" id="footer_link_Photo_Gallery" >Photo Gallery</a> <br />
|
1334
|
+
<a href="/title/tt0002186/videogallery?ref_=tt_ft" class="link empty" id="footer_link_Trailers_and_Videos" >Trailers and Videos</a> <br />
|
1335
|
+
<a href="/title/tt0002186/posters?ref_=tt_ft" class="link empty" id="footer_link_Posters" >Posters</a> <br />
|
1336
|
+
</div>
|
1337
|
+
|
1338
|
+
<div class="link_column">
|
1339
|
+
<h4>Opinion</h4>
|
1340
|
+
<a href="/title/tt0002186/awards?ref_=tt_ft" class="link empty" id="footer_link_Awards" >Awards</a> <br />
|
1341
|
+
<a href="/title/tt0002186/faq?ref_=tt_ft" class="link empty" id="footer_link_FAQ" >FAQ</a> <br />
|
1342
|
+
<a href="/title/tt0002186/reviews?ref_=tt_ft" class="link" id="footer_link_User_Reviews" >User Reviews</a> <br />
|
1343
|
+
<a href="/title/tt0002186/ratings?ref_=tt_ft" class="link" id="footer_link_User_Ratings" >User Ratings</a> <br />
|
1344
|
+
<a href="/title/tt0002186/externalreviews?ref_=tt_ft" class="link empty" id="footer_link_External_Reviews" >External Reviews</a> <br />
|
1345
|
+
<a href="/title/tt0002186/criticreviews?ref_=tt_ft" class="link empty" id="footer_link_Metacritic_Reviews" >Metacritic Reviews</a> <br />
|
1346
|
+
<a href="/title/tt0002186/newsgroupreviews?ref_=tt_ft" class="link empty" id="footer_link_Newsgroup_Reviews" >Newsgroup Reviews</a> <br />
|
1347
|
+
<a href="/title/tt0002186/board/?ref_=tt_ft" class="link" id="footer_link_Message_Board" >Message Board</a> <br />
|
1348
|
+
|
1349
|
+
<h4>External Links</h4>
|
1350
|
+
<a href="/title/tt0002186/miscsites?ref_=tt_ft" class="link empty" id="footer_link_Miscellaneous" >Miscellaneous</a> <br />
|
1351
|
+
<a href="/title/tt0002186/soundsites?ref_=tt_ft" class="link empty" id="footer_link_Sound_Clips" >Sound Clips</a> <br />
|
1352
|
+
<a href="/title/tt0002186/videosites?ref_=tt_ft" class="link empty" id="footer_link_Video_Clips" >Video Clips</a> <br />
|
1353
|
+
<a href="/title/tt0002186/photosites?ref_=tt_ft" class="link empty" id="footer_link_Photographs" >Photographs</a> <br />
|
1354
|
+
</div>
|
1355
|
+
|
1356
|
+
<div class="link_column">
|
1357
|
+
<h4>Related Items</h4>
|
1358
|
+
<a href="/title/tt0002186/news?ref_=tt_ft" class="link empty" id="footer_link_NewsDesk" >NewsDesk</a> <br />
|
1359
|
+
<a href="/showtimes/title/tt0002186?ref_=tt_ft" class="link empty" id="footer_link_Showtimes" >Showtimes</a> <br />
|
1360
|
+
|
1361
|
+
<h4>Professional Services</h4>
|
1362
|
+
<a onclick="(new Image()).src='/rg/tt_footer_moreatpro/prosystem/images/b.gif?link=/r/tt_footer_moreatpro/http://pro.imdb.com';" href="/r/tt_footer_moreatpro/http://pro.imdb.com" class="link" id="footer_link_Get_more_at_IMDbPro" >Get more at IMDbPro</a> <br />
|
1363
|
+
<a onclick="(new Image()).src='/rg/title-footer/add-poster/images/b.gif?link=/r/tt_footer_addposters/https://secure.imdb.com/store/photos/';" href="/r/tt_footer_addposters/https://secure.imdb.com/store/photos/" class="link" id="footer_link_Add_posters_&_stills_to_this_title" >Add posters & stills to this title</a> <br />
|
1364
|
+
</div>
|
1365
|
+
</div>
|
1366
|
+
<script>
|
1367
|
+
if ('csm' in window) {
|
1368
|
+
csm.measure('csm_TitleFooterLinksWidget_finished');
|
1369
|
+
}
|
1370
|
+
</script>
|
1371
|
+
</div>
|
1571
1372
|
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1579
|
-
|
1580
|
-
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1594
|
-
|
1595
|
-
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1373
|
+
<br class="clear" />
|
1600
1374
|
</div>
|
1601
|
-
<div id="footer" class="ft">
|
1602
|
-
<hr width="100%" size=1>
|
1603
|
-
<div id="rvi-div">
|
1604
|
-
<div class="recently-viewed"> </div>
|
1605
|
-
<br class="clear">
|
1606
|
-
<hr width="100%" size="1">
|
1607
|
-
</div>
|
1608
1375
|
|
1609
|
-
|
1610
|
-
<
|
1611
|
-
|
1612
|
-
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1623
|
-
|
1624
|
-
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
<a
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
</
|
1662
|
-
<
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
<
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1376
|
+
|
1377
|
+
<div id="footer" class="ft">
|
1378
|
+
<hr width="100%" size=1>
|
1379
|
+
<div id="rvi-div">
|
1380
|
+
<div class="recently-viewed"> </div>
|
1381
|
+
<br class="clear">
|
1382
|
+
<hr width="100%" size="1">
|
1383
|
+
</div>
|
1384
|
+
<p class="footer" align="center">
|
1385
|
+
<a
|
1386
|
+
onclick="(new Image()).src='/rg/home/footer/images/b.gif?link=/';"
|
1387
|
+
href="/"
|
1388
|
+
>Home</a>
|
1389
|
+
| <a
|
1390
|
+
onclick="(new Image()).src='/rg/search/footer/images/b.gif?link=/search';"
|
1391
|
+
href="/search"
|
1392
|
+
>Search</a>
|
1393
|
+
| <a
|
1394
|
+
onclick="(new Image()).src='/rg/siteindex/footer/images/b.gif?link=/a2z';"
|
1395
|
+
href="/a2z"
|
1396
|
+
>Site Index</a>
|
1397
|
+
| <a
|
1398
|
+
onclick="(new Image()).src='/rg/intheaters/footer/images/b.gif?link=/movies-in-theaters/';"
|
1399
|
+
href="/movies-in-theaters/"
|
1400
|
+
>In Theaters</a>
|
1401
|
+
| <a
|
1402
|
+
onclick="(new Image()).src='/rg/comingsoon/footer/images/b.gif?link=/movies-coming-soon/';"
|
1403
|
+
href="/movies-coming-soon/"
|
1404
|
+
>Coming Soon</a>
|
1405
|
+
| <a
|
1406
|
+
onclick="(new Image()).src='/rg/topmovies/footer/images/b.gif?link=/chart/';"
|
1407
|
+
href="/chart/"
|
1408
|
+
>Top Movies</a>
|
1409
|
+
| <a
|
1410
|
+
onclick="(new Image()).src='/rg/watchlist/footer/images/b.gif?link=/list/watchlist';"
|
1411
|
+
href="/list/watchlist"
|
1412
|
+
>Watchlist</a>
|
1413
|
+
| <a
|
1414
|
+
onclick="(new Image()).src='/rg/top250/footer/images/b.gif?link=/chart/top';"
|
1415
|
+
href="/chart/top"
|
1416
|
+
>Top 250</a>
|
1417
|
+
| <a
|
1418
|
+
onclick="(new Image()).src='/rg/tv/footer/images/b.gif?link=/sections/tv/';"
|
1419
|
+
href="/sections/tv/"
|
1420
|
+
>TV</a>
|
1421
|
+
| <a
|
1422
|
+
onclick="(new Image()).src='/rg/news/footer/images/b.gif?link=/news/';"
|
1423
|
+
href="/news/"
|
1424
|
+
>News</a>
|
1425
|
+
| <a
|
1426
|
+
onclick="(new Image()).src='/rg/video/footer/images/b.gif?link=/features/video/';"
|
1427
|
+
href="/features/video/"
|
1428
|
+
>Video</a>
|
1429
|
+
| <a
|
1430
|
+
onclick="(new Image()).src='/rg/messageboards/footer/images/b.gif?link=/boards/';"
|
1431
|
+
href="/boards/"
|
1432
|
+
>Message Boards</a>
|
1433
|
+
| <a
|
1434
|
+
onclick="(new Image()).src='/rg/pressroom/footer/images/b.gif?link=/pressroom/';"
|
1435
|
+
href="/pressroom/"
|
1436
|
+
>Press Room</a>
|
1437
|
+
<br>
|
1438
|
+
|
1439
|
+
<a
|
1440
|
+
onclick="(new Image()).src='/rg/register-v2/footer/images/b.gif?link=https://secure.imdb.com/register-imdb/form-v2';"
|
1441
|
+
href="https://secure.imdb.com/register-imdb/form-v2"
|
1442
|
+
>Register</a>
|
1443
|
+
| <a
|
1444
|
+
onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
|
1445
|
+
href="/help/show_article?rssavailable"
|
1446
|
+
class="navbarSprite"
|
1447
|
+
id="footer_rss_image"
|
1448
|
+
></a>
|
1449
|
+
<a
|
1450
|
+
onclick="(new Image()).src='/rg/rss/footer/images/b.gif?link=/help/show_article?rssavailable';"
|
1451
|
+
href="/help/show_article?rssavailable"
|
1452
|
+
>RSS</a>
|
1453
|
+
| <a
|
1454
|
+
onclick="(new Image()).src='/rg/advertising/footer/images/b.gif?link=/advertising/';"
|
1455
|
+
href="/advertising/"
|
1456
|
+
>Advertising</a>
|
1457
|
+
| <a
|
1458
|
+
onclick="(new Image()).src='/rg/helpdesk/footer/images/b.gif?link=/helpdesk/contact';"
|
1459
|
+
href="/helpdesk/contact"
|
1460
|
+
>Contact Us</a>
|
1461
|
+
| <a
|
1462
|
+
onclick="(new Image()).src='/rg/jobs/footer/images/b.gif?link=/jobs';"
|
1463
|
+
href="/jobs"
|
1464
|
+
>Jobs</a>
|
1465
|
+
| <a
|
1466
|
+
onclick="(new Image()).src='/rg/IMDbFooter/prosystem/images/b.gif?link=https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627';"
|
1467
|
+
href="https://secure.imdb.com/r/IMDbFooter/register/subscribe?c=a394d4442664f6f6475627"
|
1468
|
+
>IMDbPro</a>
|
1469
|
+
| <a
|
1470
|
+
onclick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com/';"
|
1471
|
+
href="http://www.boxofficemojo.com/"
|
1472
|
+
>Box Office Mojo</a>
|
1473
|
+
| <a
|
1474
|
+
onclick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com/';"
|
1475
|
+
href="http://www.withoutabox.com/"
|
1476
|
+
>Withoutabox</a>
|
1477
|
+
| <a
|
1478
|
+
onclick="(new Image()).src='/rg/LOVEFILM/FOOTER/images/b.gif?link=http://www.lovefilm.com/browse/film/watch-online/';"
|
1479
|
+
href="http://www.lovefilm.com/browse/film/watch-online/"
|
1480
|
+
>LOVEFiLM</a>
|
1481
|
+
<br /><br />
|
1482
|
+
IMDb Mobile:
|
1483
|
+
<a
|
1484
|
+
onclick="(new Image()).src='/rg/mobile-ios/footer/images/b.gif?link=/apps/ios/';"
|
1485
|
+
href="/apps/ios/"
|
1486
|
+
>iPhone/iPad</a>
|
1487
|
+
| <a
|
1488
|
+
onclick="(new Image()).src='/rg/mobile-android/footer/images/b.gif?link=/android';"
|
1489
|
+
href="/android"
|
1490
|
+
>Android</a>
|
1491
|
+
| <a
|
1492
|
+
onclick="(new Image()).src='/rg/mobile-web/footer/images/b.gif?link=http://m.imdb.com';"
|
1493
|
+
href="http://m.imdb.com"
|
1494
|
+
>Mobile site</a>
|
1495
|
+
| <a
|
1496
|
+
onclick="(new Image()).src='/rg/mobile-win7/footer/images/b.gif?link=/windowsphone';"
|
1497
|
+
href="/windowsphone"
|
1498
|
+
>Windows Phone 7</a>
|
1499
|
+
| IMDb Social:
|
1500
|
+
<a
|
1501
|
+
onclick="(new Image()).src='/rg/facebook/footer/images/b.gif?link=http://www.facebook.com/imdb';"
|
1502
|
+
href="http://www.facebook.com/imdb"
|
1503
|
+
>Facebook</a>
|
1504
|
+
| <a
|
1505
|
+
onclick="(new Image()).src='/rg/twitter/footer/images/b.gif?link=http://twitter.com/imdb';"
|
1506
|
+
href="http://twitter.com/imdb"
|
1507
|
+
>Twitter</a>
|
1508
|
+
<br /><br />
|
1509
|
+
International Sites:
|
1510
|
+
<a href="http://www.imdb.de">IMDb Germany</a> |
|
1511
|
+
<a href="http://www.imdb.it">IMDb Italy</a> |
|
1512
|
+
<a href="http://www.imdb.es">IMDb Spain</a> |
|
1513
|
+
<a href="http://www.imdb.fr">IMDb France</a>
|
1514
|
+
<br /><br />
|
1515
|
+
</p>
|
1516
|
+
|
1517
|
+
<p class="footer" align="center">
|
1518
|
+
<a
|
1519
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
|
1520
|
+
href="/help/show_article?conditions"
|
1521
|
+
>Copyright ©</a> 1990-2013
|
1522
|
+
<a
|
1523
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/';"
|
1524
|
+
href="/help/"
|
1525
|
+
>IMDb.com, Inc.</a>
|
1526
|
+
<br>
|
1527
|
+
<a
|
1528
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/help/show_article?conditions';"
|
1529
|
+
href="/help/show_article?conditions"
|
1530
|
+
>Terms of Use</a> | <a
|
1531
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=/privacy';"
|
1532
|
+
href="/privacy"
|
1533
|
+
>Privacy Policy</a> | <a
|
1534
|
+
onclick="(new Image()).src='/rg/help/footer/images/b.gif?link=//www.amazon.com/InterestBasedAds';"
|
1535
|
+
href="//www.amazon.com/InterestBasedAds"
|
1536
|
+
>Interest-Based Ads</a>
|
1537
|
+
<br>
|
1538
|
+
An <span id="amazon_logo" class="footer_logo" align="middle"></span> company.
|
1539
|
+
</p>
|
1540
|
+
|
1541
|
+
<table class="footer" id="amazon-affiliates" width="100%">
|
1542
|
+
<tr>
|
1543
|
+
<td colspan="10">
|
1544
|
+
Amazon Affiliates
|
1545
|
+
</td>
|
1546
|
+
</tr>
|
1547
|
+
<tr>
|
1548
|
+
<td class="amazon-affiliate-site-first">
|
1549
|
+
<a class="amazon-affiliate-site-link" href="http://www.amazon.com/b?ie=UTF8&node=2858778011&tag=imdbpr1-20">
|
1550
|
+
<span class="amazon-affiliate-site-name">Amazon Instant Video</span><br>
|
1551
|
+
<span class="amazon-affiliate-site-desc">Watch Movies &<br>TV Online</span>
|
1552
|
+
</a>
|
1553
|
+
</td>
|
1676
1554
|
<td class="amazon-affiliate-site-item-nth">
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
</a>
|
1555
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.com/b?ie=UTF8&node=2676882011&tag=imdbpr1-20 >
|
1556
|
+
<span class="amazon-affiliate-site-name">Prime Instant Video</span><br>
|
1557
|
+
<span class="amazon-affiliate-site-desc">Unlimited Streaming<br>of Movies & TV</span>
|
1558
|
+
</a>
|
1682
1559
|
</td>
|
1683
1560
|
<td class="amazon-affiliate-site-item-nth">
|
1684
|
-
|
1685
|
-
|
1686
|
-
|
1687
|
-
|
1688
|
-
</a>
|
1561
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.de/b?ie=UTF8&node=284266&tag=imdbpr1-de-21 >
|
1562
|
+
<span class="amazon-affiliate-site-name">Amazon Germany</span><br>
|
1563
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
1564
|
+
</a>
|
1689
1565
|
</td>
|
1690
1566
|
<td class="amazon-affiliate-site-item-nth">
|
1691
|
-
|
1692
|
-
|
1693
|
-
|
1694
|
-
|
1695
|
-
</a>
|
1567
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.it/b?ie=UTF8&node=412606031&tag=imdbpr1-it-21 >
|
1568
|
+
<span class="amazon-affiliate-site-name">Amazon Italy</span><br>
|
1569
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
1570
|
+
</a>
|
1696
1571
|
</td>
|
1697
1572
|
<td class="amazon-affiliate-site-item-nth">
|
1698
|
-
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
</a>
|
1573
|
+
<a class="amazon-affiliate-site-link" href=http://www.amazon.fr/b?ie=UTF8&node=405322&tag=imdbpr1-fr-21 >
|
1574
|
+
<span class="amazon-affiliate-site-name">Amazon France</span><br>
|
1575
|
+
<span class="amazon-affiliate-site-desc">Buy Movies on<br>DVD & Blu-ray</span>
|
1576
|
+
</a>
|
1703
1577
|
</td>
|
1704
1578
|
<td class="amazon-affiliate-site-item-nth">
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1579
|
+
<a class="amazon-affiliate-site-link" href=http://www.lovefilm.com/browse/film/watch-online/ >
|
1580
|
+
<span class="amazon-affiliate-site-name">LOVEFiLM</span><br>
|
1581
|
+
<span class="amazon-affiliate-site-desc">Watch Movies<br>Online</span>
|
1582
|
+
</a>
|
1709
1583
|
</td>
|
1710
1584
|
<td class="amazon-affiliate-site-item-nth">
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1585
|
+
<a class="amazon-affiliate-site-link" href=http://wireless.amazon.com >
|
1586
|
+
<span class="amazon-affiliate-site-name">Amazon Wireless</span><br>
|
1587
|
+
<span class="amazon-affiliate-site-desc">Cellphones &<br>Wireless Plans</span>
|
1588
|
+
</a>
|
1715
1589
|
</td>
|
1716
1590
|
<td class="amazon-affiliate-site-item-nth">
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1591
|
+
<a class="amazon-affiliate-site-link" href=http://www.junglee.com/ >
|
1592
|
+
<span class="amazon-affiliate-site-name">Junglee</span><br>
|
1593
|
+
<span class="amazon-affiliate-site-desc">India Online<br>Shopping</span>
|
1594
|
+
</a>
|
1721
1595
|
</td>
|
1722
1596
|
<td class="amazon-affiliate-site-item-nth">
|
1723
|
-
|
1724
|
-
|
1725
|
-
|
1726
|
-
|
1597
|
+
<a class="amazon-affiliate-site-link" href=http://www.dpreview.com >
|
1598
|
+
<span class="amazon-affiliate-site-name">DPReview</span><br>
|
1599
|
+
<span class="amazon-affiliate-site-desc">Digital<br>Photography</span>
|
1600
|
+
</a>
|
1727
1601
|
</td>
|
1728
1602
|
<td class="amazon-affiliate-site-item-nth">
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1603
|
+
<a class="amazon-affiliate-site-link" href=http://www.audible.com >
|
1604
|
+
<span class="amazon-affiliate-site-name">Audible</span><br>
|
1605
|
+
<span class="amazon-affiliate-site-desc">Download<br>Audio Books</span>
|
1606
|
+
</a>
|
1732
1607
|
</td>
|
1733
|
-
|
1734
|
-
</table>
|
1735
|
-
|
1736
|
-
</div>
|
1737
|
-
|
1738
|
-
|
1739
|
-
|
1608
|
+
</tr>
|
1609
|
+
</table>
|
1610
|
+
</div>
|
1740
1611
|
|
1612
|
+
<script type="text/javascript">
|
1741
1613
|
|
1614
|
+
var _gaq = _gaq || [];
|
1615
|
+
var seg = -1;
|
1616
|
+
_gaq.push(['_setAccount', 'UA-3916519-1']);
|
1617
|
+
_gaq.push(['_setDomainName', '.imdb.com']);
|
1618
|
+
_gaq.push(['_setSampleRate', '10']);
|
1619
|
+
_gaq.push(['_setCustomVar', 2, 'Falkor', 'false']);
|
1620
|
+
_gaq.push(['_setCustomVar', 4, 'ads_abtest_treatment', 'd']);
|
1621
|
+
_gaq.push(['_trackPageview']); // must come last
|
1622
|
+
|
1623
|
+
(function() {
|
1624
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
1625
|
+
ga.src = 'http://www.google-analytics.com/ga.js';
|
1626
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
1627
|
+
})();
|
1628
|
+
|
1629
|
+
</script>
|
1630
|
+
<!-- begin springroll comscore beacon -->
|
1631
|
+
<script type="text/javascript" src='/images/a/js/beacon.js'></script>
|
1632
|
+
<script type="text/javascript">
|
1633
|
+
COMSCORE.beacon({
|
1634
|
+
c1: 2,
|
1635
|
+
c2:"6034961",
|
1636
|
+
c3:"",
|
1637
|
+
c4:"http://www.imdb.com/title/tt0002186/",
|
1638
|
+
c5:"",
|
1639
|
+
c6:"",
|
1640
|
+
c15:""
|
1641
|
+
});
|
1642
|
+
</script>
|
1643
|
+
<noscript>
|
1644
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=6034961&c3=&c4=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F&c5=c6=&15=&cj=1"/>
|
1645
|
+
</noscript>
|
1646
|
+
<!-- end springroll comscore beacon -->
|
1742
1647
|
|
1743
1648
|
<!-- begin BOTTOM_AD -->
|
1744
1649
|
<div id="bottom_ad_wrapper" class="dfp_slot">
|
1745
|
-
<script type="text/javascript">
|
1650
|
+
<script type="text/javascript">
|
1746
1651
|
ad_utils.register_ad('bottom_ad');
|
1747
1652
|
</script>
|
1748
|
-
<iframe data-
|
1749
|
-
|
1750
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=1;sz=728x90,2x1;p=b;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=1;sz=728x90,2x1;p=b;ct=com;g=dr;tt=f;coo=dk;id=tt0002186;fv=1;ka=0;ord=466459956059?" border="0" alt="advertisement" /></a></noscript>
|
1751
|
-
|
1653
|
+
<iframe data-dart-params="#imdb2.consumer.title/maindetails;!TILE!;sz=728x90,2x1;p=b;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;[CLIENT_SIDE_KEYVALUES];[PASEGMENTS];u=[CLIENT_SIDE_ORD];ord=[CLIENT_SIDE_ORD]?" id="bottom_ad" name="bottom_ad" class="yesScript" width="728" height="90" data-config-width="728" data-config-height="90" data-cookie-width="null" data-cookie-height="null" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.on_ad_load(this)"></iframe>
|
1654
|
+
<noscript><a href="http//ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=6;sz=728x90,2x1;p=b;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" target="_blank"><img src="http//ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=6;sz=728x90,2x1;p=b;g=dr;tt=f;coo=dk;fv=1;id=tt0002186;ord=690333926518?" border="0" alt="advertisement" /></a></noscript>
|
1752
1655
|
</div>
|
1753
1656
|
<div id="bottom_ad_reflow_helper"></div>
|
1754
1657
|
<script>ad_utils.render_ad_fast('bottom_ad'); ad_utils.fallback.start_kill_timer('bottom_ad'); </script>
|
1755
1658
|
<!-- End BOTTOM_AD -->
|
1756
1659
|
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1762
|
-
|
1763
|
-
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1769
1660
|
</div>
|
1770
1661
|
</div>
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1777
|
-
|
1778
|
-
|
1779
|
-
<script>
|
1780
|
-
setTimeout(function(){
|
1781
|
-
try{
|
1782
|
-
//sis2.0 pixel
|
1783
|
-
var url = 'http://sis.amazon.com/iu?',
|
1784
|
-
params = [
|
1785
|
-
"dmnId=imdb.com",
|
1786
|
-
"dId=",
|
1787
|
-
"tId=",
|
1788
|
-
"pId=tt0002186",
|
1789
|
-
"r=1",
|
1790
|
-
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F"
|
1791
|
-
];
|
1792
|
-
(document.getElementById('sis_pixel')).src = url + params.join('&');
|
1793
|
-
|
1794
|
-
//sis3.0 pixel
|
1795
|
-
var url_sis3 = 'http://s.amazon-adsystem.com/iu3?',
|
1796
|
-
params_sis3 = [
|
1797
|
-
"d=imdb.com",
|
1798
|
-
"a1=",
|
1799
|
-
"a2=",
|
1800
|
-
"pId=tt0002186",
|
1801
|
-
"r=1",
|
1802
|
-
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",
|
1803
|
-
"ex-hargs=v%3D1.0%3Bc%3DIMDB%3Bp%3Dtt0002186%3Bt%3Dimdb_title_view%3B",
|
1804
|
-
"encoding=server",
|
1805
|
-
"cb=" + parseInt(Math.random()*99999999)
|
1806
|
-
];
|
1807
|
-
(document.getElementById('sis_pixel_3')).src = url_sis3 + params_sis3.join('&');
|
1808
|
-
}
|
1809
|
-
catch(e){
|
1810
|
-
consoleLog('Pixel failure ' + e.toString(),'sis');
|
1811
|
-
}
|
1812
|
-
}, 5);
|
1813
|
-
|
1662
|
+
|
1663
|
+
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/imdb/js/collections/title_main_details-456749018._V376744623_.js"></script>
|
1664
|
+
<script type="text/imdblogin-js" id="login">
|
1665
|
+
jQuery(document).ready(function(){
|
1666
|
+
window.imdb.login_lightbox("https://secure.imdb.com", "http://www.imdb.com/title/tt0002186/");
|
1667
|
+
});
|
1814
1668
|
</script>
|
1815
|
-
<!--
|
1816
|
-
<!-- Begin SIS
|
1817
|
-
<iframe id="
|
1818
|
-
|
1819
|
-
|
1820
|
-
<script>
|
1821
|
-
setTimeout(function(){
|
1822
|
-
|
1823
|
-
|
1824
|
-
var
|
1825
|
-
|
1669
|
+
<!-- begin ads footer -->
|
1670
|
+
<!-- Begin SIS code -->
|
1671
|
+
<iframe id="sis_pixel" style="display:none"></iframe>
|
1672
|
+
<iframe id="sis_pixel_3" width="1" height="1" frameborder="0" marginwidth="0" marginheight="0"></iframe>
|
1673
|
+
|
1674
|
+
<script>
|
1675
|
+
setTimeout(function(){
|
1676
|
+
try{
|
1677
|
+
//sis2.0 pixel
|
1678
|
+
var url = 'http://sis.amazon.com/iu?',
|
1679
|
+
params = [
|
1680
|
+
"dmnId=imdb.com",
|
1681
|
+
"dId=",
|
1682
|
+
"tId=000-0000000-0000000",
|
1683
|
+
"pId=tt0002186",
|
1684
|
+
"r=1",
|
1685
|
+
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F"
|
1686
|
+
];
|
1687
|
+
(document.getElementById('sis_pixel')).src = url + params.join('&');
|
1688
|
+
|
1689
|
+
//sis3.0 pixel
|
1690
|
+
var url_sis3 = 'http://s.amazon-adsystem.com/iu3?',
|
1691
|
+
params_sis3 = [
|
1826
1692
|
"d=imdb.com",
|
1827
1693
|
"a1=",
|
1828
|
-
"a2=",
|
1694
|
+
"a2=0101a1823ca3d5d46ce03d4502edf28f095b20f780c29eddcddebefb2933fa9c1e98",
|
1829
1695
|
"pId=tt0002186",
|
1830
1696
|
"r=1",
|
1831
1697
|
"rP=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F",
|
1698
|
+
"ex-hargs=v=1.0;c=IMDB;p=tt0002186;t=imdb_title_view;",
|
1832
1699
|
"encoding=server",
|
1833
1700
|
"cb=" + parseInt(Math.random()*99999999)
|
1834
1701
|
];
|
1835
|
-
(document.getElementById('
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1841
|
-
|
1842
|
-
|
1843
|
-
|
1844
|
-
<!-- End SIS-SW code -->
|
1845
|
-
<script type="text/javascript">generic.monitoring.stop_timing('page_load', '', true);generic.monitoring.all_events_started();</script><script type="text/imdblogin-js" id="login">
|
1846
|
-
jQuery(document).ready(function(){
|
1847
|
-
window.imdb.login_lightbox("https://secure.imdb.com",
|
1848
|
-
"http://www.imdb.com/title/tt0002186/");
|
1849
|
-
});
|
1850
|
-
</script>
|
1851
|
-
<script type="text/javascript">jQuery(".rating-list").each(function (i) {
|
1852
|
-
jQuery(this).rating({
|
1853
|
-
uconst: '',
|
1854
|
-
widgetClass: 'rating-list',
|
1855
|
-
ajaxURL: '/ratings/_ajax/title',
|
1856
|
-
starWidth: 14,
|
1857
|
-
errorMessage: 'Oops! Please try again later.',
|
1858
|
-
images: {
|
1859
|
-
imdb: "http://i.media-imdb.com/images/SFf61e3b0b4070522a50ac31a460101228/rating/rating-list/imdb.gif",
|
1860
|
-
off: "http://i.media-imdb.com/images/SF13607e633558b20fdf862870dd0bb1ab/rating/rating-list/off.gif",
|
1861
|
-
your: "http://i.media-imdb.com/images/SF9f5d09c8801a6161ee170b59446b1551/rating/rating-list/your.gif",
|
1862
|
-
del: "http://i.media-imdb.com/images/SF053ad2c5a9b53404112dc05b8074cb4a/rating/rating-list/del.gif",
|
1863
|
-
info: "http://i.media-imdb.com/images/SFf4976e5624107ef5bf7bc9acad68a79c/rating/rating-list/info.gif"
|
1864
|
-
}
|
1865
|
-
});
|
1866
|
-
});
|
1867
|
-
</script>
|
1868
|
-
<script>
|
1869
|
-
(function($){
|
1870
|
-
$('span.btn2_wrapper').not('.btn2_active').imdb_btn2();
|
1871
|
-
})(jQuery);
|
1872
|
-
</script><script type="text/javascript">jQuery("div.wlb_classic_wrapper").wl_button();</script><script type="text/javascript">jQuery(document).checkins_listener({doLogin: true, context: 'title-overview'});
|
1873
|
-
</script><script type="text/javascript">jQuery(document).trigger('checkins_add', [jQuery('div.add_to_checkins')]);
|
1874
|
-
</script><script type="text/javascript">setTimeout(function() {
|
1875
|
-
var url = "http://www.facebook.com/widgets/like.php?width=280&show_faces=1&layout=standard&ref=title%3Asb_mid%3Att0002186&href=http%3A%2F%2Fwww.imdb.com%2Ftitle%2Ftt0002186%2F";
|
1876
|
-
var like = document.getElementById('iframe_like');
|
1877
|
-
like.src = url;
|
1878
|
-
like.onload = function () { generic.monitoring.stop_timing('facebook_like_iframe', '', false); } }, 5);
|
1879
|
-
</script>
|
1880
|
-
<script type="text/javascript">
|
1881
|
-
var MIN_ITEMS = 6;
|
1882
|
-
csm.listen('csm_core_ads_load', function() {
|
1883
|
-
$('#lateload-recs-widget').load(
|
1884
|
-
"/widget/recommendations/recs",
|
1885
|
-
{"count":"24","noIncludes":"1","standards":"p13nsims:tt0002186","caller_name":"p13nsims-title","start":"0"},
|
1886
|
-
function( response, status, xhr ) {
|
1887
|
-
if (status == "error") {
|
1888
|
-
if ($('.rec_slide .rec_item').length < MIN_ITEMS) {
|
1889
|
-
$('.rec_heading_wrapper').parents('.article').hide();
|
1890
|
-
}
|
1891
|
-
}
|
1892
|
-
if ('csm' in window) {
|
1893
|
-
csm.measure('csm_recs_delivered');
|
1894
|
-
}
|
1895
|
-
}
|
1896
|
-
);
|
1897
|
-
});
|
1898
|
-
</script>
|
1899
|
-
|
1900
|
-
|
1901
|
-
<script type="text/javascript">
|
1902
|
-
|
1903
|
-
var _gaq = _gaq || [];
|
1904
|
-
_gaq.push(['_setAccount', 'UA-3916519-1']);
|
1905
|
-
_gaq.push(['_setDomainName', '.imdb.com']); _gaq.push(['_setSampleRate', '10']); _gaq.push(['_setCustomVar', 2, 'Falkor', 'true']);
|
1906
|
-
_gaq.push(['_trackPageview']); // must come last
|
1907
|
-
|
1908
|
-
(function() {
|
1909
|
-
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
1910
|
-
ga.src = 'http://www.google-analytics.com/ga.js';
|
1911
|
-
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
1912
|
-
})();
|
1702
|
+
(document.getElementById('sis_pixel_3')).src = url_sis3 + params_sis3.join('&');
|
1703
|
+
}
|
1704
|
+
catch(e){
|
1705
|
+
consoleLog('Pixel failure ' + e.toString(),'sis');
|
1706
|
+
}
|
1707
|
+
}, 5);
|
1708
|
+
|
1709
|
+
</script>
|
1710
|
+
<!-- End SIS code -->
|
1913
1711
|
|
1914
|
-
|
1712
|
+
<script src="http://z-ecx.images-amazon.com/images/G/01/imdbads/foresee/foresee-trigger-4277353327._V397576255_.js"></script>
|
1713
|
+
<script>(function(g){window.jQuery && jQuery(function(){g.document_is_ready()});g.monitoring.stop_timing('page_load','',true);g.monitoring.all_events_started();})(generic);</script>
|
1714
|
+
<!-- end ads footer -->
|
1915
1715
|
|
1716
|
+
<div id="servertime" time="387"/>
|
1916
1717
|
</body>
|
1917
1718
|
</html>
|
1918
1719
|
|
1919
|
-
|
1920
|
-
|