at-the-movies 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,435 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Apache
3
+ Content-Type: text/html
4
+ Cache-Control: max-age=300
5
+ Expires: Sun, 02 Aug 2009 05:15:37 GMT
6
+ Date: Sun, 02 Aug 2009 05:10:37 GMT
7
+ Content-Length: 29348
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=72.247.247.52.256761249189837291; expires=Sun, 02-Aug-2009 05:40:37 GMT; path=/; domain=abc.net.au
10
+
11
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
12
+ "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
13
+ <html>
14
+ <head>
15
+ <title>At the Movies: Public Enemies</title>
16
+
17
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18
+
19
+ <meta name="Title" content="At the Movies: Public Enemies">
20
+
21
+ <meta name="Description" content="The Feds try to take down notorious American gangsters John Dillinger, Baby Face Nelson and Pretty Boy Floyd">
22
+
23
+ <meta name="Keywords" content="David Stratton, Michael Mann, Johnny Depp, Michael Mann, Kevin Misher, Gusmano Cesaretti, Kevin De La Noy, Ronan Bennett, Michael Mann & Ann Biderman. Adapted from the book "Public Enemies" by Bryan Burrough., Elliot Goldenthal, Universal, Gangster">
24
+
25
+ <meta name="Date" content="29/07/2009">
26
+
27
+ <meta name="Language" content="English">
28
+
29
+ <meta name="Publisher" content="Australian Broadcasting Corporation">
30
+
31
+ <meta name="Publisher" content="(SCHEME=URL)">
32
+
33
+ <meta name="Rights" content="Copyright 2009&nbsp;, Australian Broadcasting Corporation. Other rights may be held as detailed in text. www.abc.net.au/common/copyrigh.htm">
34
+
35
+ <meta name="ABC-DateReversed" content="">
36
+
37
+ <meta name="ABC-Gateway" content="">
38
+
39
+ <meta name="ABC-Site" content="TV, Movie/Film">
40
+
41
+ <meta name="ABC-Author" content="review">
42
+
43
+ <meta name="ABC-ResourceType" content="0">
44
+
45
+ <meta http-equiv="imagetoolbar" content="no">
46
+ <link rel="stylesheet" href="/atthemovies/css/atm.css" type="text/css" media="all">
47
+ <link rel="stylesheet" type="text/css" media="print" href="/atthemovies/css/print.css">
48
+ <script type="text/javascript" src="/tv/cinerama/scripts/swfobject.js"></script>
49
+ <script type="text/javascript" src="/tv/cinerama/scripts/cinerama.js"></script>
50
+ <script language="JavaScript" type="text/javascript">
51
+ //add onload function audShow;
52
+ function addEvent(obj, evType, fn){
53
+ if (obj.addEventListener){
54
+ obj.addEventListener(evType, fn, false);
55
+ return true;
56
+ } else if (obj.attachEvent){
57
+ var r = obj.attachEvent("on"+evType, fn);
58
+ return r;
59
+ } else {
60
+ return false;
61
+ }
62
+ }
63
+
64
+ function audShow() {
65
+ // display word count only if js enabled
66
+ document.getElementById("wordCount").style.display='inline';
67
+ }
68
+ function changeAction() {
69
+ // avoids non-js form submission
70
+ if (document.revForm) {
71
+ document.revForm.action = 'http://www2b.abc.net.au/guestbookcentral/addentry.asp';
72
+ }
73
+ }
74
+ addEvent(window, 'load', audShow);
75
+ addEvent(window, 'load', changeAction);
76
+ function formCheck(zeForm) {
77
+ // validate fields
78
+ if (zeForm.name.value == "") {
79
+ alert("Please enter your name or nickname.");
80
+ document.getElementById("yname").style.background='#FFFDC8';
81
+ return false;
82
+ }
83
+ if (zeForm.email.value == "") {
84
+ alert("Please enter your email address.");
85
+ document.getElementById("yemail").style.background='#FFFDC8';
86
+ return false;
87
+ }
88
+ // have they left a rating
89
+ if (zeForm.score.options[0].selected && zeForm.score.options[0].value=="na") {
90
+ alert("You forgot to rate the movie!");
91
+ document.getElementById("score").style.background='#FFFDC8';
92
+ return false;
93
+ }
94
+
95
+ // check for http
96
+ spamcheck=zeForm.remark.value;
97
+ if (spamcheck.indexOf("http")!=-1) {
98
+ document.revForm.action = 'http://www.abc.net.au/atthemovies/audience/blank.htm';
99
+ }
100
+
101
+ // check word count
102
+ wct = cnt(zeForm.remark.value);
103
+ if (wct > 100) {
104
+ alert("Comments are limited to 100 words. You've written "+wct+" words!");
105
+ document.getElementById("remark").style.background='#FFFDC8';
106
+ return false;
107
+ }
108
+
109
+ // replace usual suspect bad characters (they break XML)
110
+ badChars = Array ('�', '�', '�', '�', '�', '�', '�', '�', '�', '�', '�', '�','�','�');
111
+ goodChars = Array ('...', '-', '-', '"', '"', 'o', 'e', 'e', 'n', 'a', '-', '\'','\'','\'');
112
+ fld = document.getElementById("remark");
113
+ for(i=0;i<badChars.length;i++){
114
+ restring = new RegExp( badChars[i] , 'g');
115
+ fld.value = fld.value.replace(restring,goodChars[i]);
116
+ }
117
+ fldn = document.getElementById("yname");
118
+ for(j=0;j<badChars.length;j++){
119
+ restringj = new RegExp( badChars[j] , 'g');
120
+ fldn.value = fldn.value.replace(restringj,goodChars[j]);
121
+ }
122
+
123
+
124
+
125
+ // display thankyou div layer and hide form.
126
+ document.getElementById("favFormThx").style.display='block';
127
+ document.getElementById("favForm").style.display='none';
128
+ document.getElementById("wordCount").style.display='none';
129
+
130
+ // all clear, submit the form
131
+ return true;
132
+ }
133
+
134
+ // word count function
135
+ function cnt(theform){
136
+ var y=theform;
137
+ var r = 0;
138
+ a=y.replace('\n',' ');
139
+ a=a.split(' ');
140
+ for (z=0; z<a.length; z++) {if (a[z].length > 0) r++;}
141
+ return r;
142
+ }
143
+
144
+ function remainingWords(textAreaContent,textAreaContentValue, maxWords)
145
+ {
146
+ // Determine the number of words we have left
147
+ var numberofwords = cnt(textAreaContentValue);
148
+ wordsLeft = maxWords - numberofwords;
149
+ if (wordsLeft < 1)
150
+ { // if 100 change color to red
151
+ document.getElementById("wcNum").style.color='red';
152
+ } else {
153
+ document.getElementById("wcNum").style.color='#330000';
154
+ }
155
+ // update word count number
156
+ document.getElementById("wcNum").innerHTML=(0+numberofwords);
157
+ }
158
+
159
+ // windows media alt box
160
+ function showWindows() {
161
+ document.getElementById("windowsMed").style.display='block';
162
+ }
163
+ </script>
164
+
165
+ <style type="text/css">
166
+ /* temp */
167
+ #windowsMed {display:none;float:right;width:150px;background:#0d0d0d}
168
+
169
+ </style>
170
+ <style type="text/css">
171
+ /* tmp styles */
172
+ #content #storyImage #altWinMedia {
173
+ background:#0d0d0d;
174
+ height:23px;
175
+ margin:3px 3px 0px 3px;
176
+ font-size:11px;
177
+ }
178
+ #content #storyImage #altWinMedia a {color:#D47F2A}
179
+ #content #storyImage #altWinMedia span {display:block;color:#ABABAB;padding:4px 5px 0px 0px;}
180
+
181
+ .hideorshow-review {display:none}
182
+ .hideorshow-review {
183
+ display:block;
184
+ }
185
+
186
+ </style>
187
+ </head><body>
188
+ <div id="globalnav">
189
+ <!-- ABC nav: Global Nav -->
190
+ <style type="text/css"><!--
191
+ @import url(http://www.abc.net.au/includes/css/globalNav.css); -->
192
+ </style>
193
+ <div id="gN_Nav">
194
+ <div id="gN_align">
195
+ <form action="http://search.abc.net.au/search/search.cgi" method="GET" id="gN_form" target="_top">
196
+ <input type="hidden" name="form" value="simple">
197
+ <input type="hidden" name="num_ranks" value="20">
198
+ <input type="hidden" name="collection" value="abcall">
199
+ <label for="gN_query"><a href="http://search.abc.net.au/search/search.cgi?collection=abcall&amp;form=simple" target="_top" title="Search the ABC">Search the ABC</a></label>
200
+ <input type="text" id="gN_query" name="query" value="" size="20" maxlength="30">
201
+ <input type="submit" id="gN_submit" value="Search the ABC" title="Search the ABC">
202
+ </form>
203
+ <p id="gN_text"><a id="gN_home" href="http://www.abc.net.au/" target="_top">ABC&nbsp;Home</a><span> | </span><a id="gN_radio" class="pipe" href="http://www.abc.net.au/radio/" target="_top">Radio</a><span> | </span><a id="gN_tv" class="pipe" href="http://www.abc.net.au/tv/" target="_top">Television</a><span> | </span><a id="gN_news" class="pipe" href="http://www.abc.net.au/news/" target="_top">News</a><span> | </span><a id="gN_local" class="pipe" href="http://www.abc.net.au/local/" target="_top">Your&nbsp;Local&nbsp;ABC</a><span> | </span><a id="gN_more" class="pipe" href="http://www.abc.net.au/subjects.htm" target="_top">More&nbsp;Subjects&#8230;</a><span> | </span><a id="gN_shop" href="http://shop.abc.net.au/" target="_top">Shop</a></p>
204
+ </div>
205
+ </div>
206
+ <script type="text/javascript" src="http://www.abc.net.au/includes/scripts/global.js"></script>
207
+ <noscript>
208
+ <img alt="" border="0" name="DCSIMG" width="1" height="1" src="http://statse.webtrendslive.com/dcsg85fae000004n0vfjpj8oa_9m4q/njs.gif?dcsuri=/nojavascript&amp;WT.js=No">
209
+ </noscript>
210
+ <!-- end ABC nav -->
211
+
212
+ </div>
213
+ <!-- END GLOBALNAV //-->
214
+ <div id="outerWrap"></div>
215
+ <div id="banner">
216
+ <a href="http://www.abc.net.au/atthemovies/" target="_top"><img src="/atthemovies/img/1p.gif" alt="At the Movies" class="title"></a>
217
+ <div id="masthead">
218
+ Wed 10pm, Sun 6pm <em>ABC1</em>; &nbsp;&nbsp;&nbsp;Sat 8pm <em>ABC2</em>
219
+ </div>
220
+ <!-- END MASTHEAD //-->
221
+ <div id="search">
222
+ <form action="http://search.abc.net.au/search/search.cgi" method="GET" name="simple">
223
+ <input type=hidden name="form" value="simple">
224
+ <input type=hidden name="scope" value="atthemovies">
225
+ <input type=hidden name="num_ranks" value="20">
226
+ <input type=hidden name="collection" value="tv">
227
+ Search <!--Search by <input type="radio" name="meta_a" value="review">review&nbsp;<input type="radio" name="meta_a" value="interview">interview--> <input type="text" name="query" value="" title="Search At the Movies" size="14" id="searchbox"> <input type="submit" value="Go" title="Search At the Movies" id="searchbutton"></form>
228
+ </div>
229
+ <!-- END SEARCH //-->
230
+ <div id="functions"><a title="Email this page to a friend" href="/cgi-bin/common/mailto/mailto-nojs_query.pl?http://www.abc.net.au/atthemovies/txt/s2625733.htm">Send to a friend</a></div>
231
+ <!-- END FUNCTIONS //-->
232
+ </div>
233
+ <!-- END BANNER //-->
234
+ <table id="contentcontainer" align="center" cellpadding="0" cellspacing="0" border="0" summary="Layout table used to contain content">
235
+ <caption class="hidden">
236
+ <a href="/atthemovies/">At the Movies</a>
237
+ </caption>
238
+ <tbody>
239
+ <tr>
240
+ <td class="featurecontainer"><div id="sitenav">
241
+ <ul>
242
+ <li><a href="/atthemovies/">Home</a></li>
243
+ <li class="selected"><a href="/atthemovies/review/">Movie Reviews</a></li>
244
+ <li><a href="/atthemovies/interview/">Interviews</a></li>
245
+ <li><a href="/atthemovies/news/">Movie News</a></li>
246
+ <li><a href="/tv/geo/atthemovies/">Download Video</a></li>
247
+ <!-- <li><a href="/atthemovies/movieupdates/">Mailing list</a></li> -->
248
+ <li><a href="/atthemovies/events/">Movie Events</a></li>
249
+ <li><a href="/atthemovies/extras/">Extras</a></li>
250
+ <li><a href="/atthemovies/about/">About the Show</a></li>
251
+ <li><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19">Message Board</a></li>
252
+ <!--<li><a href="/atthemovies/contact/">Contact Us</a></li>-->
253
+
254
+ </ul>
255
+ </div>
256
+ <!-- END SITENAV //-->
257
+ <div id="mbextract">
258
+ <h3 id="yoursay"><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19"><span class="hidden">Your Comments</span></a></h3>
259
+ <div style="padding:0px 3px 0px 9px">
260
+ <p style="margin-bottom:10px"><span style="font-weight:bold;color:#94E6E6"><a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19420&ps=20&dm=2">Re: Burton's Alice In Wonderland</a></span><br>sailor says:<br>"Looks like the girl is too old to play Alice. Alice is the archetypal English girl - sweet, ..." <a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19420&ps=20&dm=2"><em>More&#187;</em></a>
261
+ </p><p style="margin-bottom:10px"><span style="font-weight:bold;color:#94E6E6"><a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19419&ps=20&dm=2">PUBLIC ENEMIES</a></span><br>sidonie says:<br>"Margaret and David are echoing similar comments to US reviews. That it is a bit of a mess, ..." <a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19419&ps=20&dm=2"><em>More&#187;</em></a>
262
+ </p>
263
+ </div>
264
+ </div>
265
+ <!-- END TMBEXTRACT //-->
266
+ </td>
267
+ <td><!-- PRINT_CONTENT_START -->
268
+ <div id="content">
269
+ <div id="storyImage">
270
+ <!-- video block -->
271
+ <noscript><h1>Public Enemies</h1></noscript>
272
+ <div style="margin-left:3px"><a class="singleClip" title="Javascript and flash 9 required to view this link." href="rtmp://cp44823.edgefcs.net/ondemand/flash/tv/streams/atthemovies/20090729_publicenemies.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/publicenemies_large.jpg" width="400" height="224" style="border:0px" alt="Public Enemies"></div></a>
273
+
274
+ <noscript>
275
+ <br><span style="color:#ffffff">Flash Player 9 and JavaScript is required to view video in the page. Alternatively use the Windows Media links below.</span></noscript>
276
+
277
+ <div id="altWinMedia"><span><a href="/atthemovies/broadband/20090729_2230/meta/hq1.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq1.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq1.asx" title="Alternative Windows Media Video: Slow connections" target="_blank">Slow</a></div></span>
278
+ </div>
279
+
280
+ <!-- // video block -->
281
+
282
+ <p class="description">The Feds try to take down notorious American gangsters John Dillinger, Baby Face Nelson and Pretty Boy Floyd during a booming crime wave in the 1930s.</p>
283
+
284
+ <p class="score" style="border:0;"> Margaret: <img src="/atthemovies/img/bthree.gif" alt="three stars" class="rating"> David: <img src="/atthemovies/img/bthree-and-a-half.gif" alt="three-and-a-half stars" class="rating"> </p>
285
+ </div>
286
+ <h3>Public Enemies</h3>
287
+ <p class="ratd"> Rated <em>MA</em></p>
288
+
289
+ <p><em>Review by David Stratton</em></p>
290
+
291
+ <p>In 1933, John Dillinger, JOHNNY DEPP, escapes from the Indiana State Penitentiary and, along with other members of his gang, including Alvin Karpis, GIOVANNI RIBISI, and Baby Face Nelson, STEPHEN GRAHAM, embarks on a series of violent bank robberies. The activities of Dillinger�s gang bring a quick response from FBI Director J. Edgar Hoover, BILLY CRUDUP, who assigns agent Melvin Purvis, CHRISTIAN BALE, to the case. Meanwhile Dillinger has fallen in love with hat-check girl Billie Frechette, MARION COTILLARD. <BR><BR>PUBLIC ENEMIES looks like the perfect subject for Michael Mann � a crime movie featuring a pair of violent antagonists. But unlike Mann�s masterpiece, HEAT, the new film is often a bit of a mess. Dante Spinotti�s all-over-the-place HD camerawork is not much help, but there�s something wrong with the basic storytelling, especially in the early scenes where it�s difficult to work out who�s who (DAVID WENHAM makes the most fleeting of appearances). <BR><BR>Once things settle down the film improves, though despite the fact that JOHNNY DEPP looks a lot like the real Dillinger, his performance is a bit one-dimensional. Oscar-winner MARION COTILLARD makes a solid appearance as the rather touching Billie, and CHRISTIAN BALE is dogged as Purvis. The many shoot-outs are handled in a chaotic style, but the film only really comes together in the last part with the very tense segment of the trap set for Dillinger as he and Billie attend a gangster movie at Chicago�s Biograph cinema. There�s a lot to admire in PUBLIC ENEMIES, but it�s not up to the standard of Mann�s, or Depp�s, best work.</p>
292
+
293
+ <h3>Further comments</h3>
294
+ <p>DAVID: Margaret?<BR><BR>MARGARET: No, I totally agree with you. He's such a slick director, Mike Mann.<BR><BR>DAVID: Intelligent director. <BR><BR>MARGARET: Yes, and has made some splendid films. I mean, you mentioned HEAT, but I loved LAST OF THE MOHICANS, as well. <BR><BR>DAVID: And MANHUNTER is a good film, too.<BR><BR>MARGARET: Yeah, absolutely. He's got some fine films in there. But I actually found a complete lack of character development here and, even looking at the clips again, people just seem to be reciting their lines. They don't seem to be revealing anything about the character and Bryan Burrough's book is the basis for this film and, apparently it's very well respected.<BR><BR>DAVID: Yeah, very accurate.<BR><BR>MARGARET: Yes. Of Dillinger's life. And sometimes I think you can be so close up to the truth that you can't see the overview for a movie, which is, a dramatic structure and character development.<BR><BR>DAVID: Which needs a good narrative arc.<BR><BR>MARGARET: Yeah. So much for accuracy but who cares.<BR><BR>DAVID: I just found in those early scenes it was just a bit of a muddle.<BR><BR>MARGARET: Yeah.<BR><BR>DAVID: I mean I couldn't work out who was who at all.<BR><BR>MARGARET: No, I didn't even get a chance to make sure it was David Wenham, actually. He came and went so quickly. Look, I'm only giving this three stars, I'm afraid.<BR><BR>DAVID: I think it's got style. I'm giving it three and a half.<BR><BR>CORRECTION NOTE: This review has been corrected. The review that went to air incorrectly named Ronan Bennett as the author of the book, rather than Bryan Burrough.</p>
295
+
296
+ <div class="hideorshow-review">
297
+ <div id="audiencecomment">
298
+ <h3>Your rating: Public Enemies</h3>
299
+ <form action="http://www.abc.net.au/atthemovies/audience/blank.htm" name="revForm" id="reviewForm" method="post" target="revThanks" onSubmit="return formCheck(this)">
300
+ <input type="hidden" name="GuestbookID" value="394" >
301
+ <input type="hidden" name="subject" id="sbj" value="PUBLICENEMIES" >
302
+ <div id="favFormThx"> <strong>Thank you.</strong><br>
303
+ <br>
304
+ Your comment and rating will appear below once approved. <br>
305
+ <br>
306
+ To review or discuss this movie in more detail,<br>
307
+ please use the <a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19" style="color:#CC6600"><strong>message board</strong></a>. </div>
308
+ <table border="0" cellspacing="0" cellpadding="0" id="favForm">
309
+ <tr>
310
+ <td class="gbkSubhead">Name:<br>
311
+ <span class="smlTxt">(or nickname)</span></td>
312
+ <td><input type="text" name="name" id="yname" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
313
+ </tr>
314
+ <tr>
315
+ <td class="gbkSubhead">Email:</td>
316
+ <td><input type="text" name="email" id="yemail" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
317
+ </tr>
318
+ <tr>
319
+ <td class="gbkSubhead">Rating:</td>
320
+ <td><select name="score" id="score" style="margin:0" onFocus="this.style.background='#FFF6E9'">
321
+ <option value="na">Select...</option>
322
+ <option value="0">Zero stars</option>
323
+ <option value="1">Half a star</option>
324
+ <option value="2">One star</option>
325
+ <option value="3">One and a half stars</option>
326
+ <option value="4">Two stars</option>
327
+ <option value="5">Two and a half stars</option>
328
+ <option value="6">Three stars</option>
329
+ <option value="7">Three and a half stars</option>
330
+ <option value="8">Four stars</option>
331
+ <option value="9">Four and a half stars</option>
332
+ <option value="10">Five stars</option>
333
+ </select>
334
+ </td>
335
+ </tr>
336
+ <tr>
337
+ <td class="gbkSubhead" valign="top">Comment:<br>
338
+ <span class="smlTxt">(max 100 words)</span> </td>
339
+ <td><textarea name="remark" id="remark" class="favField" onKeyUp="remainingWords(this, this.value, 100)" onFocus="this.style.background='#FFF6E9'"></textarea>
340
+ <p style="margin:0"><a href="/atthemovies/txt/s1224754.htm" style="color:#A0410F" >Conditions of use &#187;</a></p></td>
341
+ </tr>
342
+ <tr>
343
+ <td colspan="2" align="right" height="37"><input type="Submit" name="Action" value="Submit" class="gbkbutton" onMouseOver="this.style.background='#FFEDD2'" onMouseOut="this.style.background='#FFD495'">
344
+ </td>
345
+ </tr>
346
+ </table>
347
+ </form>
348
+ <!-- comments form submits to this iframe, hidden from js enabled user -->
349
+ <IFRAME width="375" height="20" src="/atthemovies/audience/blank.htm" TITLE="blank" name="revThanks" frameborder="0" scrolling="no"></IFRAME>
350
+ <div id="wordCount"> Word count<br>
351
+ <div id="wcNum">0</div>
352
+ </div>
353
+ </div>
354
+ <!-- // audiencecomment -->
355
+ <div id="allComments">
356
+ <div class="PUBLICENEMIES"><em class="dd">31/07/2009 2:40 PM</em><em>Name</em>: Matto<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars10.gif"><br><em>Comment</em>: Margaret and David, I think you two have completely missed the point. Michael Mann is such a smart guy, he does everything for a reason.<BR>Depp = one dimensional? He doesn't even know why he robs banks, he is living in the moment. <BR>Hand-held is a detraction? Think of all the period peices you have seen - they are all classically made. PE puts you in the 1930s. The action is exciting with this style.<BR>Opening 30mins a muddle? Dillinger has just escaped, we are looking at his confusion too.<BR>Its not typical Hollywood, and its all the better for it. </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 11:03 AM</em><em>Name</em>: Yurimeister<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars4.gif"><br><em>Comment</em>: Terrible!! The DOP overdosed on acid to cope with his parkinsons disease and the result is an unbearably shaky camera. What is going on!?! <BR><BR>Combined with a patchy uninteresting script, mismatched and badly timed score, bland and uninspiring performances, no real insight into who Dillinger was and to be honest nothing hugely interesting about the way Depp portrayed him, I was really struggling not to walk out!!<BR><BR>Slagging aside, there are a few redeeming features such as a few good moments of humour and escapism, a solid third act with a strong ending, but frankly watch Road to perdition instead.<BR><BR><BR> </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 7:57 AM</em><em>Name</em>: judith parker<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars8.gif"><br><em>Comment</em>: I thought Public Enemies was very realistic...not a glossy &quot; Holywood &quot; production, much more a glimpse into the real world...the events as they occurred. I think that is the beauty of Johnny Depp's acting and style - you feel as though you are seeing the real character in his setting of the 1930's. Real life - where sometimes people dont say or do the right thing all the time. I thought this an excellent film and I&quot;m so glad I took the trouble to see it. <BR>best wishes, Judith Parker </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 1:41 AM</em><em>Name</em>: Willy<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars5.gif"><br><em>Comment</em>: I found entertaining at points but overall I was dissapointed. Such and entourage of great actors backed with a great directer you would think they could of done better, and the cinema photography took away the theatrical feel of the whole film for me. </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 1:40 AM</em><em>Name</em>: Dominic Kennedy<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars7.gif"><br><em>Comment</em>: It was great to see Michael Mann go back to what he is so good at. The &quot;shoot out&quot; scenes are particulary well done and very intricate. Manns attention to detail in regards to &quot;Point of View&quot; is fantastic. Character development lacked. I urge people to watch HEAT if you are after a true masterpiece!<BR><BR><BR> </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 12:52 AM</em><em>Name</em>: Matthew<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars8.gif"><br><em>Comment</em>: While I feel that David and Margaret had very valid points with the movie, I felt they were a little too harsh.<BR><BR>The movie is quite fast paced at times and Margarets comments about the start of the movie are quite true, but I felt the fun, yet subtly gritty, aesthetic of the movie carried through.<BR><BR>I also felt the comments on the gunfights were overly harsh. They were great I thought.<BR><BR>Seeing a movie with Johnny Depp, Christian Bale and Michael Mann as director, I went expecting a good time and thats exactly what I got out of the movie. </div><div class="PUBLICENEMIES"><em class="dd">31/07/2009 12:09 AM</em><em>Name</em>: Paul<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars8.gif"><br><em>Comment</em>: I think David and Margaret watched a different movie to the one I saw. Confusing? Lack of character development? Can't work out who's who? No, no and no. Even my teenage kids understood what was what. And who cares if you can't tell it's David Wenham? Should they do subtiltles to point out the Aussie? It's a good film. Sure it's 20 minutes too long - but HD gives it a nice look, while the shootouts are contained and realistic. The end is very well handled - aside from the unecessary scene with Billie in jail which labours the point. </div><div class="PUBLICENEMIES"><em class="dd">30/07/2009 12:41 PM</em><em>Name</em>: ray-ray<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars8.gif"><br><em>Comment</em>: all right movie cauld be better in places </div><div class="PUBLICENEMIES"><em class="dd">30/07/2009 10:06 AM</em><em>Name</em>: Jackie Ring <br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars10.gif"><br><em>Comment</em>: i went to see it last night and i am in love with the classic gangsta movies, this movie is one of the greatest told movies.Johnny Deep is absolutely spellbinding, but yet again i love him in anything.<BR><BR>this movie i would pay to see over and over again </div><div class="PUBLICENEMIES"><em class="dd">30/07/2009 9:17 AM</em><em>Name</em>: Janet Simpson<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars10.gif"><br><em>Comment</em>: I don't agree...this movie is superb and John Dillinger goes to the movies with Anna Sage not Billie. </div><div class="PUBLICENEMIES"><em class="dd">29/07/2009 10:27 PM</em><em>Name</em>: Leigh<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars7.gif"><br><em>Comment</em>: Just got home from an advanced screening which i think was not the best quality print!<BR>I found the initial set up and key characters interesting but this started to get tiresome quickly.<BR>At about the half way mark i was seriously not enjoying this and wondering where the hell it was going.<BR>But thanks to a terrific third act everything falls into place nicely and builds some genuine tension and real entertainment!<BR>Johnny Depp is great as always but the addition of Marion Cotillard is a terrific choice! It's overlong and at times aimless yet in the end this is quite good! </div>
357
+ </div>
358
+ </div>
359
+ <!-- // hideorshow-review -->
360
+ </div>
361
+ <!-- PRINT_CONTENT_END --></td>
362
+ <td class="sidebarcontainer"><div id="related">
363
+ <div class="hideorshow-review">
364
+ <h3>Production details</h3>
365
+ <p class="moviedetails"> <strong>Release date:</strong> 30/07/2009<br>
366
+
367
+ <strong>Release details:</strong> Wide national release. Check daily papers for screening details.<br>
368
+
369
+ <strong>Classification:</strong> MA<br>
370
+
371
+ <strong>Duration:</strong> 139 mins<br>
372
+
373
+ <strong>Genre:</strong> Gangster<br>
374
+
375
+ <strong>Director:</strong> Michael Mann<br>
376
+
377
+ <strong>Lead actor:</strong> Johnny Depp<br>
378
+
379
+ <strong>Cast:</strong> James Russo, David Wenham, Christian Stolte<br>
380
+
381
+ <strong>Producer:</strong> Michael Mann, Kevin Misher, Gusmano Cesaretti, Kevin De La Noy<br>
382
+
383
+ <strong>Screenplay:</strong> Ronan Bennett, Michael Mann & Ann Biderman. Adapted from the book "Public Enemies" by Bryan Burrough.<br>
384
+
385
+ <strong>Music:</strong> Elliot Goldenthal<br>
386
+
387
+ <strong>Distributor:</strong> Universal<br>
388
+
389
+ <strong>Language:</strong> English<br>
390
+
391
+ <strong>Country:</strong> United States<br>
392
+
393
+ <br clear="all">
394
+ &nbsp;</p>
395
+ </div>
396
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
397
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
398
+
399
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
400
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
401
+
402
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
403
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
404
+
405
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
406
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
407
+
408
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
409
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
410
+
411
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
412
+
413
+
414
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2631026.htm">Brisbane International Film Festival Highlights</a></td></tr>
415
+
416
+
417
+ </table>
418
+
419
+ </div>
420
+ <!-- END RELATED //-->
421
+ </td>
422
+ </tr>
423
+ </tbody>
424
+ </table>
425
+ <!-- END CONTENT CONTAINER -->
426
+ <div id="footer">
427
+ <p><a href="http://www.abc.net.au/"><img src="/atthemovies/img/logo_abc_footer.gif" alt="ABC Online"></a> <a href="http://www.abc.net.au/common/copyrigh.htm" target="_top" title="Copyright">&#169; 2009 ABC</a> | <a href="http://www.abc.net.au/privacy.htm" target="_top" title="Privacy Policy">Privacy Policy</a>
428
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
429
+ <!-- n -->
430
+
431
+
432
+ </div>
433
+ <!-- END FOOTER //-->
434
+ </body>
435
+ </html>
@@ -0,0 +1,435 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Apache
3
+ Content-Type: text/html
4
+ Cache-Control: max-age=299
5
+ Expires: Sun, 02 Aug 2009 05:18:30 GMT
6
+ Date: Sun, 02 Aug 2009 05:13:31 GMT
7
+ Content-Length: 24025
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=72.247.247.52.255871249190011359; expires=Sun, 02-Aug-2009 05:43:31 GMT; path=/; domain=abc.net.au
10
+
11
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
12
+ "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
13
+ <html>
14
+ <head>
15
+ <title>At the Movies: Coraline</title>
16
+
17
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18
+
19
+ <meta name="Title" content="At the Movies: Coraline">
20
+
21
+ <meta name="Description" content="An adventurous girl finds another world that is a strangely idealized version of her frustrating home, but">
22
+
23
+ <meta name="Keywords" content="Margaret Pomeranz, Henry Selick, Dakota Fanning, Claire Jennings, Mary Sandell, Henry Selick, Bruno Coulais, They Might Be Giants, Universal Pictures International, Animation, Adventure">
24
+
25
+ <meta name="Date" content="29/07/2009">
26
+
27
+ <meta name="Language" content="English">
28
+
29
+ <meta name="Publisher" content="Australian Broadcasting Corporation">
30
+
31
+ <meta name="Publisher" content="(SCHEME=URL)">
32
+
33
+ <meta name="Rights" content="Copyright 2009&nbsp;, Australian Broadcasting Corporation. Other rights may be held as detailed in text. www.abc.net.au/common/copyrigh.htm">
34
+
35
+ <meta name="ABC-DateReversed" content="">
36
+
37
+ <meta name="ABC-Gateway" content="">
38
+
39
+ <meta name="ABC-Site" content="TV, Movie/Film">
40
+
41
+ <meta name="ABC-Author" content="review">
42
+
43
+ <meta name="ABC-ResourceType" content="0">
44
+
45
+ <meta http-equiv="imagetoolbar" content="no">
46
+ <link rel="stylesheet" href="/atthemovies/css/atm.css" type="text/css" media="all">
47
+ <link rel="stylesheet" type="text/css" media="print" href="/atthemovies/css/print.css">
48
+ <script type="text/javascript" src="/tv/cinerama/scripts/swfobject.js"></script>
49
+ <script type="text/javascript" src="/tv/cinerama/scripts/cinerama.js"></script>
50
+ <script language="JavaScript" type="text/javascript">
51
+ //add onload function audShow;
52
+ function addEvent(obj, evType, fn){
53
+ if (obj.addEventListener){
54
+ obj.addEventListener(evType, fn, false);
55
+ return true;
56
+ } else if (obj.attachEvent){
57
+ var r = obj.attachEvent("on"+evType, fn);
58
+ return r;
59
+ } else {
60
+ return false;
61
+ }
62
+ }
63
+
64
+ function audShow() {
65
+ // display word count only if js enabled
66
+ document.getElementById("wordCount").style.display='inline';
67
+ }
68
+ function changeAction() {
69
+ // avoids non-js form submission
70
+ if (document.revForm) {
71
+ document.revForm.action = 'http://www2b.abc.net.au/guestbookcentral/addentry.asp';
72
+ }
73
+ }
74
+ addEvent(window, 'load', audShow);
75
+ addEvent(window, 'load', changeAction);
76
+ function formCheck(zeForm) {
77
+ // validate fields
78
+ if (zeForm.name.value == "") {
79
+ alert("Please enter your name or nickname.");
80
+ document.getElementById("yname").style.background='#FFFDC8';
81
+ return false;
82
+ }
83
+ if (zeForm.email.value == "") {
84
+ alert("Please enter your email address.");
85
+ document.getElementById("yemail").style.background='#FFFDC8';
86
+ return false;
87
+ }
88
+ // have they left a rating
89
+ if (zeForm.score.options[0].selected && zeForm.score.options[0].value=="na") {
90
+ alert("You forgot to rate the movie!");
91
+ document.getElementById("score").style.background='#FFFDC8';
92
+ return false;
93
+ }
94
+
95
+ // check for http
96
+ spamcheck=zeForm.remark.value;
97
+ if (spamcheck.indexOf("http")!=-1) {
98
+ document.revForm.action = 'http://www.abc.net.au/atthemovies/audience/blank.htm';
99
+ }
100
+
101
+ // check word count
102
+ wct = cnt(zeForm.remark.value);
103
+ if (wct > 100) {
104
+ alert("Comments are limited to 100 words. You've written "+wct+" words!");
105
+ document.getElementById("remark").style.background='#FFFDC8';
106
+ return false;
107
+ }
108
+
109
+ // replace usual suspect bad characters (they break XML)
110
+ badChars = Array ('�', '�', '�', '�', '�', '�', '�', '�', '�', '�', '�', '�','�','�');
111
+ goodChars = Array ('...', '-', '-', '"', '"', 'o', 'e', 'e', 'n', 'a', '-', '\'','\'','\'');
112
+ fld = document.getElementById("remark");
113
+ for(i=0;i<badChars.length;i++){
114
+ restring = new RegExp( badChars[i] , 'g');
115
+ fld.value = fld.value.replace(restring,goodChars[i]);
116
+ }
117
+ fldn = document.getElementById("yname");
118
+ for(j=0;j<badChars.length;j++){
119
+ restringj = new RegExp( badChars[j] , 'g');
120
+ fldn.value = fldn.value.replace(restringj,goodChars[j]);
121
+ }
122
+
123
+
124
+
125
+ // display thankyou div layer and hide form.
126
+ document.getElementById("favFormThx").style.display='block';
127
+ document.getElementById("favForm").style.display='none';
128
+ document.getElementById("wordCount").style.display='none';
129
+
130
+ // all clear, submit the form
131
+ return true;
132
+ }
133
+
134
+ // word count function
135
+ function cnt(theform){
136
+ var y=theform;
137
+ var r = 0;
138
+ a=y.replace('\n',' ');
139
+ a=a.split(' ');
140
+ for (z=0; z<a.length; z++) {if (a[z].length > 0) r++;}
141
+ return r;
142
+ }
143
+
144
+ function remainingWords(textAreaContent,textAreaContentValue, maxWords)
145
+ {
146
+ // Determine the number of words we have left
147
+ var numberofwords = cnt(textAreaContentValue);
148
+ wordsLeft = maxWords - numberofwords;
149
+ if (wordsLeft < 1)
150
+ { // if 100 change color to red
151
+ document.getElementById("wcNum").style.color='red';
152
+ } else {
153
+ document.getElementById("wcNum").style.color='#330000';
154
+ }
155
+ // update word count number
156
+ document.getElementById("wcNum").innerHTML=(0+numberofwords);
157
+ }
158
+
159
+ // windows media alt box
160
+ function showWindows() {
161
+ document.getElementById("windowsMed").style.display='block';
162
+ }
163
+ </script>
164
+
165
+ <style type="text/css">
166
+ /* temp */
167
+ #windowsMed {display:none;float:right;width:150px;background:#0d0d0d}
168
+
169
+ </style>
170
+ <style type="text/css">
171
+ /* tmp styles */
172
+ #content #storyImage #altWinMedia {
173
+ background:#0d0d0d;
174
+ height:23px;
175
+ margin:3px 3px 0px 3px;
176
+ font-size:11px;
177
+ }
178
+ #content #storyImage #altWinMedia a {color:#D47F2A}
179
+ #content #storyImage #altWinMedia span {display:block;color:#ABABAB;padding:4px 5px 0px 0px;}
180
+
181
+ .hideorshow-review {display:none}
182
+ .hideorshow-review {
183
+ display:block;
184
+ }
185
+
186
+ </style>
187
+ </head><body>
188
+ <div id="globalnav">
189
+ <!-- ABC nav: Global Nav -->
190
+ <style type="text/css"><!--
191
+ @import url(http://www.abc.net.au/includes/css/globalNav.css); -->
192
+ </style>
193
+ <div id="gN_Nav">
194
+ <div id="gN_align">
195
+ <form action="http://search.abc.net.au/search/search.cgi" method="GET" id="gN_form" target="_top">
196
+ <input type="hidden" name="form" value="simple">
197
+ <input type="hidden" name="num_ranks" value="20">
198
+ <input type="hidden" name="collection" value="abcall">
199
+ <label for="gN_query"><a href="http://search.abc.net.au/search/search.cgi?collection=abcall&amp;form=simple" target="_top" title="Search the ABC">Search the ABC</a></label>
200
+ <input type="text" id="gN_query" name="query" value="" size="20" maxlength="30">
201
+ <input type="submit" id="gN_submit" value="Search the ABC" title="Search the ABC">
202
+ </form>
203
+ <p id="gN_text"><a id="gN_home" href="http://www.abc.net.au/" target="_top">ABC&nbsp;Home</a><span> | </span><a id="gN_radio" class="pipe" href="http://www.abc.net.au/radio/" target="_top">Radio</a><span> | </span><a id="gN_tv" class="pipe" href="http://www.abc.net.au/tv/" target="_top">Television</a><span> | </span><a id="gN_news" class="pipe" href="http://www.abc.net.au/news/" target="_top">News</a><span> | </span><a id="gN_local" class="pipe" href="http://www.abc.net.au/local/" target="_top">Your&nbsp;Local&nbsp;ABC</a><span> | </span><a id="gN_more" class="pipe" href="http://www.abc.net.au/subjects.htm" target="_top">More&nbsp;Subjects&#8230;</a><span> | </span><a id="gN_shop" href="http://shop.abc.net.au/" target="_top">Shop</a></p>
204
+ </div>
205
+ </div>
206
+ <script type="text/javascript" src="http://www.abc.net.au/includes/scripts/global.js"></script>
207
+ <noscript>
208
+ <img alt="" border="0" name="DCSIMG" width="1" height="1" src="http://statse.webtrendslive.com/dcsg85fae000004n0vfjpj8oa_9m4q/njs.gif?dcsuri=/nojavascript&amp;WT.js=No">
209
+ </noscript>
210
+ <!-- end ABC nav -->
211
+
212
+ </div>
213
+ <!-- END GLOBALNAV //-->
214
+ <div id="outerWrap"></div>
215
+ <div id="banner">
216
+ <a href="http://www.abc.net.au/atthemovies/" target="_top"><img src="/atthemovies/img/1p.gif" alt="At the Movies" class="title"></a>
217
+ <div id="masthead">
218
+ Wed 10pm, Sun 6pm <em>ABC1</em>; &nbsp;&nbsp;&nbsp;Sat 8pm <em>ABC2</em>
219
+ </div>
220
+ <!-- END MASTHEAD //-->
221
+ <div id="search">
222
+ <form action="http://search.abc.net.au/search/search.cgi" method="GET" name="simple">
223
+ <input type=hidden name="form" value="simple">
224
+ <input type=hidden name="scope" value="atthemovies">
225
+ <input type=hidden name="num_ranks" value="20">
226
+ <input type=hidden name="collection" value="tv">
227
+ Search <!--Search by <input type="radio" name="meta_a" value="review">review&nbsp;<input type="radio" name="meta_a" value="interview">interview--> <input type="text" name="query" value="" title="Search At the Movies" size="14" id="searchbox"> <input type="submit" value="Go" title="Search At the Movies" id="searchbutton"></form>
228
+ </div>
229
+ <!-- END SEARCH //-->
230
+ <div id="functions"><a title="Email this page to a friend" href="/cgi-bin/common/mailto/mailto-nojs_query.pl?http://www.abc.net.au/atthemovies/txt/s2625742.htm">Send to a friend</a></div>
231
+ <!-- END FUNCTIONS //-->
232
+ </div>
233
+ <!-- END BANNER //-->
234
+ <table id="contentcontainer" align="center" cellpadding="0" cellspacing="0" border="0" summary="Layout table used to contain content">
235
+ <caption class="hidden">
236
+ <a href="/atthemovies/">At the Movies</a>
237
+ </caption>
238
+ <tbody>
239
+ <tr>
240
+ <td class="featurecontainer"><div id="sitenav">
241
+ <ul>
242
+ <li><a href="/atthemovies/">Home</a></li>
243
+ <li class="selected"><a href="/atthemovies/review/">Movie Reviews</a></li>
244
+ <li><a href="/atthemovies/interview/">Interviews</a></li>
245
+ <li><a href="/atthemovies/news/">Movie News</a></li>
246
+ <li><a href="/tv/geo/atthemovies/">Download Video</a></li>
247
+ <!-- <li><a href="/atthemovies/movieupdates/">Mailing list</a></li> -->
248
+ <li><a href="/atthemovies/events/">Movie Events</a></li>
249
+ <li><a href="/atthemovies/extras/">Extras</a></li>
250
+ <li><a href="/atthemovies/about/">About the Show</a></li>
251
+ <li><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19">Message Board</a></li>
252
+ <!--<li><a href="/atthemovies/contact/">Contact Us</a></li>-->
253
+
254
+ </ul>
255
+ </div>
256
+ <!-- END SITENAV //-->
257
+ <div id="mbextract">
258
+ <h3 id="yoursay"><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19"><span class="hidden">Your Comments</span></a></h3>
259
+ <div style="padding:0px 3px 0px 9px">
260
+ <p style="margin-bottom:10px"><span style="font-weight:bold;color:#94E6E6"><a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19420&ps=20&dm=2">Re: Burton's Alice In Wonderland</a></span><br>sailor says:<br>"Looks like the girl is too old to play Alice. Alice is the archetypal English girl - sweet, ..." <a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19420&ps=20&dm=2"><em>More&#187;</em></a>
261
+ </p><p style="margin-bottom:10px"><span style="font-weight:bold;color:#94E6E6"><a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19419&ps=20&dm=2">PUBLIC ENEMIES</a></span><br>sidonie says:<br>"Margaret and David are echoing similar comments to US reviews. That it is a bit of a mess, ..." <a href="http://www2b.abc.net.au/tmb/Client/Message.aspx?b=19&m=19419&ps=20&dm=2"><em>More&#187;</em></a>
262
+ </p>
263
+ </div>
264
+ </div>
265
+ <!-- END TMBEXTRACT //-->
266
+ </td>
267
+ <td><!-- PRINT_CONTENT_START -->
268
+ <div id="content">
269
+ <div id="storyImage">
270
+ <!-- video block -->
271
+ <noscript><h1>Coraline</h1></noscript>
272
+ <div style="margin-left:3px"><a class="singleClip" title="Javascript and flash 9 required to view this link." href="rtmp://cp44823.edgefcs.net/ondemand/flash/tv/streams/atthemovies/20090729_coraline.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/coraline_large.jpg" width="400" height="224" style="border:0px" alt="Coraline"></div></a>
273
+
274
+ <noscript>
275
+ <br><span style="color:#ffffff">Flash Player 9 and JavaScript is required to view video in the page. Alternatively use the Windows Media links below.</span></noscript>
276
+
277
+ <div id="altWinMedia"><span><a href="/atthemovies/broadband/20090729_2230/meta/hq5.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq5.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq5.asx" title="Alternative Windows Media Video: Slow connections" target="_blank">Slow</a></div></span>
278
+ </div>
279
+
280
+ <!-- // video block -->
281
+
282
+ <p class="description">An adventurous girl finds another world that is a strangely idealized version of her frustrating home, but it has sinister secrets.</p>
283
+
284
+ <p class="score" style="border:0;"> Margaret: <img src="/atthemovies/img/bfour.gif" alt="four stars" class="rating"> David: <img src="/atthemovies/img/bfour.gif" alt="four stars" class="rating"> </p>
285
+ </div>
286
+ <h3>Coraline</h3>
287
+ <p class="ratd"> Rated <em>PG</em></p>
288
+
289
+ <p><em>Review by Margaret Pomeranz</em></p>
290
+
291
+ <p>The intensely time-consuming art of stop motion animation comes to glorious life in CORALINE, an adaptation of Neil Gaiman�s best-selling children�s novel. Coraline � DAKOTA FANNING - has just moved into one of the Pink Palace apartments with her busy parents, voiced by TERI HATCHER and JOHN HODGMAN. Downstairs live two old thespians � DAWN FRENCH and JENNIFER SAUNDERS, and upstairs is Mr. Bobinsky - IAN MCSHANE -, an eccentric Russian circus performer. <BR><BR>When a neighbouring boy Wyble gives Coraline a doll that looks exactly like her she�s lured through a small door in the apartment into another world where her Other Mother with button eyes cooks wonderful meals, Other Dad creates a wonderful garden for her, everything is fun and Coraline is spoiled.<BR><BR>But there�s a price to pay for everything and soon Coraline realises that her new perfect other world is actually very sinister.<BR><BR>The 3D animation is just superb in CORALINE, the imagination of Neil Gaiman has taken flight with director Henry Selick, who was responsible for THE NIGHTMARE BEFORE CHRISTMAS and JAMES AND THE GIANT PEACH, amongst other films. This is quite a dark journey, I think it could be quite scary for young children, but it�s like so many fairy tales that have their dark and dangerous sides. And Coraline is not a sweet little heroine at all, she�s got an edge to her. <BR><BR>The film is so detailed, filled to the brim with magical images, wild entertainments and a life lesson for children with parents who are both busy working. The voice talents ground the film but it�s the rich imaginative world that�s created that make this animated film a winner for me.</p>
292
+
293
+ <h3>Further comments</h3>
294
+ <p>MARGARET: David?<BR><BR>DAVID: Oh, it's nice to hear you praising an animated film.<BR><BR>MARGARET: I know. It's rare, isn't it?<BR><BR>DAVID: Yeah. Look, I think this is a wonderfully inventive film. It's not exactly an original story because - I don't know why but there's been a tradition of fantasy stories about little girls, never little boys it seems, setting off through a portal on some magical adventure, from Alice in Wonderland, Alice Through the Looking Glass, through to Dorothy and the WIZARD OF OZ and more recently PAN'S LABYRINTH, for example. They're all basically the same thing.<BR><BR>MARGARET: Isn't it interesting that they're all...<BR><BR>DAVID: Girls.<BR><BR>MARGARET: What do boys do? They go get guns and go shoot 'em up and travel into outer space?<BR><BR>DAVID: Yeah, I guess they do. Yeah, and girls enter this fantasy world.<BR><BR>MARGARET: Yeah.<BR><BR>DAVID: Where, of course, they find things are not as beautiful and wonderful as they thought they were and there's no place like home. But I didn't see this in 3D and I wish I had, because I gather that the 3D is used really well in the fantasy sequences or the sequences...<BR><BR>MARGARET: Yeah, it looks amazing.<BR><BR>DAVID: Yeah. I was a bit disappointed not seeing it like that but I guess most cinemas, or many cinemas at least, will be showing it in 3D. Worth seeing like that. I'm giving it four.<BR><BR>MARGARET: Same here. I am, too.<BR></p>
295
+
296
+ <div class="hideorshow-review">
297
+ <div id="audiencecomment">
298
+ <h3>Your rating: Coraline</h3>
299
+ <form action="http://www.abc.net.au/atthemovies/audience/blank.htm" name="revForm" id="reviewForm" method="post" target="revThanks" onSubmit="return formCheck(this)">
300
+ <input type="hidden" name="GuestbookID" value="394" >
301
+ <input type="hidden" name="subject" id="sbj" value="CORALINE" >
302
+ <div id="favFormThx"> <strong>Thank you.</strong><br>
303
+ <br>
304
+ Your comment and rating will appear below once approved. <br>
305
+ <br>
306
+ To review or discuss this movie in more detail,<br>
307
+ please use the <a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19" style="color:#CC6600"><strong>message board</strong></a>. </div>
308
+ <table border="0" cellspacing="0" cellpadding="0" id="favForm">
309
+ <tr>
310
+ <td class="gbkSubhead">Name:<br>
311
+ <span class="smlTxt">(or nickname)</span></td>
312
+ <td><input type="text" name="name" id="yname" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
313
+ </tr>
314
+ <tr>
315
+ <td class="gbkSubhead">Email:</td>
316
+ <td><input type="text" name="email" id="yemail" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
317
+ </tr>
318
+ <tr>
319
+ <td class="gbkSubhead">Rating:</td>
320
+ <td><select name="score" id="score" style="margin:0" onFocus="this.style.background='#FFF6E9'">
321
+ <option value="na">Select...</option>
322
+ <option value="0">Zero stars</option>
323
+ <option value="1">Half a star</option>
324
+ <option value="2">One star</option>
325
+ <option value="3">One and a half stars</option>
326
+ <option value="4">Two stars</option>
327
+ <option value="5">Two and a half stars</option>
328
+ <option value="6">Three stars</option>
329
+ <option value="7">Three and a half stars</option>
330
+ <option value="8">Four stars</option>
331
+ <option value="9">Four and a half stars</option>
332
+ <option value="10">Five stars</option>
333
+ </select>
334
+ </td>
335
+ </tr>
336
+ <tr>
337
+ <td class="gbkSubhead" valign="top">Comment:<br>
338
+ <span class="smlTxt">(max 100 words)</span> </td>
339
+ <td><textarea name="remark" id="remark" class="favField" onKeyUp="remainingWords(this, this.value, 100)" onFocus="this.style.background='#FFF6E9'"></textarea>
340
+ <p style="margin:0"><a href="/atthemovies/txt/s1224754.htm" style="color:#A0410F" >Conditions of use &#187;</a></p></td>
341
+ </tr>
342
+ <tr>
343
+ <td colspan="2" align="right" height="37"><input type="Submit" name="Action" value="Submit" class="gbkbutton" onMouseOver="this.style.background='#FFEDD2'" onMouseOut="this.style.background='#FFD495'">
344
+ </td>
345
+ </tr>
346
+ </table>
347
+ </form>
348
+ <!-- comments form submits to this iframe, hidden from js enabled user -->
349
+ <IFRAME width="375" height="20" src="/atthemovies/audience/blank.htm" TITLE="blank" name="revThanks" frameborder="0" scrolling="no"></IFRAME>
350
+ <div id="wordCount"> Word count<br>
351
+ <div id="wcNum">0</div>
352
+ </div>
353
+ </div>
354
+ <!-- // audiencecomment -->
355
+ <div id="allComments">
356
+ <div class="CORALINE"><em class="dd">31/07/2009 4:35 AM</em><em>Name</em>: Calum<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars7.gif"><br><em>Comment</em>: This film is great. I imported the US Blu-Ray and that has a 3D version on the same disc but has quite a bit of ghosting and isn't the same as RealD.<BR>I'm over 3D to be honest, movies should be good for what they have in them, not for how they are presented, yet it seems movies just fall back onto 3D and most of them aren't the greatest.<BR>Henry Selick is god, bring on James and the Giant Peach Blu-Ray! </div><div class="CORALINE"><em class="dd">30/07/2009 2:15 PM</em><em>Name</em>: roo<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars8.gif"><br><em>Comment</em>: awesums </div><div class="CORALINE"><em class="dd">29/07/2009 11:46 PM</em><em>Name</em>: phil<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars5.gif"><br><em>Comment</em>: what about arthur and the invisibles, or meet the robinsons, boys do travel to other worlds! </div><div class="CORALINE"><em class="dd">29/07/2009 11:45 PM</em><em>Name</em>: Bron<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars9.gif"><br><em>Comment</em>: I loved this gorgeous-looking movie that is wildly imaginative yet rather creepy and sinister! Took my 10 yr old son, his verdict: AWESOME! 3D version would be mind-blowing! Note of caution to parents of younger children and those who scare easily - the 'other' mother in this movie is nasty and scary. </div>
357
+ </div>
358
+ </div>
359
+ <!-- // hideorshow-review -->
360
+ </div>
361
+ <!-- PRINT_CONTENT_END --></td>
362
+ <td class="sidebarcontainer"><div id="related">
363
+ <div class="hideorshow-review">
364
+ <h3>Production details</h3>
365
+ <p class="moviedetails"> <strong>Release date:</strong> 06/08/2009<br>
366
+
367
+ <strong>Release details:</strong> Staggered wide national release. Opens Tasmania 30 July. All other states 6 August. Please check newspapers for screenings.<br>
368
+
369
+ <strong>Classification:</strong> PG<br>
370
+
371
+ <strong>Duration:</strong> 100 mins<br>
372
+
373
+ <strong>Genre:</strong> Animation, Adventure<br>
374
+
375
+ <strong>Director:</strong> Henry Selick<br>
376
+
377
+ <strong>Lead actor:</strong> Dakota Fanning<br>
378
+
379
+ <strong>Cast:</strong> Teri Hatcher, Jennifer Saunders, Dawn French<br>
380
+
381
+ <strong>Producer:</strong> Claire Jennings, Mary Sandell<br>
382
+
383
+ <strong>Screenplay:</strong> Henry Selick<br>
384
+
385
+ <strong>Music:</strong> Bruno Coulais, They Might Be Giants<br>
386
+
387
+ <strong>Distributor:</strong> Universal Pictures International<br>
388
+
389
+ <strong>Language:</strong> English<br>
390
+
391
+ <strong>Country:</strong> United States<br>
392
+
393
+ <br clear="all">
394
+ &nbsp;</p>
395
+ </div>
396
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
397
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
398
+
399
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
400
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
401
+
402
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
403
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
404
+
405
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
406
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
407
+
408
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
409
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
410
+
411
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
412
+
413
+
414
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2631026.htm">Brisbane International Film Festival Highlights</a></td></tr>
415
+
416
+
417
+ </table>
418
+
419
+ </div>
420
+ <!-- END RELATED //-->
421
+ </td>
422
+ </tr>
423
+ </tbody>
424
+ </table>
425
+ <!-- END CONTENT CONTAINER -->
426
+ <div id="footer">
427
+ <p><a href="http://www.abc.net.au/"><img src="/atthemovies/img/logo_abc_footer.gif" alt="ABC Online"></a> <a href="http://www.abc.net.au/common/copyrigh.htm" target="_top" title="Copyright">&#169; 2009 ABC</a> | <a href="http://www.abc.net.au/privacy.htm" target="_top" title="Privacy Policy">Privacy Policy</a>
428
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
429
+ <!-- n -->
430
+
431
+
432
+ </div>
433
+ <!-- END FOOTER //-->
434
+ </body>
435
+ </html>