imdb 0.6.5 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/Gemfile +3 -0
- data/History.txt +31 -0
- data/Rakefile +7 -36
- data/bin/imdb +0 -0
- data/imdb.gemspec +19 -91
- data/lib/imdb.rb +1 -4
- data/lib/imdb/cli.rb +1 -1
- data/lib/imdb/movie.rb +15 -6
- data/lib/imdb/search.rb +2 -2
- data/lib/imdb/top_250.rb +1 -1
- data/lib/imdb/version.rb +3 -0
- data/spec/fixtures/search_kannethirey_thondrinal +7 -7
- data/spec/fixtures/search_killed_wife +14 -0
- data/spec/fixtures/search_star_trek +488 -320
- data/spec/fixtures/top_250 +470 -206
- data/spec/fixtures/tt0036855 +628 -633
- data/spec/fixtures/tt0083987 +622 -678
- data/spec/fixtures/tt0095016 +642 -719
- data/spec/fixtures/tt0110912 +658 -669
- data/spec/fixtures/tt0111161 +636 -706
- data/spec/fixtures/tt0117731 +644 -688
- data/spec/fixtures/tt0166222 +1806 -0
- data/spec/fixtures/tt0242653 +619 -705
- data/spec/fixtures/tt0330508 +1318 -623
- data/spec/fixtures/tt0468569 +1305 -0
- data/spec/fixtures/tt1401252 +1109 -0
- data/spec/imdb/cli_spec.rb +1 -1
- data/spec/imdb/movie_spec.rb +35 -13
- data/spec/imdb/search_spec.rb +2 -2
- data/spec/spec_helper.rb +15 -14
- metadata +62 -31
- data/VERSION +0 -1
- data/spec/fixtures/search_matrix_revolutions +0 -14
- data/spec/fixtures/tt1352369 +0 -1193
- data/spec/imdb/imdb_spec.rb +0 -10
data/spec/imdb/cli_spec.rb
CHANGED
@@ -35,7 +35,7 @@ describe Imdb::CLI, "execute" do
|
|
35
35
|
describe "yield one movie with an URL" do
|
36
36
|
before(:each) do
|
37
37
|
@stdout_io = StringIO.new
|
38
|
-
Imdb::CLI.execute(@stdout_io, ["http://
|
38
|
+
Imdb::CLI.execute(@stdout_io, ["http://akas.imdb.com/title/tt0117731/"])
|
39
39
|
@stdout_io.rewind
|
40
40
|
@stdout = @stdout_io.read
|
41
41
|
end
|
data/spec/imdb/movie_spec.rb
CHANGED
@@ -2,7 +2,7 @@ require File.dirname(__FILE__) + '/../spec_helper.rb'
|
|
2
2
|
|
3
3
|
# This test uses "Die hard (1988)" as a testing sample:
|
4
4
|
#
|
5
|
-
# http://
|
5
|
+
# http://akas.imdb.com/title/tt0095016/combined
|
6
6
|
#
|
7
7
|
|
8
8
|
describe "Imdb::Movie" do
|
@@ -34,8 +34,16 @@ describe "Imdb::Movie" do
|
|
34
34
|
|
35
35
|
it 'should return the imdb actor number for each cast member' do
|
36
36
|
@movie.cast_member_ids.sort.should == [
|
37
|
-
"nm0000246", "
|
38
|
-
"
|
37
|
+
"nm0000246", "nm0000614", "nm0000889", "nm0000952", "nm0001108", "nm0001817", "nm0005598",
|
38
|
+
"nm0033749", "nm0040472", "nm0048326", "nm0072054", "nm0094770", "nm0101088", "nm0112505",
|
39
|
+
"nm0112779", "nm0119594", "nm0127960", "nm0142420", "nm0160690", "nm0162041", "nm0234426",
|
40
|
+
"nm0236525", "nm0239958", "nm0278010", "nm0296791", "nm0319739", "nm0322339", "nm0324231",
|
41
|
+
"nm0326276", "nm0338808", "nm0356114", "nm0370729", "nm0383487", "nm0416429", "nm0421114",
|
42
|
+
"nm0441665", "nm0484360", "nm0484650", "nm0493493", "nm0502959", "nm0503610", "nm0504342",
|
43
|
+
"nm0539639", "nm0546076", "nm0546747", "nm0662568", "nm0669625", "nm0681604", "nm0687270",
|
44
|
+
"nm0688235", "nm0718021", "nm0731114", "nm0748041", "nm0776208", "nm0793363", "nm0852311",
|
45
|
+
"nm0870729", "nm0882139", "nm0902455", "nm0907234", "nm0924636", "nm0936591", "nm0958105",
|
46
|
+
"nm2476262", "nm2565888"
|
39
47
|
].sort
|
40
48
|
end
|
41
49
|
end
|
@@ -51,8 +59,6 @@ describe "Imdb::Movie" do
|
|
51
59
|
|
52
60
|
genres.should be_an(Array)
|
53
61
|
genres.should include('Action')
|
54
|
-
genres.should include('Crime')
|
55
|
-
genres.should include('Drama')
|
56
62
|
genres.should include('Thriller')
|
57
63
|
end
|
58
64
|
|
@@ -65,6 +71,17 @@ describe "Imdb::Movie" do
|
|
65
71
|
languages.should include('German')
|
66
72
|
languages.should include('Italian')
|
67
73
|
end
|
74
|
+
|
75
|
+
it "should find the countries" do
|
76
|
+
# The Dark Knight (2008)
|
77
|
+
@movie = Imdb::Movie.new("0468569")
|
78
|
+
countries = @movie.countries
|
79
|
+
|
80
|
+
countries.should be_an(Array)
|
81
|
+
countries.size.should eql(2)
|
82
|
+
countries.should include('USA')
|
83
|
+
countries.should include('UK')
|
84
|
+
end
|
68
85
|
|
69
86
|
it "should find the length (in minutes)" do
|
70
87
|
@movie.length.should eql(131)
|
@@ -82,6 +99,10 @@ describe "Imdb::Movie" do
|
|
82
99
|
@movie.rating.should eql(8.3)
|
83
100
|
end
|
84
101
|
|
102
|
+
it "should find number of votes" do
|
103
|
+
@movie.votes.should be_close(210000, 100000)
|
104
|
+
end
|
105
|
+
|
85
106
|
it "should find the title" do
|
86
107
|
@movie.title.should =~ /Die Hard/
|
87
108
|
end
|
@@ -123,19 +144,19 @@ describe "Imdb::Movie" do
|
|
123
144
|
describe "plot" do
|
124
145
|
it "should find a correct plot when HTML links are present" do
|
125
146
|
movie = Imdb::Movie.new("0083987")
|
126
|
-
movie.plot.should eql("Biography of Mahatma Gandhi, the lawyer who became the famed leader of the Indian revolts against the British through his philosophy of non-violent protest.")
|
147
|
+
movie.plot.should eql("Biography of 'Mahatma Gandhi' , the lawyer who became the famed leader of the Indian revolts against the British rule through his philosophy of non-violent protest.")
|
127
148
|
end
|
128
149
|
|
129
150
|
it "should not have a 'more' link in the plot" do
|
130
151
|
movie = Imdb::Movie.new("0036855")
|
131
|
-
movie.plot.should eql("
|
152
|
+
movie.plot.should eql("Years after her aunt was murdered in her home, a young woman moves back into the house with her new husband. However, he has a secret which he will do anything to protect, even if that means driving his wife insane.")
|
132
153
|
end
|
133
154
|
end
|
134
155
|
|
135
156
|
describe "mpaa rating" do
|
136
157
|
it "should find the mpaa rating when present" do
|
137
158
|
movie = Imdb::Movie.new("0111161")
|
138
|
-
movie.mpaa_rating.should == "Rated R for language and prison violence
|
159
|
+
movie.mpaa_rating.should == "Rated R for language and prison violence (certificate 33087)"
|
139
160
|
end
|
140
161
|
|
141
162
|
it "should be nil when not present" do
|
@@ -147,16 +168,16 @@ describe "Imdb::Movie" do
|
|
147
168
|
describe "with no submitted poster" do
|
148
169
|
|
149
170
|
before(:each) do
|
150
|
-
#
|
151
|
-
@movie = Imdb::Movie.new("
|
171
|
+
# Up Is Down (1969)
|
172
|
+
@movie = Imdb::Movie.new("1401252")
|
152
173
|
end
|
153
174
|
|
154
175
|
it "should have a title" do
|
155
|
-
@movie.title(true).should =~ /
|
176
|
+
@movie.title(true).should =~ /Up Is Down/
|
156
177
|
end
|
157
178
|
|
158
179
|
it "should have a year" do
|
159
|
-
@movie.year.should eql(
|
180
|
+
@movie.year.should eql(1969)
|
160
181
|
end
|
161
182
|
|
162
183
|
it "should return nil as poster url" do
|
@@ -165,7 +186,8 @@ describe "Imdb::Movie" do
|
|
165
186
|
|
166
187
|
it "should return the release date for movies" do
|
167
188
|
movie = Imdb::Movie.new('0111161')
|
168
|
-
|
189
|
+
# FIXME: this date is geo-localized, leading to false positives
|
190
|
+
movie.release_date.should eql("2 March 1995 (Netherlands)")
|
169
191
|
end
|
170
192
|
end
|
171
193
|
|
data/spec/imdb/search_spec.rb
CHANGED
@@ -42,7 +42,7 @@ end
|
|
42
42
|
describe "Imdb::Search with an exact match" do
|
43
43
|
|
44
44
|
before(:each) do
|
45
|
-
@search = Imdb::Search.new("
|
45
|
+
@search = Imdb::Search.new("I killed my lesbian wife")
|
46
46
|
end
|
47
47
|
|
48
48
|
it "should find one result" do
|
@@ -50,6 +50,6 @@ describe "Imdb::Search with an exact match" do
|
|
50
50
|
end
|
51
51
|
|
52
52
|
it "should have the corrected title" do
|
53
|
-
@search.movies.first.title.should =~ /
|
53
|
+
@search.movies.first.title.should =~ /I Killed My Lesbian Wife/i
|
54
54
|
end
|
55
55
|
end
|
data/spec/spec_helper.rb
CHANGED
@@ -24,20 +24,21 @@ def read_fixture(path)
|
|
24
24
|
end
|
25
25
|
|
26
26
|
IMDB_SAMPLES = {
|
27
|
-
"http://
|
28
|
-
"http://
|
29
|
-
"http://
|
30
|
-
"http://
|
31
|
-
"http://
|
32
|
-
"http://
|
33
|
-
"http://
|
34
|
-
"http://
|
35
|
-
"http://
|
36
|
-
"http://
|
37
|
-
"http://
|
38
|
-
"http://
|
39
|
-
"http://
|
40
|
-
"http://
|
27
|
+
"http://akas.imdb.com:80/find?q=Kannethirey+Thondrinal;s=tt" => "search_kannethirey_thondrinal",
|
28
|
+
"http://akas.imdb.com/title/tt0330508/?fr=c2M9MXxsbT01MDB8ZmI9dXx0dD0xfG14PTIwfGh0bWw9MXxjaD0xfGNvPTF8cG49MHxmdD0xfGt3PTF8cXM9S2FubmV0aGlyZXkgVGhvbmRyaW5hbHxzaXRlPWFrYXxxPUthbm5ldGhpcmV5IFRob25kcmluYWx8bm09MQ__;fc=1;ft=1" => "tt0330508",
|
29
|
+
"http://akas.imdb.com:80/find?q=I+killed+my+lesbian+wife;s=tt" => "search_killed_wife",
|
30
|
+
"http://akas.imdb.com:80/find?q=Star+Trek;s=tt" => "search_star_trek",
|
31
|
+
"http://akas.imdb.com:80/title/tt0117731/combined" => "tt0117731",
|
32
|
+
"http://akas.imdb.com:80/title/tt0095016/combined" => "tt0095016",
|
33
|
+
"http://akas.imdb.com:80/title/tt0242653/combined" => "tt0242653",
|
34
|
+
"http://akas.imdb.com/title/tt0166222/?fr=c2M9MXxsbT01MDB8ZmI9dXx0dD0xfG14PTIwfGh0bWw9MXxjaD0xfGNvPTF8cG49MHxmdD0xfGt3PTF8cXM9SSBraWxsZWQgbXkgbGVzYmlhbiB3aWZlfHNpdGU9YWthfHE9SSBraWxsZWQgbXkgbGVzYmlhbiB3aWZlfG5tPTE_;fc=1;ft=7" => "tt0166222",
|
35
|
+
"http://akas.imdb.com:80/chart/top" => "top_250",
|
36
|
+
"http://akas.imdb.com/title/tt0111161/combined" => "tt0111161",
|
37
|
+
"http://akas.imdb.com/title/tt1401252/combined" => "tt1401252",
|
38
|
+
"http://akas.imdb.com/title/tt0083987/combined" => "tt0083987",
|
39
|
+
"http://akas.imdb.com/title/tt0036855/combined" => "tt0036855",
|
40
|
+
"http://akas.imdb.com/title/tt0110912/combined" => "tt0110912",
|
41
|
+
"http://akas.imdb.com/title/tt0468569/combined" => "tt0468569",
|
41
42
|
}
|
42
43
|
|
43
44
|
unless ENV['LIVE_TEST']
|
metadata
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: imdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 11
|
5
|
+
prerelease:
|
5
6
|
segments:
|
6
7
|
- 0
|
7
8
|
- 6
|
8
|
-
-
|
9
|
-
version: 0.6.
|
9
|
+
- 6
|
10
|
+
version: 0.6.6
|
10
11
|
platform: ruby
|
11
12
|
authors:
|
12
13
|
- Ariejan de Vroom
|
@@ -14,74 +15,84 @@ autorequire:
|
|
14
15
|
bindir: bin
|
15
16
|
cert_chain: []
|
16
17
|
|
17
|
-
date:
|
18
|
-
default_executable: imdb
|
18
|
+
date: 2011-09-14 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
|
-
name:
|
21
|
+
name: hpricot
|
22
22
|
prerelease: false
|
23
23
|
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
24
25
|
requirements:
|
25
26
|
- - ">="
|
26
27
|
- !ruby/object:Gem::Version
|
28
|
+
hash: 61
|
27
29
|
segments:
|
28
30
|
- 0
|
29
|
-
|
30
|
-
|
31
|
+
- 8
|
32
|
+
- 1
|
33
|
+
version: 0.8.1
|
34
|
+
type: :runtime
|
31
35
|
version_requirements: *id001
|
32
36
|
- !ruby/object:Gem::Dependency
|
33
|
-
name:
|
37
|
+
name: rdoc
|
34
38
|
prerelease: false
|
35
39
|
requirement: &id002 !ruby/object:Gem::Requirement
|
40
|
+
none: false
|
36
41
|
requirements:
|
37
42
|
- - ">="
|
38
43
|
- !ruby/object:Gem::Version
|
44
|
+
hash: 3
|
39
45
|
segments:
|
40
46
|
- 0
|
41
|
-
|
42
|
-
|
43
|
-
version: 0.8.1
|
44
|
-
type: :runtime
|
47
|
+
version: "0"
|
48
|
+
type: :development
|
45
49
|
version_requirements: *id002
|
46
50
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
51
|
+
name: rspec
|
48
52
|
prerelease: false
|
49
53
|
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
50
55
|
requirements:
|
51
|
-
- -
|
56
|
+
- - ~>
|
52
57
|
- !ruby/object:Gem::Version
|
58
|
+
hash: 31
|
53
59
|
segments:
|
54
|
-
-
|
55
|
-
|
60
|
+
- 1
|
61
|
+
- 3
|
62
|
+
- 2
|
63
|
+
version: 1.3.2
|
56
64
|
type: :development
|
57
65
|
version_requirements: *id003
|
58
66
|
- !ruby/object:Gem::Dependency
|
59
|
-
name:
|
67
|
+
name: fakeweb
|
60
68
|
prerelease: false
|
61
69
|
requirement: &id004 !ruby/object:Gem::Requirement
|
70
|
+
none: false
|
62
71
|
requirements:
|
63
72
|
- - ">="
|
64
73
|
- !ruby/object:Gem::Version
|
74
|
+
hash: 3
|
65
75
|
segments:
|
66
76
|
- 0
|
67
77
|
version: "0"
|
68
78
|
type: :development
|
69
79
|
version_requirements: *id004
|
70
80
|
description: Easily use Ruby or the command line to find information on IMDB.com.
|
71
|
-
email:
|
81
|
+
email:
|
82
|
+
- ariejan@ariejan.net
|
72
83
|
executables:
|
73
84
|
- imdb
|
74
85
|
extensions: []
|
75
86
|
|
76
|
-
extra_rdoc_files:
|
77
|
-
|
87
|
+
extra_rdoc_files: []
|
88
|
+
|
78
89
|
files:
|
79
90
|
- .gitignore
|
91
|
+
- Gemfile
|
80
92
|
- History.txt
|
81
93
|
- Manifest.txt
|
82
94
|
- README.rdoc
|
83
95
|
- Rakefile
|
84
|
-
- VERSION
|
85
96
|
- bin/imdb
|
86
97
|
- config/website.yml
|
87
98
|
- imdb.gemspec
|
@@ -92,11 +103,12 @@ files:
|
|
92
103
|
- lib/imdb/search.rb
|
93
104
|
- lib/imdb/string_extensions.rb
|
94
105
|
- lib/imdb/top_250.rb
|
106
|
+
- lib/imdb/version.rb
|
95
107
|
- script/console
|
96
108
|
- script/destroy
|
97
109
|
- script/generate
|
98
110
|
- spec/fixtures/search_kannethirey_thondrinal
|
99
|
-
- spec/fixtures/
|
111
|
+
- spec/fixtures/search_killed_wife
|
100
112
|
- spec/fixtures/search_star_trek
|
101
113
|
- spec/fixtures/top_250
|
102
114
|
- spec/fixtures/tt0036855
|
@@ -105,11 +117,12 @@ files:
|
|
105
117
|
- spec/fixtures/tt0110912
|
106
118
|
- spec/fixtures/tt0111161
|
107
119
|
- spec/fixtures/tt0117731
|
120
|
+
- spec/fixtures/tt0166222
|
108
121
|
- spec/fixtures/tt0242653
|
109
122
|
- spec/fixtures/tt0330508
|
110
|
-
- spec/fixtures/
|
123
|
+
- spec/fixtures/tt0468569
|
124
|
+
- spec/fixtures/tt1401252
|
111
125
|
- spec/imdb/cli_spec.rb
|
112
|
-
- spec/imdb/imdb_spec.rb
|
113
126
|
- spec/imdb/movie_spec.rb
|
114
127
|
- spec/imdb/search_spec.rb
|
115
128
|
- spec/imdb/top_250_spec.rb
|
@@ -117,40 +130,58 @@ files:
|
|
117
130
|
- spec/spec_helper.rb
|
118
131
|
- tasks/fixtures.rake
|
119
132
|
- tasks/rspec.rake
|
120
|
-
has_rdoc: true
|
121
133
|
homepage: http://github.com/ariejan/imdb
|
122
134
|
licenses: []
|
123
135
|
|
124
136
|
post_install_message:
|
125
|
-
rdoc_options:
|
126
|
-
|
137
|
+
rdoc_options: []
|
138
|
+
|
127
139
|
require_paths:
|
128
140
|
- lib
|
129
141
|
required_ruby_version: !ruby/object:Gem::Requirement
|
142
|
+
none: false
|
130
143
|
requirements:
|
131
144
|
- - ">="
|
132
145
|
- !ruby/object:Gem::Version
|
146
|
+
hash: 3
|
133
147
|
segments:
|
134
148
|
- 0
|
135
149
|
version: "0"
|
136
150
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
151
|
+
none: false
|
137
152
|
requirements:
|
138
153
|
- - ">="
|
139
154
|
- !ruby/object:Gem::Version
|
155
|
+
hash: 3
|
140
156
|
segments:
|
141
157
|
- 0
|
142
158
|
version: "0"
|
143
159
|
requirements: []
|
144
160
|
|
145
|
-
rubyforge_project:
|
146
|
-
rubygems_version: 1.
|
161
|
+
rubyforge_project: imdb
|
162
|
+
rubygems_version: 1.8.5
|
147
163
|
signing_key:
|
148
164
|
specification_version: 3
|
149
165
|
summary: Easily access the publicly available information on IMDB.
|
150
166
|
test_files:
|
167
|
+
- spec/fixtures/search_kannethirey_thondrinal
|
168
|
+
- spec/fixtures/search_killed_wife
|
169
|
+
- spec/fixtures/search_star_trek
|
170
|
+
- spec/fixtures/top_250
|
171
|
+
- spec/fixtures/tt0036855
|
172
|
+
- spec/fixtures/tt0083987
|
173
|
+
- spec/fixtures/tt0095016
|
174
|
+
- spec/fixtures/tt0110912
|
175
|
+
- spec/fixtures/tt0111161
|
176
|
+
- spec/fixtures/tt0117731
|
177
|
+
- spec/fixtures/tt0166222
|
178
|
+
- spec/fixtures/tt0242653
|
179
|
+
- spec/fixtures/tt0330508
|
180
|
+
- spec/fixtures/tt0468569
|
181
|
+
- spec/fixtures/tt1401252
|
151
182
|
- spec/imdb/cli_spec.rb
|
152
|
-
- spec/imdb/imdb_spec.rb
|
153
183
|
- spec/imdb/movie_spec.rb
|
154
184
|
- spec/imdb/search_spec.rb
|
155
185
|
- spec/imdb/top_250_spec.rb
|
186
|
+
- spec/spec.opts
|
156
187
|
- spec/spec_helper.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.6.5
|
@@ -1,14 +0,0 @@
|
|
1
|
-
HTTP/1.1 302 Found
|
2
|
-
Date: Tue, 09 Mar 2010 18:43:51 GMT
|
3
|
-
Server: Server
|
4
|
-
Cache-Control: private
|
5
|
-
Location: http://www.imdb.com/title/tt0242653/?fr=c2M9MXxsbT01MDB8ZmI9dXx0dD0xfG14PTIwfGh0bWw9MXxjaD0xfGNvPTF8cG49MHxmdD0xfGt3PTF8cXM9TWF0cml4IFJldm9sdXRpb25zfHNpdGU9ZGZ8cT1NYXRyaXggUmV2b2x1dGlvbnN8bm09MQ__;fc=1;ft=20
|
6
|
-
Cneonction: close
|
7
|
-
Content-Type: text/plain
|
8
|
-
Set-Cookie: session-id=66.49.247.123.1268160231609211; path=/; domain=.imdb.com
|
9
|
-
Set-Cookie: uu=BtA9mU8DwLP36PVPWLZKpAEwXGInphxiBJUPIVS1b+RENXoxVOA/8UQ1f0QXB3s1d5BqNNS2HGIklS9hFIV/4Re2vME3hhxiIfBKgmemHCUUppRyJIUPASSFf+E0trzBNMUfQRSFf+E3lrzBN4YcYieAWvJkthxiJOV/ARSFf+EHtrzBN4YcYiemHCJn9mxSI=;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
10
|
-
Vary: Accept-Encoding,User-Agent
|
11
|
-
P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="IMDB "
|
12
|
-
Content-Length: 0
|
13
|
-
nnCoection: close
|
14
|
-
|
data/spec/fixtures/tt1352369
DELETED
@@ -1,1193 +0,0 @@
|
|
1
|
-
HTTP/1.1 200 OK
|
2
|
-
Date: Tue, 09 Mar 2010 18:43:43 GMT
|
3
|
-
Server: Server
|
4
|
-
Cache-Control: private
|
5
|
-
Content-Type: text/html
|
6
|
-
Set-Cookie: session-id=66.49.247.123.1268160223950062; path=/; domain=.imdb.com
|
7
|
-
Set-Cookie: uu=glzUdLfuTIkT2Lt2QT7UGgEwXGInphxiBJAqcVS1KjRENXokROA/8UH1j/R3B3s1d5BqNNSWHGIklS9hBIV/4Re2vME3hhxiIfBKgmemHCUUppRyJIUPASSFf+E0lrzBNMUfQQSFf+E3lrzBN4YcYieAWvJklhxiJOV/AQSFf+EHtrzBN4YcYiemHCJn9mxSI=;expires=Thu, 30 Dec 2037 00:00:00 GMT;path=/;domain=.imdb.com
|
8
|
-
Set-Cookie: cs=7/VA2Ves1Pd6F5h+FB+uKwiOAiSO2RITtsmaRI36MRQNWgFHjnoBB+7ZEhQoWVIEjtkkY9u8MiSIPeajjVokR6mZspce2SSyblESJI7vJDOO2RIkjvkSJI7ZEmTOiWIUg=;expires=Wed, 10 Mar 2010 08:00:00 GMT;path=/;domain=.imdb.com
|
9
|
-
Vary: Accept-Encoding,User-Agent
|
10
|
-
P3P: policyref="http://i.imdb.com/images/p3p.xml",CP="IMDB "
|
11
|
-
nnCoection: close
|
12
|
-
Transfer-Encoding: chunked
|
13
|
-
|
14
|
-
|
15
|
-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
16
|
-
|
17
|
-
<html>
|
18
|
-
<head>
|
19
|
-
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
|
20
|
-
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
21
|
-
<script type="text/javascript">var IMDbTimer={starttime: new Date().getTime()};</script>
|
22
|
-
<title>Gurotesuku (2009)</title>
|
23
|
-
<link rel="canonical" href="http://www.imdb.com/title/tt1352369/" />
|
24
|
-
<meta name="title" content="Gurotesuku (2009)">
|
25
|
-
<meta name="description" content="Directed by Kôji Shiraishi. With Tsugumi Nagasawa, Hiroaki Kawatsure, Shigeo Ôsako. Visit IMDb for Photos, Showtimes, Cast, Crew, Reviews, Plot Summary, Comments, Discussions, Taglines, Trailers, Posters, Fan Sites">
|
26
|
-
|
27
|
-
<meta name="keywords" content="Reviews, Showtimes, DVDs, Photos, Message Boards, User Ratings, Synopsis, Trailers, Credits">
|
28
|
-
<link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF68e4ec09e9f61f5270c18fca11580ab1/css2/consumersite.css" />
|
29
|
-
<link rel="icon" href="http://i.imdb.com/favicon.ico" />
|
30
|
-
<link rel="apple-touch-icon" href="http://i.media-imdb.com/apple-touch-icon.png" />
|
31
|
-
<style type="text/css">.showtimes { font-family: Arial, Helvetica, sans-serif }.showtimes .heading { font-size: 16px; font-weight: bold }.showtimes .time { color: #ff0000 }.tabular { border-collapse: collapse; border: 1px solid #9999ff }.tabular td.heading { background: #bbbbff }.tabular td.heading-right { background: #bbbbff; text-align: right; font-size: small }.tabular td.address { font-size: small; color: #666666; background: #eeeeee }.tabular td.detail { font-size: small; background: #eeeeee }.tabular tr.alternate { background: #eeeeee }.tabular td.item { border: 1px solid #9999ff }</style><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF64f4cb13e245a4e2c151ec8dd801c4f0/tn15/tn15.css" /><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF2c5dce2917d4175181715950fcd7f318/css2/site/consumer-vote.css" /><script type="text/javascript" src="http://i.media-imdb.com/images/SF72867cac47f3d7e883837477537ab0a1/js/vote.js" /></script><script type="text/javascript">var __vkey = 'f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX';var __vrtg = '4.8';</script>
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
<link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF8a1b7906fdc52a345e61b3d4599feaf7/wheel/base.css" />
|
58
|
-
|
59
|
-
<link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF4981e17ab2dc319033d13783b64f2aaf/wheel/widgets.css" />
|
60
|
-
<link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF30776d9ce9eaf446e614d17344ca59a7/wheel/layout.css" />
|
61
|
-
|
62
|
-
<!--[if IE]>
|
63
|
-
<link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF6c486df5f1b533d141b118846b74341b/wheel/ie.css" />
|
64
|
-
<![endif]-->
|
65
|
-
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF41f82c0c403aef9feb708e266a7fdfbe/wheel/fixed.css" />
|
66
|
-
<!-- start m/s/a/_g_a_s , head -->
|
67
|
-
<script type="text/javascript" src="http://i.media-imdb.com/images/SF476ce466f51f14e13ec3381a0969fda8/a/js/ads.js"></script>
|
68
|
-
<script type="text/javascript">
|
69
|
-
generic.monitoring.set_twilight_info(
|
70
|
-
"title",
|
71
|
-
"Other",
|
72
|
-
"7cce81bab6b4de872ef907050d000ae203a8eec7",
|
73
|
-
"2010-03-09T18%3A43%3A43GMT",
|
74
|
-
"http://s.media-imdb.com/twilight/?");
|
75
|
-
|
76
|
-
generic.monitoring.start_timing("page_load");
|
77
|
-
|
78
|
-
generic.cache.set('aan',{
|
79
|
-
type:"js",
|
80
|
-
url:("http://aan.amazon.com/2009-05-01/imdb/default?slot=sitewide-iframe&ord=[CLIENT_SIDE_ORD]").replace(ad_utils.ord_regex, ad_utils.ord),
|
81
|
-
onCall:custom.amazon.aan_iframe_oncall
|
82
|
-
});
|
83
|
-
|
84
|
-
generic.cache.set('fc',{
|
85
|
-
type:"swf",
|
86
|
-
url:"http://ia.media-imdb.com/images/M/MV5BMjE3MDUyNTMyN15BMl5Bc3dmXkFtZTcwNDk1MjUxMw@@._V1_.swf"
|
87
|
-
});
|
88
|
-
</script>
|
89
|
-
<!-- end m/s/a/_g_a_s , head -->
|
90
|
-
|
91
|
-
</head>
|
92
|
-
|
93
|
-
<body bgcolor="#ffffff" text="#000000" id="styleguide-v2" class="fixed">
|
94
|
-
<!-- start m/s/a/_g_a_s , body -->
|
95
|
-
<iframe src="/images/SFfcfce2d9038a8296b236321c9dbf094e/a/js/scriptloader.html#aan,fc" class="script_loader"
|
96
|
-
allowtransparency="true" marginheight="0" marginwidth="0" scrolling="no" frameborder="0"></iframe>
|
97
|
-
<!-- end m/s/a/_g_a_s , body -->
|
98
|
-
|
99
|
-
<div id="wrapper">
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
<script language="JavaScript" type="text/javascript">ord = ((this.ad_utils) && (this.ad_utils.ord)) ? this.ad_utils.ord : Math.random()*10000000000000000; </script><!-- begin FLOATING1 -->
|
104
|
-
<div id="floating1_wrapper">
|
105
|
-
<script type="text/javascript">
|
106
|
-
ad_utils.queue_ad('1','floating1');
|
107
|
-
</script>
|
108
|
-
<iframe src="/images/SFb73c79d3e365f1c3c3ff02bc85d516ed/a/ifb/doubleclick/expand.html#imdb2.consumer.title/maindetails;tile=1;sz=1x1,4x1;p=f1;ifb=pf;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;[PASEGMENTS];ord=[CLIENT_SIDE_ORD]?" id="floating1" name="floating1" class="yesScript" width="0" height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.resize_iframe(this)"></iframe>
|
109
|
-
|
110
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=1;sz=1x1,4x1;p=f1;ifb=pf;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=1;sz=1x1,4x1;p=f1;ifb=pf;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" border="0" alt="advertisement" /></a></noscript>
|
111
|
-
|
112
|
-
</div>
|
113
|
-
<!-- End FLOATING1 -->
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
<div id="root">
|
119
|
-
<layer name="root">
|
120
|
-
|
121
|
-
<div id="nb20">
|
122
|
-
<div id="supertab">
|
123
|
-
|
124
|
-
|
125
|
-
<!-- begin TOP_AD -->
|
126
|
-
<div id="top_ad_wrapper">
|
127
|
-
<script type="text/javascript">
|
128
|
-
ad_utils.queue_ad('2','top_ad');
|
129
|
-
</script>
|
130
|
-
<iframe src="/images/SFb73c79d3e365f1c3c3ff02bc85d516ed/a/ifb/doubleclick/expand.html#imdb2.consumer.title/maindetails;tile=2;sz=728x90,1008x150,1008x200,9x1;p=t;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;[PASEGMENTS];ord=[CLIENT_SIDE_ORD]?" id="top_ad" name="top_ad" class="yesScript" width="0" height="75" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.resize_iframe(this)"></iframe>
|
131
|
-
|
132
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=2;sz=728x90,1008x150,1008x200,9x1;p=t;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=2;sz=728x90,1008x150,1008x200,9x1;p=t;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" border="0" alt="advertisement" /></a></noscript>
|
133
|
-
|
134
|
-
</div>
|
135
|
-
<!-- End TOP_AD -->
|
136
|
-
</div>
|
137
|
-
<div id="navbar">
|
138
|
-
<link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SF4684457c96077196f17fa90dc77650c2/css2/site/consumer-navbar.css">
|
139
|
-
<noscript><link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFead09969ad98114020e0af7cdf34fd4e/css2/site/consumer-navbar-no-js.css"></noscript>
|
140
|
-
<!--[if IE]> <link rel="stylesheet" type="text/css" href="http://i.media-imdb.com/images/SFc6b3024b6b61d0874c8af3d356d2281e/css2/site/consumer-navbar-ie.css"><![endif]-->
|
141
|
-
<span id="home_img_holder"><a id="home_img" title="Home" alt="Home" href="/" onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=/'"></a><span class="alt_logo"><a title="Home" href="/" onclick="(new Image()).src='/rg/home/navbar/images/b.gif?link=/'"">IMDb</a></span></span>
|
142
|
-
<script type="text/javascript">
|
143
|
-
var home_img_holder = document.getElementById("home_img_holder");
|
144
|
-
home_img_holder.onmouseover = function() {
|
145
|
-
this.className = "hover";
|
146
|
-
}
|
147
|
-
|
148
|
-
home_img_holder.onmouseout = function() {
|
149
|
-
this.className = "";
|
150
|
-
}
|
151
|
-
</script>
|
152
|
-
<form method="get" action="/find" onsubmit="(new Image()).src='/rg/SEARCH-BOX/HEADER/images/b.gif?link=/find';">
|
153
|
-
<div id="nb_search">
|
154
|
-
<a href="/search/"><strong>Search</strong></a>
|
155
|
-
|
156
|
-
<select id="quicksearch" name="s" onchange="jumpMenu(this)">
|
157
|
-
<option value="all">All</option>
|
158
|
-
<option value="tt">Titles</option>
|
159
|
-
<option value="ep">TV Episodes</option>
|
160
|
-
<option value="nm">Names</option>
|
161
|
-
<option value="co">Companies</option>
|
162
|
-
<option value="kw">Keywords</option>
|
163
|
-
<option value="ch">Characters</option>
|
164
|
-
<option value="vi">Videos</option>
|
165
|
-
<option value="qu">Quotes</option>
|
166
|
-
<option value="bi">Bios</option>
|
167
|
-
<option value="pl">Plots</option>
|
168
|
-
</select>
|
169
|
-
<script type="text/javascript">
|
170
|
-
var advancedSearchOption = document.createElement("option");
|
171
|
-
advancedSearchOption.className = "advancedSearch";
|
172
|
-
advancedSearchOption.setAttribute("value", "/search/");
|
173
|
-
advancedSearchOption.innerHTML = "Advanced Search»";
|
174
|
-
document.getElementById('quicksearch').appendChild(advancedSearchOption);
|
175
|
-
|
176
|
-
function jumpMenu(selObj) {
|
177
|
-
var myIndex = selObj.selectedIndex;
|
178
|
-
var myObj = selObj[myIndex];
|
179
|
-
if ("advancedSearch" == selObj[myIndex].className) {
|
180
|
-
selObj.selectedIndex = 0;
|
181
|
-
document.location= myObj.value;
|
182
|
-
}
|
183
|
-
}
|
184
|
-
</script>
|
185
|
-
<input name="q" type="text" value=""/> <button class="nb_primary" type="submit">Go</button><noscript> <a href="/search/">More</a></noscript>
|
186
|
-
</div>
|
187
|
-
</form>
|
188
|
-
<div id="nb_personal">
|
189
|
-
<a href="/register/?why=personalize" onclick="(new Image()).src='/rg/register/navbar/images/b.gif?link=/register/?why=personalize'">Register</a> | <a href="/register/login" onclick="(new Image()).src='/rg/login/navbar/images/b.gif?link=/register/login'">Login</a>
|
190
|
-
| <a href="/help/" onclick="(new Image()).src='/rg/help/navbar/images/b.gif?link=/help/'">Help</a>
|
191
|
-
</div>
|
192
|
-
<div >
|
193
|
-
<ul id="main_nav" class="no-js main_nav">
|
194
|
-
<li>
|
195
|
-
<a href="/nowplaying/" onclick="(new Image()).src='/rg/movies/navbar/images/b.gif?link=/nowplaying/'" class="nb_link">Movies</a>
|
196
|
-
<ul class="sub_nav">
|
197
|
-
<li><a href="/nowplaying/" onclick="(new Image()).src='/rg/nowplaying/navbar/images/b.gif?link=/nowplaying/'">Now Playing</a></li>
|
198
|
-
<li><a href="/chart/" onclick="(new Image()).src='/rg/topmovies/navbar/images/b.gif?link=/chart/'">Top Movies</a></li>
|
199
|
-
<li><a href="/showtimes/" onclick="(new Image()).src='/rg/showtimes/navbar/images/b.gif?link=/showtimes/'">Showtimes & Tickets</a></li>
|
200
|
-
<li><a href="/features/video/trailers/" onclick="(new Image()).src='/rg/trailers/navbar/images/b.gif?link=/features/video/trailers/'">Trailers</a></li>
|
201
|
-
<li><a href="/mymovies/list" onclick="(new Image()).src='/rg/mymovies/navbar/images/b.gif?link=/mymovies/list'">My Movies</a></li>
|
202
|
-
<li><a href="/sections/dvd/" onclick="(new Image()).src='/rg/dvdbluray/navbar/images/b.gif?link=/sections/dvd/'">DVD & Blu-Ray</a></li>
|
203
|
-
<li><a href="/sections/indie/" onclick="(new Image()).src='/rg/independentfilm/navbar/images/b.gif?link=/sections/indie/'">Independent Film</a></li>
|
204
|
-
<li><a href="/chart/top" onclick="(new Image()).src='/rg/top250/navbar/images/b.gif?link=/chart/top'">Top 250</a></li>
|
205
|
-
<li><a href="/browse/" onclick="(new Image()).src='/rg/browse/navbar/images/b.gif?link=/browse/'">Browse</a></li>
|
206
|
-
<li><a href="/genre" onclick="(new Image()).src='/rg/genres/navbar/images/b.gif?link=/genre'">Genres</a></li>
|
207
|
-
<li><a href="/features/rto/2010/" onclick="(new Image()).src='/rg/roadtotheoscars/navbar/images/b.gif?link=/features/rto/2010/'">Road to the Oscars</a></li>
|
208
|
-
</ul>
|
209
|
-
</li>
|
210
|
-
<li>
|
211
|
-
<a href="/sections/tv/" onclick="(new Image()).src='/rg/tv/navbar/images/b.gif?link=/sections/tv/'" class="nb_link">TV</a>
|
212
|
-
<ul class="sub_nav">
|
213
|
-
<li><a href="/sections/tv/" onclick="(new Image()).src='/rg/tv/navbar/images/b.gif?link=/sections/tv/'">TV Home</a></li>
|
214
|
-
<li><a href="/tvgrid/" onclick="(new Image()).src='/rg/tvlistings/navbar/images/b.gif?link=/tvgrid/'">TV Listings</a></li>
|
215
|
-
<li><a href="/features/video/tv/" onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=/features/video/tv/'">TV Episodes & Clips</a></li>
|
216
|
-
</ul>
|
217
|
-
</li>
|
218
|
-
<li>
|
219
|
-
<a href="/news/top" onclick="(new Image()).src='/rg/news/navbar/images/b.gif?link=/news/top'" class="nb_link">News</a>
|
220
|
-
<ul class="sub_nav">
|
221
|
-
<li><a href="/news/top" onclick="(new Image()).src='/rg/topnews/navbar/images/b.gif?link=/news/top'">Top News</a></li>
|
222
|
-
<li><a href="/news/movie" onclick="(new Image()).src='/rg/movienews/navbar/images/b.gif?link=/news/movie'">Movie News</a></li>
|
223
|
-
<li><a href="/news/tv" onclick="(new Image()).src='/rg/tvnews/navbar/images/b.gif?link=/news/tv'">TV News</a></li>
|
224
|
-
<li><a href="/news/celebrity" onclick="(new Image()).src='/rg/celebritynews/navbar/images/b.gif?link=/news/celebrity'">Celebrity News</a></li>
|
225
|
-
<li><a href="/news/" onclick="(new Image()).src='/rg/featurednews/navbar/images/b.gif?link=/news/'">Featured News</a></li>
|
226
|
-
<li><a href="/photo_galleries/new_photos/2009/index" onclick="(new Image()).src='/rg/imdbsnapshot/navbar/images/b.gif?link=/photo_galleries/new_photos/2009/index'">IMDb Snapshot</a></li>
|
227
|
-
</ul>
|
228
|
-
</li>
|
229
|
-
<li>
|
230
|
-
<a href="/features/video/" onclick="(new Image()).src='/rg/videos/navbar/images/b.gif?link=/features/video/'" class="nb_link">Videos</a>
|
231
|
-
<ul class="sub_nav">
|
232
|
-
<li><a href="/features/video/" onclick="(new Image()).src='/rg/videos2/navbar/images/b.gif?link=/features/video/'">Videos Home</a></li>
|
233
|
-
<li><a href="/features/video/trailers/" onclick="(new Image()).src='/rg/trailers/navbar/images/b.gif?link=/features/video/trailers/'">Trailers</a></li>
|
234
|
-
<li><a href="/features/video/tv/" onclick="(new Image()).src='/rg/tvepisodesandclips/navbar/images/b.gif?link=/features/video/tv/'">TV Episodes & Clips</a></li>
|
235
|
-
<li><a href="/features/video/browse/" onclick="(new Image()).src='/rg/browsevideos/navbar/images/b.gif?link=/features/video/browse/'">Browse Videos</a></li>
|
236
|
-
</ul>
|
237
|
-
</li>
|
238
|
-
<li>
|
239
|
-
<a href="/boards/" onclick="(new Image()).src='/rg/community/navbar/images/b.gif?link=/boards/'" class="nb_link">Community</a>
|
240
|
-
<ul class="sub_nav">
|
241
|
-
<li><a href="/boards/" onclick="(new Image()).src='/rg/boards/navbar/images/b.gif?link=/boards/'">Message Boards</a></li>
|
242
|
-
<li><a href="/czone/" onclick="(new Image()).src='/rg/contributorzone/navbar/images/b.gif?link=/czone/'">Contributor Zone</a></li>
|
243
|
-
</ul>
|
244
|
-
</li>
|
245
|
-
<li>
|
246
|
-
<a href="http://pro.imdb.com/r/imdb-nav-nb/" onclick="(new Image()).src='/rg/imdbprohead/navbar/images/b.gif?link=http://pro.imdb.com/r/imdb-nav-nb/'" class="nb_link">IMDbPro</a>
|
247
|
-
<ul class="sub_nav">
|
248
|
-
<li><a href="http://pro.imdb.com/r/imdb-nav-nb/" onclick="(new Image()).src='/rg/imdbpro/navbar/images/b.gif?link=http://pro.imdb.com/r/imdb-nav-nb/'">IMDbPro</a></li>
|
249
|
-
<li><a href="http://resume.imdb.com/" onclick="(new Image()).src='/rg/resume/navbar/images/b.gif?link=http://resume.imdb.com/'">IMDb Resume</a></li>
|
250
|
-
<li><a href="http://www.imdb.com/licensing/" onclick="(new Image()).src='/rg/contentlicensing/navbar/images/b.gif?link=http://www.imdb.com/licensing/'">Content Licensing</a></li>
|
251
|
-
</ul>
|
252
|
-
</li>
|
253
|
-
</ul>
|
254
|
-
</div>
|
255
|
-
<div class="nb_extra"><a href="/rg/NAV_OSCARS/NAV_EXTRA/features/rto/2010/" onclick="(new Image()).src='/rg/roadtotheoscars/navbar/images/b.gif?link=/rg/NAV_OSCARS/NAV_EXTRA/features/rto/2010/'">Road to the Oscars<sup>®</sup></a></div>
|
256
|
-
</div>
|
257
|
-
</div>
|
258
|
-
<script type="text/javascript" src="http://i.media-imdb.com/images/SFf84dc8673d077c0db8630ccf4488f6ae/js/navbar.js"></script>
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
<!-- sid : 97935 : NAVSTRIP --><script language="JavaScript" src="http://ia.imdb.com/media/imdb/01/J/02"></script>
|
264
|
-
|
265
|
-
<script language="JavaScript">document.writeln(cb4('<style>\r\n.rto2010navstripe a:link, .falltvpreviewdiv a:visited, .falltvpreviewdiv a:hover {\r\n color: #fff !important;\r\n}\r\n\r\n.rto2010navstripe {\r\n font-family: Verdana; font-size: 13px;\r\n}\r\n</style>\r\n\r\n<div class="rto2010navstripe" style="background-image: url(http://ia.media-imdb.com/images/M/MV5BMTI4ODQ0ODk2M15BMl5BZ2lmXkFtZTcwNzU2NTYxMw@@._V1_.gif); width: 1008px; height: 40px;">\r\n\r\n<table width="1008" cellpadding="0" cellspacing="0" align="top"><tr>\r\n\r\n<td width="200"><a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/"><img src="http://i.imdb.com/b.gif" width="200" height="40" border="0"></a></td>\r\n\r\n<td width="399" align="center">\r\n\r\n\r\n<a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/photo_gallery">Oscar Photos</a> \r\n<a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/oscars">List of Winners</a> \r\n<a href="/ri/RTO10_NAVSTRIPE//97935/title/tt1541775/synopsis">Show Recap</a>\r\n\r\n\r\n\r\n</td>\r\n\r\n<td width="230"><a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm3792277248"><img src="http://ia.media-imdb.com/images/M/MV5BMTQ0MTQzMTQ4NV5BMl5BanBnXkFtZTcwMjEzMTMyMw@@._V1._CR0,0,431,431_SS37_.jpg" border="0" style="padding-top: 1px;"></a>\r\n\r\n<a href="/ri/RTG10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_show-rm957124352"><img src="http://ia.media-imdb.com/images/M/MV5BMTMyNTExMjE1NV5BMl5BanBnXkFtZTcwMDcwMjMyMw@@._V1._CR0,0,400,400_SS37_.jpg" border="0" style="padding-top: 1px;"></a>\r\n\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm4144598784"><img src="http://ia.media-imdb.com/images/M/MV5BMTM2MDMwMDIzMV5BMl5BanBnXkFtZTcwMzIzMTMyMw@@._V1._CR0,0,453,453_SS37_.jpg" border="0" style="padding-top: 1px;"></a>\r\n\r\n\r\n\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_show-rm2534117120"><img src="http://ia.media-imdb.com/images/M/MV5BMjk4MTU2MTAyNF5BMl5BanBnXkFtZTcwMzQ5MTMyMw@@._V1._CR0,0,399,399_SS37_.jpg" border="0" style="padding-top: 1px;"></a>\r\n\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm4010381056"><img src="http://ia.media-imdb.com/images/M/MV5BOTEyODE4ODY3MV5BMl5BanBnXkFtZTcwNTEzMTMyMw@@._V1._CR0,0,449,449_SS37_.jpg" border="0" style="padding-top: 1px;"></a>\r\n\r\n<img src="http://ad.doubleclick.net/ad/imdb2.us.sponsor.oscars/;target=oscarstripe;sz=1x1;ord=[timestamp]?" width="1" height="1" border="0" alt="">\r\n\r\n</td>\r\n\r\n<td width="125"><a href="http://ad.doubleclick.net/clk;221563046;45456736;i" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="116" height="40" border="0" /></a></td>\r\n\r\n<td width="52"><a href="/ri/RTG10_NAVSTRIPE//97935/features/rto/2010/" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="50" height="40" border="0" /></a></td></tr></table>\r\n\r\n</div>'));</script>
|
266
|
-
<noscript><style>
|
267
|
-
.rto2010navstripe a:link, .falltvpreviewdiv a:visited, .falltvpreviewdiv a:hover {
|
268
|
-
color: #fff !important;
|
269
|
-
}
|
270
|
-
|
271
|
-
.rto2010navstripe {
|
272
|
-
font-family: Verdana; font-size: 13px;
|
273
|
-
}
|
274
|
-
</style>
|
275
|
-
|
276
|
-
<div class="rto2010navstripe" style="background-image: url(http://ia.media-imdb.com/images/M/MV5BMTI4ODQ0ODk2M15BMl5BZ2lmXkFtZTcwNzU2NTYxMw@@._V1_.gif); width: 1008px; height: 40px;">
|
277
|
-
|
278
|
-
<table width="1008" cellpadding="0" cellspacing="0" align="top"><tr>
|
279
|
-
|
280
|
-
<td width="200"><a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/"><img src="http://i.imdb.com/b.gif" width="200" height="40" border="0"></a></td>
|
281
|
-
|
282
|
-
<td width="399" align="center">
|
283
|
-
|
284
|
-
|
285
|
-
<a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/photo_gallery">Oscar Photos</a>
|
286
|
-
<a href="/ri/RTO10_NAVSTRIPE//97935/features/rto/2010/oscars">List of Winners</a>
|
287
|
-
<a href="/ri/RTO10_NAVSTRIPE//97935/title/tt1541775/synopsis">Show Recap</a>
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
</td>
|
292
|
-
|
293
|
-
<td width="230"><a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm3792277248"><img src="http://ia.media-imdb.com/images/M/MV5BMTQ0MTQzMTQ4NV5BMl5BanBnXkFtZTcwMjEzMTMyMw@@._V1._CR0,0,431,431_SS37_.jpg" border="0" style="padding-top: 1px;"></a>
|
294
|
-
|
295
|
-
<a href="/ri/RTG10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_show-rm957124352"><img src="http://ia.media-imdb.com/images/M/MV5BMTMyNTExMjE1NV5BMl5BanBnXkFtZTcwMDcwMjMyMw@@._V1._CR0,0,400,400_SS37_.jpg" border="0" style="padding-top: 1px;"></a>
|
296
|
-
|
297
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm4144598784"><img src="http://ia.media-imdb.com/images/M/MV5BMTM2MDMwMDIzMV5BMl5BanBnXkFtZTcwMzIzMTMyMw@@._V1._CR0,0,453,453_SS37_.jpg" border="0" style="padding-top: 1px;"></a>
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_show-rm2534117120"><img src="http://ia.media-imdb.com/images/M/MV5BMjk4MTU2MTAyNF5BMl5BanBnXkFtZTcwMzQ5MTMyMw@@._V1._CR0,0,399,399_SS37_.jpg" border="0" style="padding-top: 1px;"></a>
|
302
|
-
|
303
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97935/http://www.imdb.com/features/rto/2010/gallery/10_oscar_arrivals-rm4010381056"><img src="http://ia.media-imdb.com/images/M/MV5BOTEyODE4ODY3MV5BMl5BanBnXkFtZTcwNTEzMTMyMw@@._V1._CR0,0,449,449_SS37_.jpg" border="0" style="padding-top: 1px;"></a>
|
304
|
-
|
305
|
-
<img src="http://ad.doubleclick.net/ad/imdb2.us.sponsor.oscars/;target=oscarstripe;sz=1x1;ord=1268160223?" width="1" height="1" border="0" alt="">
|
306
|
-
|
307
|
-
</td>
|
308
|
-
|
309
|
-
<td width="125"><a href="http://ad.doubleclick.net/clk;221563046;45456736;i" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="116" height="40" border="0" /></a></td>
|
310
|
-
|
311
|
-
<td width="52"><a href="/ri/RTG10_NAVSTRIPE//97935/features/rto/2010/" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="50" height="40" border="0" /></a></td></tr></table>
|
312
|
-
|
313
|
-
</div></noscript>
|
314
|
-
|
315
|
-
|
316
|
-
<div id="pagecontent">
|
317
|
-
|
318
|
-
<div id="tn15" class="maindetails">
|
319
|
-
<div id="tn15crumbs">
|
320
|
-
<a href="/">IMDb</a> >
|
321
|
-
<b>Gurotesuku (2009)</b>
|
322
|
-
</div>
|
323
|
-
<div id="tn15lhs">
|
324
|
-
|
325
|
-
<div class="photo">
|
326
|
-
|
327
|
-
<a href="/rg/action-box-title/title-addposter/publicity/" title="Poster Not Submitted"><img border="0" src="http://i.media-imdb.com/images/SF7bc2889e3c1df344eed933acbd681bd2/intl/en/title_addposter.jpg" width="100" height="140" alt="Poster Not Submitted" title="Poster Not Submitted"></a>
|
328
|
-
|
329
|
-
</div>
|
330
|
-
|
331
|
-
<div id="action-box" class="action-box">
|
332
|
-
|
333
|
-
<p><a href="/rg/action-box-title/own-the-rights/help/show_leaf?uploadyourfilm">Own the rights?</a></p>
|
334
|
-
|
335
|
-
<a class="linkasbutton-secondary disabled" href="#">Buy it at Amazon</a>
|
336
|
-
|
337
|
-
<hr />
|
338
|
-
|
339
|
-
<a class="linkasbutton-secondary" href="/rg/action-box-title/boards-link/title/tt1352369/board">Discuss in Boards</a>
|
340
|
-
<a class="linkasbutton-secondary" href="/rg/action-box-title/pro-link/http://pro.imdb.com/title/tt1352369/">More at IMDb Pro</a>
|
341
|
-
|
342
|
-
<a class="linkasbutton-secondary" href="/rg/action-box-title/add-to-my-movies/mymovies/list?pending&add=1352369">Add to My Movies</a>
|
343
|
-
|
344
|
-
<a class="linkasbutton-secondary" href="/rg/action-box-title/update-data/updates?auto=legacy/title/tt1352369/">Update Data</a>
|
345
|
-
|
346
|
-
</div>
|
347
|
-
|
348
|
-
<h6 style="margin-top: 4px">Quicklinks</h6><form><select id="quicklinks_select" onchange="document.location = this.options[this.selectedIndex].value">
|
349
|
-
<option value="maindetails" selected>main details</option><option value="combined">combined details</option><option value="fullcredits">full cast and crew</option><option value="companycredits">company credits</option><option value="usercomments">usercomments</option><option value="externalreviews">external reviews</option><option value="ratings">user ratings</option><option value="parentalguide">parents guide</option><option value="recommendations">recommendations</option><option value="board">message board</option><option value="keywords">plot keywords</option><option value="trivia">trivia</option><option value="soundtrack">soundtrack listing</option><option value="releaseinfo">release dates</option><option value="technical">technical specs</option><option value="news">NewsDesk</option><option value="taglines">taglines</option><option value="trailers">trailers and videos</option><option value="posters">posters</option><option value="officialsites">official sites</option><option value="miscsites">miscellaneous</option><option value="photosites">photographs</option>
|
350
|
-
</select></form>
|
351
|
-
<h6>Top Links</h6>
|
352
|
-
<a onclick="(new Image()).src='/rg/title-top-links/trailers/images/b.gif?link=/title/tt1352369/trailers';" href="/title/tt1352369/trailers" class="link">trailers and videos</a><a onclick="(new Image()).src='/rg/title-top-links/fullcredits/images/b.gif?link=/title/tt1352369/fullcredits';" href="/title/tt1352369/fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-top-links/trivia/images/b.gif?link=/title/tt1352369/trivia';" href="/title/tt1352369/trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-top-links/officialsites/images/b.gif?link=/title/tt1352369/officialsites';" href="/title/tt1352369/officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-top-links/quotes/images/b.gif?link=/title/tt1352369/quotes';" href="/title/tt1352369/quotes" class="link empty">memorable quotes</a>
|
353
|
-
<h6>Overview</h6>
|
354
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/maindetails/images/b.gif?link=/title/tt1352369/maindetails';"href="maindetails" class="link selected">main details</a><a onclick="(new Image()).src='/rg/title-nav-item/combined/images/b.gif?link=/title/tt1352369/combined';"href="combined" class="link">combined details</a><a onclick="(new Image()).src='/rg/title-nav-item/fullcredits/images/b.gif?link=/title/tt1352369/fullcredits';"href="fullcredits" class="link">full cast and crew</a><a onclick="(new Image()).src='/rg/title-nav-item/companycredits/images/b.gif?link=/title/tt1352369/companycredits';"href="companycredits" class="link">company credits</a><a onclick="(new Image()).src='/rg/title-nav-item/tvschedule/images/b.gif?link=/title/tt1352369/tvschedule';"href="tvschedule" class="link empty">tv schedule</a>
|
355
|
-
<h6>Awards & Reviews</h6>
|
356
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/usercomments/images/b.gif?link=/title/tt1352369/usercomments';"href="usercomments" class="link">user reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/externalreviews/images/b.gif?link=/title/tt1352369/externalreviews';"href="externalreviews" class="link">external reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/newsgroupreviews/images/b.gif?link=/title/tt1352369/newsgroupreviews';"href="newsgroupreviews" class="link empty">newsgroup reviews</a><a onclick="(new Image()).src='/rg/title-nav-item/awards/images/b.gif?link=/title/tt1352369/awards';"href="awards" class="link empty">awards</a><a onclick="(new Image()).src='/rg/title-nav-item/ratings/images/b.gif?link=/title/tt1352369/ratings';"href="ratings" class="link">user ratings</a><a onclick="(new Image()).src='/rg/title-nav-item/parentalguide/images/b.gif?link=/title/tt1352369/parentalguide';"href="parentalguide" class="link">parents guide</a><a onclick="(new Image()).src='/rg/title-nav-item/recommendations/images/b.gif?link=/title/tt1352369/recommendations';"href="recommendations" class="link">recommendations</a><a onclick="(new Image()).src='/rg/title-nav-item/board/images/b.gif?link=/title/tt1352369/board';"href="board" class="link">message board</a>
|
357
|
-
<h6>Plot & Quotes</h6>
|
358
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/plotsummary/images/b.gif?link=/title/tt1352369/plotsummary';"href="plotsummary" class="link empty">plot summary</a><a onclick="(new Image()).src='/rg/title-nav-item/synopsis/images/b.gif?link=/title/tt1352369/synopsis';"href="synopsis" class="link empty">synopsis</a><a onclick="(new Image()).src='/rg/title-nav-item/keywords/images/b.gif?link=/title/tt1352369/keywords';"href="keywords" class="link">plot keywords</a><a onclick="(new Image()).src='/rg/title-nav-item/amazon/images/b.gif?link=/title/tt1352369/amazon';"href="amazon" class="link empty">Amazon.com summary</a><a onclick="(new Image()).src='/rg/title-nav-item/quotes/images/b.gif?link=/title/tt1352369/quotes';"href="quotes" class="link empty">memorable quotes</a>
|
359
|
-
<h6>Fun Stuff</h6>
|
360
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/trivia/images/b.gif?link=/title/tt1352369/trivia';"href="trivia" class="link">trivia</a><a onclick="(new Image()).src='/rg/title-nav-item/goofs/images/b.gif?link=/title/tt1352369/goofs';"href="goofs" class="link empty">goofs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundtrack/images/b.gif?link=/title/tt1352369/soundtrack';"href="soundtrack" class="link">soundtrack listing</a><a onclick="(new Image()).src='/rg/title-nav-item/crazycredits/images/b.gif?link=/title/tt1352369/crazycredits';"href="crazycredits" class="link empty">crazy credits</a><a onclick="(new Image()).src='/rg/title-nav-item/alternateversions/images/b.gif?link=/title/tt1352369/alternateversions';"href="alternateversions" class="link empty">alternate versions</a><a onclick="(new Image()).src='/rg/title-nav-item/movieconnections/images/b.gif?link=/title/tt1352369/movieconnections';"href="movieconnections" class="link empty">movie connections</a><a onclick="(new Image()).src='/rg/title-nav-item/faq/images/b.gif?link=/title/tt1352369/faq';"href="faq" class="link empty">FAQ</a>
|
361
|
-
<h6>Other Info</h6>
|
362
|
-
|
363
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/sales/images/b.gif?link=/title/tt1352369/sales';"href="sales" class="link empty">merchandising links</a><a onclick="(new Image()).src='/rg/title-nav-item/business/images/b.gif?link=/title/tt1352369/business';"href="business" class="link empty">box office/business</a><a onclick="(new Image()).src='/rg/title-nav-item/releaseinfo/images/b.gif?link=/title/tt1352369/releaseinfo';"href="releaseinfo" class="link">release dates</a><a onclick="(new Image()).src='/rg/title-nav-item/locations/images/b.gif?link=/title/tt1352369/locations';"href="locations" class="link empty">filming locations</a><a onclick="(new Image()).src='/rg/title-nav-item/technical/images/b.gif?link=/title/tt1352369/technical';"href="technical" class="link">technical specs</a><a onclick="(new Image()).src='/rg/title-nav-item/laserdisc/images/b.gif?link=/title/tt1352369/laserdisc';"href="laserdisc" class="link empty">laserdisc details</a><a onclick="(new Image()).src='/rg/title-nav-item/dvd/images/b.gif?link=/title/tt1352369/dvd';"href="dvd" class="link empty">DVD details</a><a onclick="(new Image()).src='/rg/title-nav-item/literature/images/b.gif?link=/title/tt1352369/literature';"href="literature" class="link empty">literature listings</a><a onclick="(new Image()).src='/rg/title-nav-item/news/images/b.gif?link=/title/tt1352369/news';"href="news" class="link">NewsDesk</a>
|
364
|
-
<h6>Promotional</h6>
|
365
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/taglines/images/b.gif?link=/title/tt1352369/taglines';"href="taglines" class="link">taglines</a>
|
366
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/trailers/images/b.gif?link=/title/tt1352369/trailers';"href="trailers" class="link">trailers and videos</a>
|
367
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/posters/images/b.gif?link=/title/tt1352369/posters';"href="posters" class="link">posters</a>
|
368
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/photogallery/images/b.gif?link=/title/tt1352369/photogallery';"href="photogallery" class="link empty">photo gallery</a>
|
369
|
-
|
370
|
-
|
371
|
-
<h6>External Links</h6>
|
372
|
-
<a onclick="(new Image()).src='/rg/title-nav-item/cinemashowtimes/images/b.gif?link=/title/tt1352369/cinemashowtimes';"href="cinemashowtimes" class="link empty">showtimes</a><a onclick="(new Image()).src='/rg/title-nav-item/officialsites/images/b.gif?link=/title/tt1352369/officialsites';"href="officialsites" class="link">official sites</a><a onclick="(new Image()).src='/rg/title-nav-item/miscsites/images/b.gif?link=/title/tt1352369/miscsites';"href="miscsites" class="link">miscellaneous</a><a onclick="(new Image()).src='/rg/title-nav-item/photosites/images/b.gif?link=/title/tt1352369/photosites';"href="photosites" class="link">photographs</a><a onclick="(new Image()).src='/rg/title-nav-item/soundsites/images/b.gif?link=/title/tt1352369/soundsites';"href="soundsites" class="link empty">sound clips</a><a onclick="(new Image()).src='/rg/title-nav-item/videosites/images/b.gif?link=/title/tt1352369/videosites';"href="videosites" class="link empty">video clips</a>
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
</div>
|
377
|
-
<div id="tn15main">
|
378
|
-
|
379
|
-
<div id="tn15title">
|
380
|
-
<h1>Gurotesuku <span>(<a href="/year/2009/">2009</a>) <span class="pro-link"><a href="http://pro.imdb.com/rg/maindetails-title/tconst-pro-header-link/title/tt1352369/">More at <strong>IMDbPro</strong></a> »</span></span></h1>
|
381
|
-
</div>
|
382
|
-
|
383
|
-
<div id="tn15content">
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
<style type="text/css">
|
389
|
-
|
390
|
-
.media_strip_thumbs img {
|
391
|
-
margin-right:0.2em;
|
392
|
-
border:none;
|
393
|
-
}
|
394
|
-
|
395
|
-
.media_strip_thumbs {
|
396
|
-
overflow: hidden;
|
397
|
-
height: 90px;
|
398
|
-
}
|
399
|
-
.media_strip_thumb img {
|
400
|
-
margin-right: 0.2em;
|
401
|
-
}
|
402
|
-
.media_strip_thumb {
|
403
|
-
float: left;
|
404
|
-
margin-bottom: 50px;
|
405
|
-
text-align: right;
|
406
|
-
font-family: Tahoma,Verdana,sans-serif;
|
407
|
-
font-size: 10pt;
|
408
|
-
color:#333333;
|
409
|
-
}
|
410
|
-
</style>
|
411
|
-
|
412
|
-
<table style="border-collapse:collapse;">
|
413
|
-
<tr>
|
414
|
-
|
415
|
-
|
416
|
-
<td class="media_strip_header">
|
417
|
-
|
418
|
-
|
419
|
-
<b>Videos</b>
|
420
|
-
|
421
|
-
<span>(<a href="/rg/videos-title/gallery-link/title/tt1352369/videogallery">see all 3</a>)</span>
|
422
|
-
</td>
|
423
|
-
|
424
|
-
</tr>
|
425
|
-
<tr>
|
426
|
-
|
427
|
-
|
428
|
-
<td>
|
429
|
-
<div class="media_strip_thumbs">
|
430
|
-
<div class="media_strip_thumb"><link rel="stylesheet" type="text/css" media="screen" href="http://i.media-imdb.com/images/SF4323f71ebbd35011bc81741739454655/css2/app/video/single.css">
|
431
|
-
<a href=/video/imdblink/vi1969423641/ onClick="(new Image()).src='/rg/video-link/default/images/b.gif?link=%2Fvideo%2Fimdblink%2Fvi1969423641%2F';window.open(this.href+'offsite','_blank','scrollbars=yes,menubar=yes,toolbar=yes,location=yes,resizable=yes,width='+((window.outerWidth?window.outerWidth:document.body.clientWidth)-200)+',height='+((window.outerHeight?window.outerHeight:document.body.clientHeight)-450)+',top=200,left=100');"><img class="video" viconst="vi1969423641" alt="Gurotesuku (2009) -- CineMagia.ro - Trailer (Flash)" title="Gurotesuku (2009) -- CineMagia.ro - Trailer (Flash)" src="http://ia.media-imdb.com/images/M/MV5BMTQ5MzMyODc1NV5BMl5BanBnXkFpbWRi._SX120_SY90_BO120,0,0,0_PIimdb-play-bar2-180,BottomLeft,120,-120_CR120,120,120,90_ZATrailer,37,63,27,83,verdenab,9,255,255,255,1_CR0,14,120,76_BO14,83,105,140_CR14,0,120,90_ZAat%20CineMagia.ro%20%BB,3,0,14,120,verdenab,7,255,255,255,1_.jpg" width="120" height="90" /></a>
|
432
|
-
|
433
|
-
</div>
|
434
|
-
</div>
|
435
|
-
</td>
|
436
|
-
|
437
|
-
</tr>
|
438
|
-
</table>
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
<hr/>
|
444
|
-
|
445
|
-
<div id="tn15adrhs">
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
<!-- begin TOP_RHS -->
|
450
|
-
<div id="top_rhs_wrapper">
|
451
|
-
<script type="text/javascript">
|
452
|
-
ad_utils.queue_ad('3','top_rhs');
|
453
|
-
</script>
|
454
|
-
<iframe src="/images/SFb73c79d3e365f1c3c3ff02bc85d516ed/a/ifb/doubleclick/expand.html#imdb2.consumer.title/maindetails;tile=3;sz=300x250,120x600,11x1;p=tr;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;[PASEGMENTS];ord=[CLIENT_SIDE_ORD]?" id="top_rhs" name="top_rhs" class="yesScript" width="0" height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.resize_iframe(this)"></iframe>
|
455
|
-
|
456
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=3;sz=300x250,120x600,11x1;p=tr;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=3;sz=300x250,120x600,11x1;p=tr;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" border="0" alt="advertisement" /></a></noscript>
|
457
|
-
|
458
|
-
</div>
|
459
|
-
<!-- End TOP_RHS -->
|
460
|
-
<div id="top_rhs_after" class="after_ad hidden">advertisement</div>
|
461
|
-
|
462
|
-
|
463
|
-
<!-- sid : 97571 : MIDDLE_RHS --><script language="JavaScript" src="http://ia.imdb.com/media/imdb/01/J/02"></script>
|
464
|
-
|
465
|
-
<script language="JavaScript">document.writeln(cb4('<style>\r\n.rto2010navstripe a:link, .rto2010navstripe a:visited, .rto2010navstripe a:hover {\r\n color: #fff !important;\r\n}\r\n\r\n.rto2010navstripe {\r\n font-family: Verdana; font-size: 13px;\r\n margin-bottom: 4px;\r\n}\r\n</style>\r\n<div class="rto2010navstripe" style="background-image: url(http://ia.media-imdb.com/images/M/MV5BMTY3MDExMTgzN15BMl5BZ2lmXkFtZTcwNzUyMzcxMw@@._V1_.gif); width: 300px; height: 125px; margin-bottom: 6px;">\r\n\r\n<table width="300" cellpadding="0" cellspacing="0" align="top"><tr>\r\n\r\n<td width="240"><a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/"><img src="http://i.imdb.com/b.gif" width="150" height="40" border="0"></a><a href="http://ad.doubleclick.net/clk;221563046;45456736;i" target="_top"><img src="http://i.imdb.com/b.gif" width="90" height="40" border="0"></a></td>\r\n\r\n<td width="52"><a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="50" height="40" border="0" /></a></td></tr>\r\n<tr>\r\n<td width="300" height="61" colspan=2 align="center"><a href="/ri/RTG10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjE0MzI4Njk1N15BMl5BanBnXkFtZTcwOTIwMTQ2Mg@@._V1._CR153,0,394,394_SS54_.jpg" border="0"></a>\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMTc0Mzk5ODkwM15BMl5BanBnXkFtZTcwMDgzOTY3Mg@@._V1._CR116,0,467,467_SS54_.jpg" border="0"></a>\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjIxOTM0ODUwNV5BMl5BanBnXkFtZTcwNzM2MzMwMw@@._V1._CR236,0,1576,1576_SS54_.jpg" border="0"></a>\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjIyODE5Nzg4M15BMl5BanBnXkFtZTcwMDg2NzQ5Mg@@._V1._CR341,0,1365,1365_SS54_.jpg" border="0"></a>\r\n<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjExNjMwNjUwM15BMl5BanBnXkFtZTcwMDQ2ODM5Mg@@._V1._CR420,0,1080,1080_SS54_.jpg" border="0"></a>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=2 width="349" align="center">\r\n\r\n<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/oscars">Oscar Winners</a> \r\n\r\n<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/photo_gallery">Oscar Photos</a> \r\n\r\n<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/">more</a> \r\n\r\n<iframe src="http://ad.doubleclick.net/adi/imdb2.tracking.main/;target=navtrackeracura;sz=1x1;ord=[timestamp]?" width="1" height="1" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"><scr'+'ipt language="JavaScript" src="http://ad.doubleclick.net/adj/imdb2.tracking.main/;target=navtrackeracura;sz=1x1;abr=!ie;ord=[timestamp]?" type="text/javascript"></scr'+'ipt></iframe> \r\n\r\n\r\n<span style="color: white;">»</span>\r\n</td>\r\n</tr>\r\n</table>\r\n</div>\r\n'));</script>
|
466
|
-
<noscript><style>
|
467
|
-
.rto2010navstripe a:link, .rto2010navstripe a:visited, .rto2010navstripe a:hover {
|
468
|
-
color: #fff !important;
|
469
|
-
}
|
470
|
-
|
471
|
-
.rto2010navstripe {
|
472
|
-
font-family: Verdana; font-size: 13px;
|
473
|
-
margin-bottom: 4px;
|
474
|
-
}
|
475
|
-
</style>
|
476
|
-
<div class="rto2010navstripe" style="background-image: url(http://ia.media-imdb.com/images/M/MV5BMTY3MDExMTgzN15BMl5BZ2lmXkFtZTcwNzUyMzcxMw@@._V1_.gif); width: 300px; height: 125px; margin-bottom: 6px;">
|
477
|
-
|
478
|
-
<table width="300" cellpadding="0" cellspacing="0" align="top"><tr>
|
479
|
-
|
480
|
-
<td width="240"><a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/"><img src="http://i.imdb.com/b.gif" width="150" height="40" border="0"></a><a href="http://ad.doubleclick.net/clk;221563046;45456736;i" target="_top"><img src="http://i.imdb.com/b.gif" width="90" height="40" border="0"></a></td>
|
481
|
-
|
482
|
-
<td width="52"><a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/" target="_top"><img src="http://i.imdb.com/b.gif" alt=" " width="50" height="40" border="0" /></a></td></tr>
|
483
|
-
<tr>
|
484
|
-
<td width="300" height="61" colspan=2 align="center"><a href="/ri/RTG10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjE0MzI4Njk1N15BMl5BanBnXkFtZTcwOTIwMTQ2Mg@@._V1._CR153,0,394,394_SS54_.jpg" border="0"></a>
|
485
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMTc0Mzk5ODkwM15BMl5BanBnXkFtZTcwMDgzOTY3Mg@@._V1._CR116,0,467,467_SS54_.jpg" border="0"></a>
|
486
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjIxOTM0ODUwNV5BMl5BanBnXkFtZTcwNzM2MzMwMw@@._V1._CR236,0,1576,1576_SS54_.jpg" border="0"></a>
|
487
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjIyODE5Nzg4M15BMl5BanBnXkFtZTcwMDg2NzQ5Mg@@._V1._CR341,0,1365,1365_SS54_.jpg" border="0"></a>
|
488
|
-
<a href="/ri/RTO10_PHOTO_GALLERY/NAVSTRIP/97571/http://www.imdb.com/features/rto/2010/"><img src="http://ia.media-imdb.com/images/M/MV5BMjExNjMwNjUwM15BMl5BanBnXkFtZTcwMDQ2ODM5Mg@@._V1._CR420,0,1080,1080_SS54_.jpg" border="0"></a>
|
489
|
-
</td>
|
490
|
-
</tr>
|
491
|
-
<tr>
|
492
|
-
<td colspan=2 width="349" align="center">
|
493
|
-
|
494
|
-
<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/oscars">Oscar Winners</a>
|
495
|
-
|
496
|
-
<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/photo_gallery">Oscar Photos</a>
|
497
|
-
|
498
|
-
<a href="/ri/RTO10_NAVSTRIPE//97571/features/rto/2010/">more</a>
|
499
|
-
|
500
|
-
<iframe src="http://ad.doubleclick.net/adi/imdb2.tracking.main/;target=navtrackeracura;sz=1x1;ord=1268160223?" width="1" height="1" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe><a href="http://ad.doubleclick.net/jump/imdb2.tracking.main/;target=navtrackeracura;sz=1x1;abr=!ie4;abr=!ie5;abr=!ie6;ord=1268160223?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.tracking.main/;target=navtrackeracura;sz=1x1;abr=!ie4;abr=!ie5;abr=!ie6;ord=1268160223?" width="1" height="1" border="0" alt=""></a>
|
501
|
-
|
502
|
-
|
503
|
-
<span style="color: white;">»</span>
|
504
|
-
</td>
|
505
|
-
</tr>
|
506
|
-
</table>
|
507
|
-
</div>
|
508
|
-
</noscript>
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
</div>
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
<div id="top_center_after" class="after_ad"><div></div></div>
|
519
|
-
<h3>Overview</h3>
|
520
|
-
|
521
|
-
<div id="tn15rating" class="one guest">
|
522
|
-
<div class="general">
|
523
|
-
<div class="info stars">
|
524
|
-
<h5>User Rating:</h5>
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
<div class="starbar">
|
531
|
-
<div class="outer">
|
532
|
-
<div id="general-voting-stars" class="inner" style="width: 96px"></div>
|
533
|
-
<div class="starbar-votes">
|
534
|
-
<a title="10" href="vote?v=10;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(10)" class="s10"></a><a title="9" href="vote?v=9;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(9)" class="s9"></a><a title="8" href="vote?v=8;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(8)" class="s8"></a><a title="7" href="vote?v=7;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(7)" class="s7"></a><a title="6" href="vote?v=6;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(6)" class="s6"></a><a title="5" href="vote?v=5;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(5)" class="s5"></a><a title="4" href="vote?v=4;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(4)" class="s4"></a><a title="3" href="vote?v=3;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(3)" class="s3"></a><a title="2" href="vote?v=2;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(2)" class="s2"></a><a title="1" href="vote?v=1;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(1)" class="s1"></a>
|
535
|
-
</div>
|
536
|
-
</div>
|
537
|
-
</div>
|
538
|
-
|
539
|
-
<div class="starbar-meta">
|
540
|
-
<b>4.8/10</b>
|
541
|
-
|
542
|
-
|
543
|
-
<a href="ratings" class="tn15more">637 votes</a> »
|
544
|
-
|
545
|
-
|
546
|
-
</div>
|
547
|
-
</div>
|
548
|
-
</div>
|
549
|
-
<div class="personal">
|
550
|
-
<div class="info stars">
|
551
|
-
<h5>Your Rating:</h5>
|
552
|
-
<div class="starbar">
|
553
|
-
<div class="outer">
|
554
|
-
<div id="personal-voting-stars" class="inner" style="width: 0px"></div>
|
555
|
-
<div class="starbar-votes">
|
556
|
-
<a title="10" href="vote?v=10;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(10)" class="s10"></a><a title="9" href="vote?v=9;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(9)" class="s9"></a><a title="8" href="vote?v=8;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(8)" class="s8"></a><a title="7" href="vote?v=7;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(7)" class="s7"></a><a title="6" href="vote?v=6;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(6)" class="s6"></a><a title="5" href="vote?v=5;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(5)" class="s5"></a><a title="4" href="vote?v=4;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(4)" class="s4"></a><a title="3" href="vote?v=3;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(3)" class="s3"></a><a title="2" href="vote?v=2;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(2)" class="s2"></a><a title="1" href="vote?v=1;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote(1)" class="s1"></a>
|
557
|
-
</div>
|
558
|
-
</div>
|
559
|
-
</div>
|
560
|
-
<div class="message starbar-meta">
|
561
|
-
<div class="save">Saving vote...</div>
|
562
|
-
<div class="delete">Deleting vote...</div>
|
563
|
-
<div class="user">
|
564
|
-
<div class="extra">
|
565
|
-
<b><span id="voteuser"></span>/10</b>
|
566
|
-
(<a class="del" href="vote?v=X;k=f3zJrDBTKoUxQTfQSyfP6AB.qjlz-Vo5czp5ChcuGSpAfhqZ41laOXMKWRpTSjm6Zzn6mmBpWjlgaVoJIDkqCX" onclick="return vote('X')">delete</a>
|
567
|
-
| <a href="/mymovies/list?votehistory">history</a>)
|
568
|
-
</div>
|
569
|
-
</div>
|
570
|
-
<div class="error">Sorry, there was a problem</div>
|
571
|
-
</div>
|
572
|
-
</div>
|
573
|
-
</div>
|
574
|
-
</div>
|
575
|
-
|
576
|
-
<div class="info"><h5>MOVIEmeter: <a href="/help/show_leaf?prowhatisstarmeter"><img src="http://i.media-imdb.com/images//help13x10.gif" width="13" height="10" border="0" alt="?"></a></h5><div class="info-content"><b>Down 7%</b> in popularity this week. See <a href="/r/movie-con/rg/title-tease/meter-why/title/tt1352369/graph-data">why</a> on <a href="/r/movie-con/rg/title-tease/meter-prolink/">IMDbPro</a>.</div></div>
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
<div id="director-info" class="info">
|
582
|
-
<h5>Director:</h5>
|
583
|
-
<div class="info-content">
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
<a href="/name/nm1823283/" onclick="(new Image()).src='/rg/directorlist/position-1/images/b.gif?link=name/nm1823283/';">Kôji Shiraishi</a><br/>
|
589
|
-
|
590
|
-
|
591
|
-
</div>
|
592
|
-
</div>
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
<div class="info">
|
598
|
-
<h5>Writer:</h5>
|
599
|
-
<div class="info-content">
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
<a href="/name/nm1823283/" onclick="(new Image()).src='/rg/writerlist/position-1/images/b.gif?link=name/nm1823283/';">Kôji Shiraishi</a> (screenplay)<br/>
|
605
|
-
|
606
|
-
|
607
|
-
</div>
|
608
|
-
</div>
|
609
|
-
|
610
|
-
<div class="info">
|
611
|
-
<h5>Contact:</h5>
|
612
|
-
<div class="info-content">
|
613
|
-
|
614
|
-
View <a href="/r/contact-con/rg/title-overview/company-contact/title/tt1352369/companycredits">company</a>
|
615
|
-
contact information for Gurotesuku on
|
616
|
-
<a href="/r/contact-con/rg/title-overview/pro-contact/">IMDbPro</a>.
|
617
|
-
|
618
|
-
</div>
|
619
|
-
</div>
|
620
|
-
|
621
|
-
<div class="info">
|
622
|
-
<h5>Genre:</h5>
|
623
|
-
<div class="info-content">
|
624
|
-
<a href="/Sections/Genres/Crime/">Crime</a> | <a href="/Sections/Genres/Horror/">Horror</a> | <a href="/Sections/Genres/Thriller/">Thriller</a> <a class="tn15more inline" href="/title/tt1352369/keywords" onClick="(new Image()).src='/rg/title-tease/keywords/images/b.gif?link=/title/tt1352369/keywords';">See more</a> »
|
625
|
-
</div>
|
626
|
-
</div>
|
627
|
-
|
628
|
-
<div class="info">
|
629
|
-
<h5>Tagline:</h5>
|
630
|
-
<div class="info-content">
|
631
|
-
King of Japanese Grotesque Movie <a class="tn15more inline" href="/title/tt1352369/taglines" onClick="(new Image()).src='/rg/title-tease/taglines/images/b.gif?link=/title/tt1352369/taglines';">See more</a> »
|
632
|
-
</div>
|
633
|
-
</div>
|
634
|
-
|
635
|
-
<div class="info">
|
636
|
-
<h5>Plot Keywords:</h5>
|
637
|
-
<div class="info-content">
|
638
|
-
<div id="tn15plotkeywords" style="display:inline;"><span>
|
639
|
-
|
640
|
-
<a href="/keyword/flashback/">Flashback</a>
|
641
|
-
|
|
642
|
-
<a href="/keyword/disinfectant/">Disinfectant</a>
|
643
|
-
|
|
644
|
-
<a href="/keyword/classical-music/">Classical Music</a>
|
645
|
-
|
|
646
|
-
<a href="/keyword/axe/">Axe</a>
|
647
|
-
|
|
648
|
-
<a href="/keyword/molestation/">Molestation</a>
|
649
|
-
|
650
|
-
</span></div>
|
651
|
-
|
652
|
-
<a class="tn15more inline" href="/title/tt1352369/keywords" onClick="(new Image()).src='/rg/title-tease/keywords/images/b.gif?link=/title/tt1352369/keywords';">See more</a> »
|
653
|
-
|
654
|
-
</div>
|
655
|
-
</div>
|
656
|
-
|
657
|
-
<script type="text/javascript">
|
658
|
-
var k = document.getElementById("tn15plotkeywords");
|
659
|
-
k.className = "keyword-spoiler";
|
660
|
-
k.onmouseover = function() {if (!window.hasVoted) this.className += ' hover';};
|
661
|
-
k.onmouseout= function() {if (!window.hasVoted) this.className='keyword-spoiler';}
|
662
|
-
</script>
|
663
|
-
<div class="info">
|
664
|
-
<h5>NewsDesk<span>:</span><br/>
|
665
|
-
<small>(<a onClick="(new Image()).src='/rg/maindetails-count/newsdesk/images/b.gif?link=%2Ftitle%2Ftt1352369%2Fnews';" href="/title/tt1352369/news">2 articles</a>)</small>
|
666
|
-
</h5>
|
667
|
-
<div class="info-content">
|
668
|
-
<strong><a onClick="(new Image()).src='/rg/maindetails-headline/newsdesk/images/b.gif?link=%2Ftitle%2Ftt1352369%2Fnews%23ni0943771';" href="/title/tt1352369/news#ni0943771">Japanese horror movie Grotesque banned from release</a></strong> <small><br /> (From <a onClick="(new Image()).src='/rg/maindetails-source/newsdesk/images/b.gif?link=%2Fnews%2Fns0000257%2F';" href="/news/ns0000257/">The Geek Files</a>. 22 August 2009, 12:36 PM, PDT)</small>
|
669
|
-
<br/>
|
670
|
-
<strong><a onClick="(new Image()).src='/rg/maindetails-headline/newsdesk/images/b.gif?link=%2Ftitle%2Ftt1352369%2Fnews%23ni0938553';" href="/title/tt1352369/news#ni0938553">British Censors Bar Japanese Horror Flick</a></strong> <small><br /> (From <a onClick="(new Image()).src='/rg/maindetails-source/newsdesk/images/b.gif?link=%2Fnews%2Fns0000003%2F';" href="/news/ns0000003/">Studio Briefing - Film News</a>. 19 August 2009, 2:41 PM, PDT)</small>
|
671
|
-
<br/>
|
672
|
-
<div style="width:1px;height:0.5em;"></div></div>
|
673
|
-
</div>
|
674
|
-
|
675
|
-
<div class="info">
|
676
|
-
<h5>User Reviews:</h5>
|
677
|
-
<div class="info-content">
|
678
|
-
Infamous and still falling short, "Grotesque" is a gross waste of time
|
679
|
-
<a class="tn15more inline" href="#comment">See more (21 total)</a> »
|
680
|
-
</div>
|
681
|
-
</div>
|
682
|
-
<hr/>
|
683
|
-
<div class="info"> <div class="headerinline"><h3>Cast</h3> <small style="position: relative; bottom: 1px">(Credited cast)</small></div><div class="info-content block"><table class="cast"> <tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/SF9113d6f5b7cb1533c35313ccd181a6b1/tn15/no_photo.png" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm2789828/" onclick="(new Image()).src='/rg/castlist/position-1/images/b.gif?link=/name/nm2789828/';">Tsugumi Nagasawa</a></td><td class="ddd"> ... </td><td class="char">Aki</td></tr> <tr class="even"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/SF9113d6f5b7cb1533c35313ccd181a6b1/tn15/no_photo.png" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm2937406/" onclick="(new Image()).src='/rg/castlist/position-2/images/b.gif?link=/name/nm2937406/';">Hiroaki Kawatsure</a></td><td class="ddd"> ... </td><td class="char">Kazuo</td></tr> <tr class="odd"><td class="hs"><a href="http://resume.imdb.com/" onClick="(new Image()).src='/rg/title-tease/resumehead/images/b.gif?link=http://resume.imdb.com/';"><img src="http://i.media-imdb.com/images/SF9113d6f5b7cb1533c35313ccd181a6b1/tn15/no_photo.png" width="25" height="31" border="0"></td><td class="nm"><a href="/name/nm3258689/" onclick="(new Image()).src='/rg/castlist/position-3/images/b.gif?link=/name/nm3258689/';">Shigeo Ôsako</a></td><td class="ddd"></td><td class="char"></td></tr></table><a class="tn15more" href="fullcredits#cast">See more</a> »</div> </div>
|
684
|
-
<div><form action="/character/create" method="post"><input type="hidden" name="title" value="tt1352369">Create a character page for: <select name="name" onchange="if (this.options[this.selectedIndex].value == '...') document.location='fullcredits#cast'"><option>Aki</option><option>Kazuo</option><option disabled="disabled">-----------</option><option value="...">more...</option></select> <input style="font: Tahoma, Verdana, sans-serif; font-size: 8pt; font-weight: bold; background-color: #eeeeee; border-color: #ccccee; color: black" type="submit" value="Create »"> <a target="_blank" href="/help/show_leaf?createchar"><img src="http://i.media-imdb.com/images/help13x10.gif" width="13" height="10" border="0" alt="?"></a></form></div>
|
685
|
-
|
686
|
-
|
687
|
-
<!-- sid: test01-channel : MIDDLE_CENTER -->
|
688
|
-
|
689
|
-
<script type="text/javascript">
|
690
|
-
if (typeof afc_data == "undefined") {
|
691
|
-
afc_data = new Object();
|
692
|
-
}
|
693
|
-
|
694
|
-
afc_data["MIDDLE_CENTER"] = { channel: "test01-channel",
|
695
|
-
client: "ca-amazon-imdb_js",
|
696
|
-
title: "Sponsored Links",
|
697
|
-
help: "What's This?",
|
698
|
-
hints: "japanese,severed finger,axe,vomit,scalpel"
|
699
|
-
};
|
700
|
-
|
701
|
-
generic.on_document_ready(function(){
|
702
|
-
generic.load_when_visible("sponsored_links_afc_div_MIDDLE_CENTER", function(){
|
703
|
-
jQuery("#sponsored_links_afc_iframe_MIDDLE_CENTER").get(0).contentWindow.location.replace("/images/a/ifb/google_afc.html#key:MIDDLE_CENTER");
|
704
|
-
});
|
705
|
-
});
|
706
|
-
</script>
|
707
|
-
|
708
|
-
<div id="sponsored_links_afc_div_MIDDLE_CENTER" name="sponsored_links_afc_div_MIDDLE_CENTER"></div>
|
709
|
-
|
710
|
-
<iframe id="sponsored_links_afc_iframe_MIDDLE_CENTER" width="0" height="0" scrolling="no" frameborder="0"
|
711
|
-
allowtransparency="true" marginheight="0" marginwidth="0"
|
712
|
-
name="sponsored_links_afc_iframe" src="about:blank">
|
713
|
-
</iframe>
|
714
|
-
|
715
|
-
<hr />
|
716
|
-
|
717
|
-
<h3>Additional Details</h3>
|
718
|
-
|
719
|
-
<div class="info">
|
720
|
-
|
721
|
-
<h5>Also Known As:</h5><div class="info-content">Grotesque (Japan: English title) (censored version) <br>Grotesque: Unrated Version (Japan: English title) <br>Gurotesuku (Japan) (censored version) <br>
|
722
|
-
|
723
|
-
|
724
|
-
<a class="tn15more" href="/title/tt1352369/releaseinfo#akas" onClick="(new Image()).src='/rg/title-tease/akas/images/b.gif?link=/title/tt1352369/releaseinfo#akas';">See more</a> »
|
725
|
-
</div>
|
726
|
-
|
727
|
-
</div>
|
728
|
-
|
729
|
-
<div class="info">
|
730
|
-
<h5>Parents Guide:</h5>
|
731
|
-
<div class="info-content">
|
732
|
-
<a href="parentalguide">View content advisory for parents</a>
|
733
|
-
</div>
|
734
|
-
</div>
|
735
|
-
|
736
|
-
<div class="info">
|
737
|
-
<h5>Runtime:</h5>
|
738
|
-
<div class="info-content">
|
739
|
-
73 min | Japan:69 min (censored version)
|
740
|
-
</div>
|
741
|
-
</div>
|
742
|
-
|
743
|
-
<div class="info">
|
744
|
-
<h5>Country:</h5>
|
745
|
-
<div class="info-content">
|
746
|
-
|
747
|
-
<a href="/Sections/Countries/Japan/">
|
748
|
-
Japan</a>
|
749
|
-
|
750
|
-
</div>
|
751
|
-
</div>
|
752
|
-
|
753
|
-
<div class="info">
|
754
|
-
<h5>Language:</h5>
|
755
|
-
<div class="info-content">
|
756
|
-
|
757
|
-
<a href="/Sections/Languages/Japanese/">
|
758
|
-
Japanese</a>
|
759
|
-
|
760
|
-
</div>
|
761
|
-
</div>
|
762
|
-
|
763
|
-
<div class="info">
|
764
|
-
<h5>Color:</h5>
|
765
|
-
<div class="info-content">
|
766
|
-
|
767
|
-
<a href="/search/title?colors=color">
|
768
|
-
Color</a>
|
769
|
-
</div>
|
770
|
-
</div>
|
771
|
-
|
772
|
-
<div class="info">
|
773
|
-
<h5>Aspect Ratio:</h5>
|
774
|
-
<div class="info-content">
|
775
|
-
2.35 : 1 <a class="tn15more inline" href="/title/tt1352369/technical" onClick="(new Image()).src='/rg/title-tease/aspect/images/b.gif?link=/title/tt1352369/technical';">See more</a> »
|
776
|
-
</div>
|
777
|
-
</div>
|
778
|
-
|
779
|
-
<div class="info">
|
780
|
-
<h5>Sound Mix:</h5>
|
781
|
-
<div class="info-content">
|
782
|
-
|
783
|
-
<a href="/search/title?sound_mixes=stereo">
|
784
|
-
Stereo</a>
|
785
|
-
</div>
|
786
|
-
</div>
|
787
|
-
|
788
|
-
<div class="info">
|
789
|
-
<h5>Certification:</h5>
|
790
|
-
<div class="info-content">
|
791
|
-
|
792
|
-
<a href="/search/title?certificates=jp|unrated">
|
793
|
-
Japan:Unrated</a> <i>(self-rating: R-20)</i> |
|
794
|
-
<a href="/search/title?certificates=gb|(banned)">
|
795
|
-
UK:(Banned)</a> |
|
796
|
-
<a href="/search/title?certificates=gb|r">
|
797
|
-
UK:R</a>
|
798
|
-
</div>
|
799
|
-
</div>
|
800
|
-
|
801
|
-
<div class="info">
|
802
|
-
<h5>Company:</h5>
|
803
|
-
<div class="info-content">
|
804
|
-
<a href="/company/co0148138/">Ace Deuce Entertainment</a>
|
805
|
-
|
806
|
-
<a class="tn15more inline" href="/title/tt1352369/companycredits">See more</a> »
|
807
|
-
</div>
|
808
|
-
</div>
|
809
|
-
|
810
|
-
<hr/>
|
811
|
-
<h3>Fun Stuff</h3>
|
812
|
-
|
813
|
-
<div class="info">
|
814
|
-
<h5>Trivia:</h5>
|
815
|
-
<div class="info-content">
|
816
|
-
Distributors of this movie had hoped to be given an 18 certificate for the film, which involves torture such as amputation and eye-gouging. But the British Board of Film Classification said the film featured sexual sadism for its own sake. Also stated that giving the film a rating would involve a "risk of harm" to those viewing it. Therefore no classification was given and selling or supplying the film would now be illegal.
|
817
|
-
<a class="tn15more inline" href="/title/tt1352369/trivia" onClick="(new Image()).src='/rg/title-tease/trivia/images/b.gif?link=/title/tt1352369/trivia';">See more</a> »
|
818
|
-
|
819
|
-
</div>
|
820
|
-
</div>
|
821
|
-
|
822
|
-
<div class="info">
|
823
|
-
<h5>Soundtrack:</h5>
|
824
|
-
<div class="info-content">
|
825
|
-
Aeka
|
826
|
-
<a class="tn15more inline" href="/title/tt1352369/soundtrack" onClick="(new Image()).src='/rg/title-tease/soundtrack/images/b.gif?link=/title/tt1352369/soundtrack';">See more</a> »
|
827
|
-
</div>
|
828
|
-
</div>
|
829
|
-
|
830
|
-
<hr/>
|
831
|
-
<h3>FAQ</h3>
|
832
|
-
|
833
|
-
<a href="/title/tt1352369/faq" onClick="(new Image()).src='/rg/title-tease/faq-empty/images/b.gif?link=/title/tt1352369/faq';">This FAQ is empty. Add the first question.</a>
|
834
|
-
|
835
|
-
<hr/>
|
836
|
-
<div class="headerinline">
|
837
|
-
<a name="comment"><h3>User Reviews</h3></a> <span>(<a href="usercomments-enter">Review this title</a>)</span>
|
838
|
-
</div>
|
839
|
-
<div class="comment">
|
840
|
-
<script type="text/javascript">
|
841
|
-
<!--
|
842
|
-
function yn(id, vote) {
|
843
|
-
if (!document.getElementById || !document.createElement || !document.removeChild || !document.appendChild || !document.childNodes || !document.createTextNode) return true;
|
844
|
-
var i = new Image();
|
845
|
-
i.onload = function() { ynd(id, 1) };
|
846
|
-
i.onerror = function() { ynd(id, 0) };
|
847
|
-
i.src = 'usercomments-vote?yni_'+id+'='+vote;
|
848
|
-
return false;
|
849
|
-
}
|
850
|
-
function ynd(id, status) {
|
851
|
-
var d, s, t;
|
852
|
-
if (!(d = document.getElementById('ynd_'+id))) return true;
|
853
|
-
while (d.childNodes.length) d.removeChild(d.childNodes[0]);
|
854
|
-
var s = document.createElement('span');
|
855
|
-
if (!status) s.setAttribute('class', 'error');
|
856
|
-
s.innerHTML = status ? 'Thank you, your vote will be counted and appear on this page within 24 hours.' : 'Sorry, there was a problem collecting your vote.';
|
857
|
-
d.appendChild(s);
|
858
|
-
}
|
859
|
-
//-->
|
860
|
-
</script>
|
861
|
-
<div class="small">
|
862
|
-
4 out of 9 people found the following review useful.
|
863
|
-
</div>
|
864
|
-
|
865
|
-
<b>Infamous and still falling short, "Grotesque" is a gross waste of time</b>, 6 September 2009
|
866
|
-
<br>
|
867
|
-
|
868
|
-
<div class="tinystarbar" title="1/10"><div style="width: 10px;"><a></a></div></div>
|
869
|
-
|
870
|
-
<div class="small">
|
871
|
-
Author:
|
872
|
-
<a href="/user/ur9875128/comments">MidnightTrash</a>
|
873
|
-
|
874
|
-
<small>
|
875
|
-
from United States
|
876
|
-
</small>
|
877
|
-
|
878
|
-
</div>
|
879
|
-
|
880
|
-
|
881
|
-
</p>
|
882
|
-
<p>
|
883
|
-
The Japanese have been riding the torture porn pony since way before it
|
884
|
-
was (briefly) fashionable, so another plot less entry into the crowded
|
885
|
-
"strangers get cut up" genre really isn't all that noteworthy. Aside
|
886
|
-
from Takeshi Miike's chilling "Audition," most of these Japanese gore
|
887
|
-
films are just too sadistic and one dimensional to bother watching. So
|
888
|
-
why bother with "Grotesque," the self-described king of Japanese gore?
|
889
|
-
Honestly, had the BBFC not banned "Grotesque" in the U.K., calling the
|
890
|
-
film "little more than an unrelenting and escalating scenario of
|
891
|
-
humiliation, brutality and sadism," this nasty movie wouldn't have even
|
892
|
-
popped up on anyone's radar. But alas, banning a film only makes people
|
893
|
-
want to see it even more, so in light of the BBFC's decision I had to
|
894
|
-
see, is "Grotesque" worth watching? That depends. Do you get a sadistic
|
895
|
-
thrill out of watching someone get humiliated and tortured to death?
|
896
|
-
Have you seen the "Guinea Pig" series and still want more? Did you find
|
897
|
-
yourself wishing there was less plot and more bloody chainsaws in the
|
898
|
-
"Hostel" movies? If the answer to any of those questions is yes, then
|
899
|
-
you'll enjoy "Grotesque." The film is exactly why this particular breed
|
900
|
-
of exploitation cinema was branded torture porn. In "Grotesque" you've
|
901
|
-
got zero narrative, no character development and no idea why any of
|
902
|
-
this is happening. Instead, you've got an adult film actress, buckets
|
903
|
-
of bodily fluids (we're talking everything from vomit to semen here)
|
904
|
-
and a sound effects reel that makes every severed finger and oozing
|
905
|
-
wound squish and glop.<br/><br/>If any of this sounds like a good night, then you'll love "Grotesque."
|
906
|
-
You should probably also make an appointment to see a psychiatrist,
|
907
|
-
because brother, you've got issues.<br/><br/>For the rest of us, this film is pure, unadulterated trash. "Grotesque"
|
908
|
-
is a movie with absolutely no redeeming value. It is nothing more than
|
909
|
-
a series of sadistic scenes of torture and humiliation. Where "Hostel"
|
910
|
-
took some time setting up the carnage, "Grotesque" gets right down to
|
911
|
-
business, meaning that a) there is little in the film's scant hour and
|
912
|
-
fifteen minute running time but torture and b) viewers have absolutely
|
913
|
-
no attachment to any of the characters.<br/><br/>Which brings us the meat of the film itself, the torture scenes. For a
|
914
|
-
film that so prides itself on the levels of depravity which it is
|
915
|
-
willing to sink, there is little in "Grotesque" that hasn't been seen
|
916
|
-
before. Sure, the film keeps the camera close during the most awful
|
917
|
-
bits, but it's the same dismemberment theatrics that have been done a
|
918
|
-
thousand times over. It's a tired exercise that tries to thrill by
|
919
|
-
showing "shocking" footage that has been seen a thousand times over.
|
920
|
-
It's cutting up the corpse of a long dead horse, hoping that even more
|
921
|
-
graphic violence will revive a genre made for the desensitized. Problem
|
922
|
-
is numb is numb and this kind of mean-spirited schlock does little for
|
923
|
-
an audience that has already seen it all.<br/><br/>If your curiosity just needs to be satiated, then by all means, check
|
924
|
-
out "Grotesque." Everyone else take my advice and stay far, far away.<br/><br/>Taken from http://www.midnighttrash.net/?p=704 MidnightTrash.net Your
|
925
|
-
guide to everything under the radar.
|
926
|
-
</p>
|
927
|
-
|
928
|
-
<div class="yn" id="ynd_2122840">
|
929
|
-
<form method="get" action="/register/">
|
930
|
-
<input type="hidden" name="why" value="comment_vote">
|
931
|
-
Was the above review useful to you?
|
932
|
-
|
933
|
-
<input type="submit" style="font-weight: bold; font-size: 10px; padding: 0px 4px 8px;" class="click linkasbutton-secondary" value="Yes" >
|
934
|
-
|
935
|
-
<input type="submit" style="font-weight: bold; font-size: 10px; padding: 0px 4px 8px;" class="click linkasbutton-secondary" value="No" >
|
936
|
-
</form>
|
937
|
-
</div>
|
938
|
-
</div>
|
939
|
-
|
940
|
-
|
941
|
-
<a class="tn15more" href="/title/tt1352369/usercomments" onClick="(new Image()).src='/rg/title-tease/comments-bottom/images/b.gif?link=/title/tt1352369/usercomments';">See more (21 total)</a> »
|
942
|
-
|
943
|
-
<hr/>
|
944
|
-
<h3>Message Boards</h3>
|
945
|
-
Discuss this movie with other users on <a href="/title/tt1352369/board" onClick="(new Image()).src='/rg/title-tease/boards-top/images/b.gif?link=/title/tt1352369/board';">IMDb message board for Gurotesuku (2009)</a>
|
946
|
-
|
947
|
-
<table class="boards">
|
948
|
-
<tr><th class="left">Recent Posts (updated daily)</th><th class="right">User</th></tr>
|
949
|
-
|
950
|
-
<tr class="odd">
|
951
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/145627218">influenced by Saw + Hostel? Yeah right!!</a></td>
|
952
|
-
<td><a href="/rg/title-tease/boards-user/user/ur7982573/boards/profile">El_Lep</a></td>
|
953
|
-
</tr>
|
954
|
-
|
955
|
-
<tr class="even">
|
956
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/145626774">Help with the story?</a></td>
|
957
|
-
<td><a href="/rg/title-tease/boards-user/user/ur7083214/boards/profile">fcwalker04</a></td>
|
958
|
-
</tr>
|
959
|
-
|
960
|
-
<tr class="odd">
|
961
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/156573546">Is controversey the only reason Grotesque has become so popular?</a></td>
|
962
|
-
<td><a href="/rg/title-tease/boards-user/user/ur22383455/boards/profile">hxc707</a></td>
|
963
|
-
</tr>
|
964
|
-
|
965
|
-
<tr class="even">
|
966
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/153522649">Gurotesuku - why never dubbed over in English</a></td>
|
967
|
-
<td><a href="/rg/title-tease/boards-user/user/ur22361345/boards/profile">auto7891</a></td>
|
968
|
-
</tr>
|
969
|
-
|
970
|
-
<tr class="odd">
|
971
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/156531466">Not sure what to make of it...</a></td>
|
972
|
-
<td><a href="/rg/title-tease/boards-user/user/ur6497327/boards/profile">PeteToro</a></td>
|
973
|
-
</tr>
|
974
|
-
|
975
|
-
<tr class="even">
|
976
|
-
<td><a href="/rg/title-tease/boards-subject/title/tt1352369/board/nest/145482396">Banned in the UK</a></td>
|
977
|
-
<td><a href="/rg/title-tease/boards-user/user/ur6751881/boards/profile">markskelton2</a></td>
|
978
|
-
</tr>
|
979
|
-
|
980
|
-
</table>
|
981
|
-
<a class="tn15more" href="/title/tt1352369/board" onClick="(new Image()).src='/rg/title-tease/boards-bottom/images/b.gif?link=/title/tt1352369/board';">See more</a> »
|
982
|
-
|
983
|
-
<hr/>
|
984
|
-
|
985
|
-
|
986
|
-
<h3>Recommendations</h3>
|
987
|
-
|
988
|
-
<div class="strip">
|
989
|
-
If you enjoyed this title, our database also recommends:
|
990
|
-
|
991
|
-
<table class="recs">
|
992
|
-
<tbody>
|
993
|
-
<tr class="poster">
|
994
|
-
|
995
|
-
<td>
|
996
|
-
<a href="/rg/tt-recs/image/title/tt0296042/">
|
997
|
-
<img class="poster" alt="-" width="93" height="133" src="http://ia.media-imdb.com/images/M/MV5BMTY0MDg2NzE2NF5BMl5BanBnXkFtZTcwNzQ1MTQyMQ@@._V1._SX93_.jpg" ></a>
|
998
|
-
</td>
|
999
|
-
|
1000
|
-
<td>
|
1001
|
-
<a href="/rg/tt-recs/image/title/tt0116163/">
|
1002
|
-
<img class="poster" alt="-" width="93" height="152" src="http://ia.media-imdb.com/images/M/MV5BMTk3ODY4MzkwN15BMl5BanBnXkFtZTcwOTc1MjUxMQ@@._V1._SX93_.jpg" ></a>
|
1003
|
-
</td>
|
1004
|
-
|
1005
|
-
<td>
|
1006
|
-
<a href="/rg/tt-recs/image/title/tt0462499/">
|
1007
|
-
<img class="poster" alt="-" width="93" height="138" src="http://ia.media-imdb.com/images/M/MV5BMTU5NjAxMjg3NF5BMl5BanBnXkFtZTcwMjA3MzU1MQ@@._V1._SX93_.jpg" ></a>
|
1008
|
-
</td>
|
1009
|
-
|
1010
|
-
<td>
|
1011
|
-
<a href="/rg/tt-recs/image/title/tt1229821/">
|
1012
|
-
<img class="poster" alt="-" width="93" src="http://i.media-imdb.com/images/SF526328a7a905a2347b5451d72382b7f3/no_poster.png" ></a>
|
1013
|
-
</td>
|
1014
|
-
|
1015
|
-
<td>
|
1016
|
-
<a href="/rg/tt-recs/image/title/tt0283693/">
|
1017
|
-
<img class="poster" alt="-" width="93" height="132" src="http://ia.media-imdb.com/images/M/MV5BMTM0NzUxOTc5Ml5BMl5BanBnXkFtZTcwOTEyNjMzMQ@@._V1._SX93_.jpg" ></a>
|
1018
|
-
</td>
|
1019
|
-
|
1020
|
-
</tr>
|
1021
|
-
<tr>
|
1022
|
-
|
1023
|
-
<td>
|
1024
|
-
<a href="/rg/tt-recs/link/title/tt0296042/">Koroshiya 1</a>
|
1025
|
-
</td>
|
1026
|
-
|
1027
|
-
<td>
|
1028
|
-
<a href="/rg/tt-recs/link/title/tt0116163/">Yi boh lai beng duk</a>
|
1029
|
-
</td>
|
1030
|
-
|
1031
|
-
<td>
|
1032
|
-
<a href="/rg/tt-recs/link/title/tt0462499/">Rambo</a>
|
1033
|
-
</td>
|
1034
|
-
|
1035
|
-
<td>
|
1036
|
-
<a href="/rg/tt-recs/link/title/tt1229821/">Jue ming pai dui</a>
|
1037
|
-
</td>
|
1038
|
-
|
1039
|
-
<td>
|
1040
|
-
<a href="/rg/tt-recs/link/title/tt0283693/">Zeroka no onna: Akai wappa</a>
|
1041
|
-
</td>
|
1042
|
-
|
1043
|
-
</tr>
|
1044
|
-
<tr class="rating">
|
1045
|
-
|
1046
|
-
<td class="first">
|
1047
|
-
<small>IMDb User Rating:</small><br/>
|
1048
|
-
<div class="tinystarbar" title="7.2/10"><div style="width: 72px;"><a></a></div></div>
|
1049
|
-
</td>
|
1050
|
-
|
1051
|
-
<td class="first">
|
1052
|
-
<small>IMDb User Rating:</small><br/>
|
1053
|
-
<div class="tinystarbar" title="6.4/10"><div style="width: 64px;"><a></a></div></div>
|
1054
|
-
</td>
|
1055
|
-
|
1056
|
-
<td class="first">
|
1057
|
-
<small>IMDb User Rating:</small><br/>
|
1058
|
-
<div class="tinystarbar" title="7.3/10"><div style="width: 73px;"><a></a></div></div>
|
1059
|
-
</td>
|
1060
|
-
|
1061
|
-
<td class="first">
|
1062
|
-
<small>IMDb User Rating:</small><br/>
|
1063
|
-
<div class="tinystarbar" title="4.9/10"><div style="width: 49px;"><a></a></div></div>
|
1064
|
-
</td>
|
1065
|
-
|
1066
|
-
<td class="first">
|
1067
|
-
<small>IMDb User Rating:</small><br/>
|
1068
|
-
<div class="tinystarbar" title="6.7/10"><div style="width: 67px;"><a></a></div></div>
|
1069
|
-
</td>
|
1070
|
-
|
1071
|
-
</tr>
|
1072
|
-
</tbody>
|
1073
|
-
</table>
|
1074
|
-
|
1075
|
-
<a onclick="(new Image()).src='/rg/title-tease/recommendations/images/b.gif?link=/title/tt1352369/recommendations';" href="/title/tt1352369/recommendations">Show more recommendations</a>
|
1076
|
-
|
1077
|
-
</div>
|
1078
|
-
|
1079
|
-
<h3>Related Links</h3><table>
|
1080
|
-
<tr><td width="33%" style="width: 400px"> <a href="/title/tt1352369/fullcredits" onClick="(new Image()).src='/rg/title-related/maindetails-fullcredits/images/b.gif?link=/title/tt1352369/fullcredits';">Full cast and crew</a></td><td width="33%" style="width: 400px"> <a href="/title/tt1352369/companycredits" onClick="(new Image()).src='/rg/title-related/maindetails-companycredits/images/b.gif?link=/title/tt1352369/companycredits';">Company credits</a></td><td width="33%" style="width: 400px"> <a href="/title/tt1352369/externalreviews" onClick="(new Image()).src='/rg/title-related/maindetails-externalreviews/images/b.gif?link=/title/tt1352369/externalreviews';">External reviews</a></td></tr><tr><td width="33%" style="width: 400px"> <a href="/title/tt1352369/news" onClick="(new Image()).src='/rg/title-related/maindetails-news/images/b.gif?link=/title/tt1352369/news';">News articles</a></td><td width="33%" style="width: 400px"> <a href="/Sections/Genres/Crime/" onClick="(new Image()).src='/rg/title-related/maindetails-genre/images/b.gif?link=/Sections/Genres/Crime/';">IMDb Crime section</a></td><td width="33%" style="width: 400px"> <a href="/Sections/Countries/Japan/" onClick="(new Image()).src='/rg/title-related/maindetails-country/images/b.gif?link=/Sections/Countries/Japan/';">IMDb Japan section</a></td></tr><tr><td width="33%" style="width: 400px"> <a href="/mymovies/list?pending&add=1352369" onClick="(new Image()).src='/rg/title-related/maindetails-mymovies/images/b.gif?link=/mymovies/list?pending&add=1352369';">Add this title to MyMovies</a></td>
|
1081
|
-
</table>
|
1082
|
-
<div id="tn15bot">
|
1083
|
-
<div class="right">
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
</div>
|
1089
|
-
<div class="left">
|
1090
|
-
<p><form method="post" action="/updates"><input type="hidden" name="auto" value="legacy/title/tt1352369/"><button type="submit" class="primary" onclick="(new Image()).src='/rg/maindetails-title/tconst-update/images/b.gif'">Update</button></p><p><i>You may report errors and omissions on this page to the IMDb database managers. They will be examined and if approved will be included in a future update. Clicking the 'Update' button will take you through a step-by-step process.</i></p></form>
|
1091
|
-
|
1092
|
-
</div>
|
1093
|
-
</div>
|
1094
|
-
|
1095
|
-
</div>
|
1096
|
-
</div>
|
1097
|
-
</div>
|
1098
|
-
<br style="clear:left;" />
|
1099
|
-
</div>
|
1100
|
-
|
1101
|
-
<div id="footer" class="ft">
|
1102
|
-
<hr width="100%" size=1>
|
1103
|
-
<p class="footer" align="center">
|
1104
|
-
<a href="/">Home</a>
|
1105
|
-
| <a href="/search">Search</a>
|
1106
|
-
| <a href="/a2z">Site Index</a>
|
1107
|
-
| <a href="/NowPlaying/">Now Playing</a>
|
1108
|
-
| <a href="/chart/">Top Movies</a>
|
1109
|
-
| <a href="/register/?why=mymovies_footer">My Movies</a>
|
1110
|
-
| <a href="/top_250_films">Top 250</a> |
|
1111
|
-
<a href="/sections/tv/">TV</a>
|
1112
|
-
| <a href="/News/">News</a>
|
1113
|
-
| <a href="/features/video/">Video</a> |
|
1114
|
-
|
1115
|
-
<a href="/boards/">Message Boards</a>
|
1116
|
-
|
1117
|
-
<br>
|
1118
|
-
<a href="/register/?why=footer">Register</a>
|
1119
|
-
| <a href="/help/show_article?rssavailable"><img alt="RSS Feeds" width="16" height="16" border="0" align="top" src="http://i.media-imdb.com/images/SFb57d5ddb1c1208f549520b6186629f28/rss2.gif"></a> <a href="/help/show_article?rssavailable">RSS</a>
|
1120
|
-
| <a href="/advertising/">Advertising</a>
|
1121
|
-
| <a href="/tiger_redirect?FT_LIC&/licensing/">Content Licensing</a>
|
1122
|
-
| <a href="/help/">Help</a>
|
1123
|
-
|
1124
|
-
| <a href="/jobs">Jobs</a>
|
1125
|
-
| <a href="https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627" onClick="(new Image()).src='/rg/PRO_FOOT/FOOTER/images/b.gif?link=https://secure.imdb.com/register/subscribe?c=a394d4442664f6f6475627';">IMDbPro</a>
|
1126
|
-
| <a href="http://resume.imdb.com" onClick="(new Image()).src='/rg/resume-footer/footer/images/b.gif?link=http://resume.imdb.com';">IMDb Resume</a>
|
1127
|
-
| <a href="http://www.boxofficemojo.com" onClick="(new Image()).src='/rg/BOXOFFICEMOJO/FOOTER/images/b.gif?link=http://www.boxofficemojo.com';">Box Office Mojo</a>
|
1128
|
-
| <a href="http://www.withoutabox.com" onClick="(new Image()).src='/rg/WITHOUTABOX/FOOTER/images/b.gif?link=http://www.withoutabox.com';">Withoutabox</a>
|
1129
|
-
| <a href="http://www.twitter.com/imdb" onClick="(new Image()).src='/rg/TWITTER/FOOTER/images/b.gif?link=http://www.twitter.com/imdb';">Follow us on Twitter</a>
|
1130
|
-
<br><br>
|
1131
|
-
International Sites: <a href="http://www.imdb.de">IMDb Germany</a>
|
1132
|
-
| <a href="http://www.imdb.it">IMDb Italy</a>
|
1133
|
-
| <a href="http://www.imdb.es">IMDb Spain</a>
|
1134
|
-
| <a href="http://www.imdb.fr">IMDb France</a>
|
1135
|
-
| <a href="http://www.imdb.pt">IMDb Portugal</a>
|
1136
|
-
<br><br>
|
1137
|
-
<a href="/help/show_article?conditions">Copyright ©</a> 1990-2010
|
1138
|
-
<a href="/help/">IMDb.com, Inc.</a><br>
|
1139
|
-
<a href="/help/show_article?conditions">Terms</a> and <a href="/privacy">Privacy Policy</a> under which this service is provided to you.<br>
|
1140
|
-
An <a href="http://www.amazon.com/exec/obidos/redirect-home/internetmoviedat"><img id="amazon_logo" align="middle" style="width:80px;height:19px;border:0 none" src="http://i.media-imdb.com/images/SF994559d433ae4c65ea79141b7de03635/icons/amazon_logo.png"/></a> company.
|
1141
|
-
|
1142
|
-
</p>
|
1143
|
-
|
1144
|
-
</div>
|
1145
|
-
|
1146
|
-
<!-- Begin ads_footer -->
|
1147
|
-
<!-- Begin UTS code -->
|
1148
|
-
<script type="text/javascript">
|
1149
|
-
var amznUts = {
|
1150
|
-
DomainId : "imdb.com",
|
1151
|
-
DefinitiveId : "",
|
1152
|
-
TransientId : "",
|
1153
|
-
EventId : "view",
|
1154
|
-
PageId : "tt1352369"
|
1155
|
-
}
|
1156
|
-
</script>
|
1157
|
-
<script type="text/javascript" src="http://z-ecx.images-amazon.com/images/G/01/x-locale/personalization/uts/js/prod-v10.js">
|
1158
|
-
</script>
|
1159
|
-
|
1160
|
-
<!-- End UTS code -->
|
1161
|
-
|
1162
|
-
<!-- End ads_footer -->
|
1163
|
-
</layer>
|
1164
|
-
</div>
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
<!-- begin BOTTOM_AD -->
|
1169
|
-
<div id="bottom_ad_wrapper">
|
1170
|
-
<script type="text/javascript">
|
1171
|
-
ad_utils.queue_ad('5','bottom_ad');
|
1172
|
-
</script>
|
1173
|
-
<iframe src="/images/SFb73c79d3e365f1c3c3ff02bc85d516ed/a/ifb/doubleclick/expand.html#imdb2.consumer.title/maindetails;tile=5;sz=728x90,2x1;p=b;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;[PASEGMENTS];ord=[CLIENT_SIDE_ORD]?" id="bottom_ad" name="bottom_ad" class="yesScript" width="0" height="0" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" allowtransparency="true" onload="ad_utils.resize_iframe(this)"></iframe>
|
1174
|
-
|
1175
|
-
<noscript><a href="http://ad.doubleclick.net/jump/imdb2.consumer.title/maindetails;tile=5;sz=728x90,2x1;p=b;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" target="_blank"><img src="http://ad.doubleclick.net/ad/imdb2.consumer.title/maindetails;tile=5;sz=728x90,2x1;p=b;coo=jp;g=th;g=h;id=tt1352369;tt=f;k=c;g=cr;ord=363983877543?" border="0" alt="advertisement" /></a></noscript>
|
1176
|
-
|
1177
|
-
</div>
|
1178
|
-
<!-- End BOTTOM_AD -->
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
<img src="/rd/?q=50703000000030a090f29616f226e276966600000010c6a0412303130303330393c29373537313c293739333530000001037a040379646370000001047&cb=126816022415527" width="1" height="1" alt="" border="0">
|
1189
|
-
</div> <!-- id="wrapper" -->
|
1190
|
-
<!-- h=iop503 i=2010-03-09 s=legacy(default) t='Tue Mar 9 10:43:43 2010' -->
|
1191
|
-
<script type="text/javascript" src="http://i.media-imdb.com/images/SF221692cb3ce3ac8f23db85819234bf0f/js/jquery/1.2.6.js"></script><script type="text/javascript">jQuery(function(){generic.document_is_ready()})</script><script type="text/javascript">generic.monitoring.stop_timing('page_load', '', true);</script><script type="text/javascript">generic.monitoring.all_events_started();</script>
|
1192
|
-
</body>
|
1193
|
-
</html>
|