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,416 @@
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:21:06 GMT
6
+ Date: Sun, 02 Aug 2009 05:16:06 GMT
7
+ Content-Length: 20618
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=198.142.23.98.281361249190166220; expires=Sun, 02-Aug-2009 05:46:06 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: Brisbane International Film Festival Highlights</title>
16
+
17
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18
+
19
+ <meta name="Title" content="At the Movies: Brisbane International Film Festival Highlights">
20
+
21
+ <meta name="Description" content="The Brisbane International Film Festival runs from 30 July to 9 August and highlights new cinema from around">
22
+
23
+ <meta name="Keywords" content=", , , , , , , ">
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/s2631026.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>Brisbane International Film Festival Highlights</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_biff.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/biff_large.jpg" width="400" height="224" style="border:0px" alt="Brisbane International Film Festival Highlights"></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/hq6.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq6.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq6.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 Brisbane International Film Festival runs from 30 July to 9 August and highlights new cinema from around the globe.</p>
283
+
284
+ <p class="score" style="border:0;"> </p>
285
+ </div>
286
+ <h3>Brisbane International Film Festival Highlights</h3>
287
+
288
+
289
+ <p>Brisbane International Film Festival opens on 30 July with the charming coming of age film AN EDUCATION directed by Lone Scherfig and based on a script by Nick Hornby. Starring new talent Carey Mulligan, Peter Sarsgaard and Alfred Molina it is set against the backdrop of swinging sixties London.<BR><BR>The "Colourise BIFF" strand has been programmed in conjuction with the "Colourise Festival" and presents films made by or about indigenous people from around the world including Marco Bechis�s BIRDWATCHERS about the tensions that arise when the indigenous Guarani-Kaiowa community attempts to reinhabit their land in Takuara, Brazil. <BR><BR>Other international highlights include Claire Denis� 35 SHOTS OF RUM, Costa Gavros� EDEN IS WEST, Ken Loach�s LOOKING FOR ERIC, and Jerzy Skolimowski�s <a href="http://www.abc.net.au/atthemovies/txt/s2258081.htm"><strong>FOUR NIGHTS WITH ANNA</strong></a>, and Venice 2008 favourites Ramin Bahrani's <a href="http://www.abc.net.au/atthemovies/txt/s2361592.htm"><strong>GOODBYE SOLO</strong></a> and Agnes Varda's <a href="http://www.abc.net.au/atthemovies/txt/s2361594.htm"><strong>THE BEACHES OF AGNES</strong></a>. There is also a chance to see parts 1 & 2 of Steven Soderbergh's epic CHE starring Benecio Del Toro as the young revolutionary. <BR><BR>While new Australian cinema goes from strength to strength with inclusions of Ana Kokkinos�s gritty portrayal of the complicated relationships between children and their mothers in BLESSED, Jonathan Auf der Heide's Tasmanian convict drama VAN DIEMEN'S LAND and David Caesar�s truckin� great PRIME MOVER - an love story with action and drama and a lot of big roadtrains! <BR><BR>This year's sidebar is a programme called "ASTERISKS: A REAPPRECIATION OF THE PHYSICAL PROPERTIES OF FILM" which features films that venture into the abstract and artistic realms and includes the second feature from Ivan Sen DREAMLANDS, Austrian film FILM IST. A GIRL & A GUN, Iranian director Abbas Kiarostami's SHIRIN and revisits KOYAANISQATSI, and several short films.<BR><BR>There�s also a mini retrospective to the early work of legendary French actress Jeanne Moreau.<BR><BR>For further details on the festival, visit their website: <a href="http://www.stgeorgebiff.com.au" class="external"><strong>www.stgeorgebiff.com.au</strong></a></p>
290
+
291
+ <div class="hideorshow-review">
292
+ <div id="audiencecomment">
293
+ <h3>Your rating: Brisbane International Film Festival Highlights</h3>
294
+ <form action="http://www.abc.net.au/atthemovies/audience/blank.htm" name="revForm" id="reviewForm" method="post" target="revThanks" onSubmit="return formCheck(this)">
295
+ <input type="hidden" name="GuestbookID" value="394" >
296
+ <input type="hidden" name="subject" id="sbj" value="BRISBANEINTERNATIONALFILMFESTIVALHIGHLIGHTS" >
297
+ <div id="favFormThx"> <strong>Thank you.</strong><br>
298
+ <br>
299
+ Your comment and rating will appear below once approved. <br>
300
+ <br>
301
+ To review or discuss this movie in more detail,<br>
302
+ 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>
303
+ <table border="0" cellspacing="0" cellpadding="0" id="favForm">
304
+ <tr>
305
+ <td class="gbkSubhead">Name:<br>
306
+ <span class="smlTxt">(or nickname)</span></td>
307
+ <td><input type="text" name="name" id="yname" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
308
+ </tr>
309
+ <tr>
310
+ <td class="gbkSubhead">Email:</td>
311
+ <td><input type="text" name="email" id="yemail" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
312
+ </tr>
313
+ <tr>
314
+ <td class="gbkSubhead">Rating:</td>
315
+ <td><select name="score" id="score" style="margin:0" onFocus="this.style.background='#FFF6E9'">
316
+ <option value="na">Select...</option>
317
+ <option value="0">Zero stars</option>
318
+ <option value="1">Half a star</option>
319
+ <option value="2">One star</option>
320
+ <option value="3">One and a half stars</option>
321
+ <option value="4">Two stars</option>
322
+ <option value="5">Two and a half stars</option>
323
+ <option value="6">Three stars</option>
324
+ <option value="7">Three and a half stars</option>
325
+ <option value="8">Four stars</option>
326
+ <option value="9">Four and a half stars</option>
327
+ <option value="10">Five stars</option>
328
+ </select>
329
+ </td>
330
+ </tr>
331
+ <tr>
332
+ <td class="gbkSubhead" valign="top">Comment:<br>
333
+ <span class="smlTxt">(max 100 words)</span> </td>
334
+ <td><textarea name="remark" id="remark" class="favField" onKeyUp="remainingWords(this, this.value, 100)" onFocus="this.style.background='#FFF6E9'"></textarea>
335
+ <p style="margin:0"><a href="/atthemovies/txt/s1224754.htm" style="color:#A0410F" >Conditions of use &#187;</a></p></td>
336
+ </tr>
337
+ <tr>
338
+ <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'">
339
+ </td>
340
+ </tr>
341
+ </table>
342
+ </form>
343
+ <!-- comments form submits to this iframe, hidden from js enabled user -->
344
+ <IFRAME width="375" height="20" src="/atthemovies/audience/blank.htm" TITLE="blank" name="revThanks" frameborder="0" scrolling="no"></IFRAME>
345
+ <div id="wordCount"> Word count<br>
346
+ <div id="wcNum">0</div>
347
+ </div>
348
+ </div>
349
+ <!-- // audiencecomment -->
350
+ <div id="allComments">
351
+ [an error occurred while processing this directive]
352
+ </div>
353
+ </div>
354
+ <!-- // hideorshow-review -->
355
+ </div>
356
+ <!-- PRINT_CONTENT_END --></td>
357
+ <td class="sidebarcontainer"><div id="related">
358
+ <div class="hideorshow-review">
359
+ <h3>Production details</h3>
360
+ <p class="moviedetails">
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+
373
+
374
+ <br clear="all">
375
+ &nbsp;</p>
376
+ </div>
377
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
378
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
379
+
380
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
381
+ <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>
382
+
383
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
384
+ <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>
385
+
386
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
387
+ <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>
388
+
389
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
390
+ <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>
391
+
392
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
393
+
394
+
395
+ <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>
396
+
397
+
398
+ </table>
399
+
400
+ </div>
401
+ <!-- END RELATED //-->
402
+ </td>
403
+ </tr>
404
+ </tbody>
405
+ </table>
406
+ <!-- END CONTENT CONTAINER -->
407
+ <div id="footer">
408
+ <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>
409
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
410
+ <!-- n -->
411
+
412
+
413
+ </div>
414
+ <!-- END FOOTER //-->
415
+ </body>
416
+ </html>
@@ -0,0 +1,414 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Apache
3
+ Content-Type: text/html
4
+ Cache-Control: max-age=140
5
+ Expires: Sun, 02 Aug 2009 05:17:02 GMT
6
+ Date: Sun, 02 Aug 2009 05:14:42 GMT
7
+ Content-Length: 21705
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=72.247.247.84.72711249190082673; expires=Sun, 02-Aug-2009 05:44:42 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: Cedar Boys Interview</title>
16
+
17
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18
+
19
+ <meta name="Title" content="At the Movies: Cedar Boys Interview">
20
+
21
+ <meta name="Description" content="David Stratton Interviews director, Serhat">
22
+
23
+ <meta name="Keywords" content=", , , , , , , ">
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="interview">
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-interview {
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/s2634329.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><a href="/atthemovies/review/">Movie Reviews</a></li>
244
+ <li class="selected"><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/events/">Movie Events</a></li>
248
+ <li><a href="/atthemovies/extras/">Extras</a></li>
249
+ <li><a href="/atthemovies/about/">About the Show</a></li>
250
+ <li><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19">Message Board</a></li>
251
+
252
+ </ul>
253
+ </div>
254
+ <!-- END SITENAV //-->
255
+ <div id="mbextract">
256
+ <h3 id="yoursay"><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19"><span class="hidden">Your Comments</span></a></h3>
257
+ <div style="padding:0px 3px 0px 9px">
258
+ <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>
259
+ </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>
260
+ </p>
261
+ </div>
262
+ </div>
263
+ <!-- END TMBEXTRACT //-->
264
+ </td>
265
+ <td><!-- PRINT_CONTENT_START -->
266
+ <div id="content">
267
+ <div id="storyImage">
268
+ <!-- video block -->
269
+ <noscript><h1>Cedar Boys Interview</h1></noscript>
270
+ <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_cedarboysiv.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/cedarboys_int_large.jpg" width="400" height="224" style="border:0px" alt="Cedar Boys Interview"></div></a>
271
+
272
+ <noscript>
273
+ <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>
274
+
275
+ <div id="altWinMedia"><span><a href="/atthemovies/broadband/20090729_2230/meta/hq4.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq4.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq4.asx" title="Alternative Windows Media Video: Slow connections" target="_blank">Slow</a></div></span>
276
+ </div>
277
+
278
+ <!-- // video block -->
279
+
280
+ <p class="description">David Stratton Interviews director, Serhat Caradee.</p>
281
+
282
+ <p class="score" style="border:0;"> </p>
283
+ </div>
284
+ <h3>Cedar Boys Interview</h3>
285
+
286
+
287
+ <p>SERHAT CARADEE: The story of CEDAR BOYS, for me personally, started back in 2002 when I started writing the screenplay and I had the initial idea to write it because I was in New York City for a short film that I was travelling with and I saw films like MEAN STREETS, GOODFELLAS, RAGING BULL, BAD LIEUTENANT, and they're all films about outsiders, really, who are living in a big city, and I just thought we've never had a story like that told in this country. <BR><BR>I think I was sick of seeing Middle Eastern characters portrayed in such one dimensional ways on our screens and I wanted to tell the story of three Lebanese leagues in Australian film that hasn't been done before. <BR><BR>DAVID: Tell me about the casting? I guess the three guys you had in mind from the beginning, did you?<BR><BR>SERHAT CARADEE: Since 2003. I did the first reading of the script at my house and they were involved back then. And since then, whenever I did a workshop or when I was developing the script and looking for actors, they were always on board. I came across Buddy Dannoun and Les Chantery from NIDA. Les was in third year at the time and Buddy was in first year and a good friend of mine, Kevin Jackson, tipped me off on them. He said, "You should go check out these actors." <BR><BR>So I went and checked them out, gave them the screen play. Buddy was attached to it immediately. He liked it. Les was a bit reluctant. He'd just graduated from NIDA and he just didn't think playing a Lebanese boy straight out of NIDA was going to be beneficial to his career. After about a year he kind of - I just got a call from him one day saying, "Is the script still happening?" I said, "Yes, it is." He said, "I'd like to be really a part of it." I said, "No problem." <BR><BR>Then Waddah, who plays Sam, I came across him at a casting session when I was actually auditioning for a role in WILDSIDE and he was there. And then when I was writing the character of Sam, I actually had him in mind all the way along.<BR><BR>They're kind of outsiders themselves. I mean for most of the story they're trying to fit in. In fact, one of the big themes in the film is about acceptance and belonging. So to them and just to me as a filmmaker myself personally, we kind of feel like we're outsiders. We're trying to crack into the industry, and hence them trying to come into another world, and their characters are really - I mean, they didn't portray the three characters like victims. They're not actually victims. They come from good families, they've got good jobs, but sometimes they're trying to attain something they want now that they could have later on. If they wait 20 years, they'd probably get some of those dreams: the nice house; the nice car. But, unfortunately, they run out of time and they run out of patience. They want to get there now, so this is why some of them make some silly choices and they're out in some silly worlds, really, and unfortunately some of these worlds fight back and bite you back. <BR><BR>DAVID: And then THE COMBINATION came out earlier this year. Now, were you aware that it was being made or did it come as a surprise, or how did you feel about that?<BR><BR>SERHAT CARADEE: I knew about THE COMBINATION back in 2005 when David Field was one of the performance advisers that Invision Lab were doing and we were talking about THE COMBINATION, and he was saying how there's another film involved and there's going to be plenty of room for another Lebanese film in our community. And I said, "Look, no problem." <BR><BR>I was a big supporter of them actually. I really wanted them to do well and the better they did the better it was going to be for us and it actually worked out, because it took - exhibitors and distributors actually took note that films like this have an audience. You know, it was really good for us.</p>
288
+
289
+ <div class="hideorshow-review">
290
+ <div id="audiencecomment">
291
+ <h3>Your rating: Cedar Boys Interview</h3>
292
+ <form action="http://www.abc.net.au/atthemovies/audience/blank.htm" name="revForm" id="reviewForm" method="post" target="revThanks" onSubmit="return formCheck(this)">
293
+ <input type="hidden" name="GuestbookID" value="394" >
294
+ <input type="hidden" name="subject" id="sbj" value="CEDARBOYSINTERVIEW" >
295
+ <div id="favFormThx"> <strong>Thank you.</strong><br>
296
+ <br>
297
+ Your comment and rating will appear below once approved. <br>
298
+ <br>
299
+ To review or discuss this movie in more detail,<br>
300
+ 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>
301
+ <table border="0" cellspacing="0" cellpadding="0" id="favForm">
302
+ <tr>
303
+ <td class="gbkSubhead">Name:<br>
304
+ <span class="smlTxt">(or nickname)</span></td>
305
+ <td><input type="text" name="name" id="yname" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
306
+ </tr>
307
+ <tr>
308
+ <td class="gbkSubhead">Email:</td>
309
+ <td><input type="text" name="email" id="yemail" size="45" class="favField" onFocus="this.style.background='#FFF6E9'"></td>
310
+ </tr>
311
+ <tr>
312
+ <td class="gbkSubhead">Rating:</td>
313
+ <td><select name="score" id="score" style="margin:0" onFocus="this.style.background='#FFF6E9'">
314
+ <option value="na">Select...</option>
315
+ <option value="0">Zero stars</option>
316
+ <option value="1">Half a star</option>
317
+ <option value="2">One star</option>
318
+ <option value="3">One and a half stars</option>
319
+ <option value="4">Two stars</option>
320
+ <option value="5">Two and a half stars</option>
321
+ <option value="6">Three stars</option>
322
+ <option value="7">Three and a half stars</option>
323
+ <option value="8">Four stars</option>
324
+ <option value="9">Four and a half stars</option>
325
+ <option value="10">Five stars</option>
326
+ </select>
327
+ </td>
328
+ </tr>
329
+ <tr>
330
+ <td class="gbkSubhead" valign="top">Comment:<br>
331
+ <span class="smlTxt">(max 100 words)</span> </td>
332
+ <td><textarea name="remark" id="remark" class="favField" onKeyUp="remainingWords(this, this.value, 100)" onFocus="this.style.background='#FFF6E9'"></textarea>
333
+ <p style="margin:0"><a href="/atthemovies/txt/s1224754.htm" style="color:#A0410F" >Conditions of use &#187;</a></p></td>
334
+ </tr>
335
+ <tr>
336
+ <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'">
337
+ </td>
338
+ </tr>
339
+ </table>
340
+ </form>
341
+ <!-- comments form submits to this iframe, hidden from js enabled user -->
342
+ <IFRAME width="375" height="20" src="/atthemovies/audience/blank.htm" TITLE="blank" name="revThanks" frameborder="0" scrolling="no"></IFRAME>
343
+ <div id="wordCount"> Word count<br>
344
+ <div id="wcNum">0</div>
345
+ </div>
346
+ </div>
347
+ <!-- // audiencecomment -->
348
+ <div id="allComments">
349
+ [an error occurred while processing this directive]
350
+ </div>
351
+ </div>
352
+ <!-- // hideorshow-review -->
353
+ </div>
354
+ <!-- PRINT_CONTENT_END --></td>
355
+ <td class="sidebarcontainer"><div id="related">
356
+ <div class="hideorshow-review">
357
+ <h3>Production details</h3>
358
+ <p class="moviedetails">
359
+
360
+
361
+
362
+
363
+
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+ <br clear="all">
373
+ &nbsp;</p>
374
+ </div>
375
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
376
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
377
+
378
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
379
+ <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>
380
+
381
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
382
+ <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>
383
+
384
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
385
+ <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>
386
+
387
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
388
+ <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>
389
+
390
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
391
+
392
+
393
+ <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>
394
+
395
+
396
+ </table>
397
+
398
+ </div>
399
+ <!-- END RELATED //-->
400
+ </td>
401
+ </tr>
402
+ </tbody>
403
+ </table>
404
+ <!-- END CONTENT CONTAINER -->
405
+ <div id="footer">
406
+ <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>
407
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
408
+ <!-- n -->
409
+
410
+
411
+ </div>
412
+ <!-- END FOOTER //-->
413
+ </body>
414
+ </html>