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,434 @@
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:19:06 GMT
6
+ Date: Sun, 02 Aug 2009 05:14:06 GMT
7
+ Content-Length: 23109
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=72.246.103.6.210991249190046933; expires=Sun, 02-Aug-2009 05:44: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: My Sister's Keeper</title>
16
+
17
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
18
+
19
+ <meta name="Title" content="At the Movies: My Sister's Keeper">
20
+
21
+ <meta name="Description" content="Anna Fitzgerald looks to earn medical emancipation from her parents who until now have relied on">
22
+
23
+ <meta name="Keywords" content="Margaret Pomeranz, Nick Cassavetes, Cameron Diaz,, Scott Goldman, Mark Johnson, Chuck Pacheco, Steven Posen, Hillary Sherman, Mendel Tropper, Jeremy Leven and Nick Cassavetes, Aaron Zigman, Roadshow Films, Drama">
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/s2625654.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>My Sister's Keeper</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_mysisterskeeper.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/mysisterskeeper_large.jpg" width="400" height="224" style="border:0px" alt="My Sister's Keeper"></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/hq2.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq2.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq2.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">Anna Fitzgerald looks to earn medical emancipation from her parents who until now have relied on their youngest child to help their leukemia-stricken daughter Kate remain alive.</p>
283
+
284
+ <p class="score" style="border:0;"> Margaret: <img src="/atthemovies/img/bthree-and-a-half.gif" alt="three-and-a-half stars" class="rating"> David: <img src="/atthemovies/img/bthree.gif" alt="three stars" class="rating"> </p>
285
+ </div>
286
+ <h3>My Sister's Keeper</h3>
287
+ <p class="ratd"> Rated <em>M</em></p>
288
+
289
+ <p><em>Review by Margaret Pomeranz</em></p>
290
+
291
+ <p>CAMERON DIAZ takes on a meaty role in MY SISTER�S KEEPER, an adaptation of Jodi Picoult�s novel. She�s Sara Fitzgerald, wife of Brian � JASON PATRIC � and mother of a family of three. But this family has tragedy at its centre. The middle child Kate � SOFIA VASSILIEVA � has leukemia and the youngest Anna � ABIGAIL BRESLIN � has been genetically engineered and bred to save her older sibling. <BR><BR>After years of bone marrow transplants, blood transfusions, Kate�s kidneys are now failing and Anna is expected to donate one of hers. To the astonishment of everyone she refuses, taking her case for �medical emancipation� to celebrity lawyer Campbell Alexander � ALEC BALDWIN.<BR><BR>Sara gave up practicing law when Kate was diagnosed, but now with Kate�s survival the only thing on her mind, she�s like a virago, unable to understand how Anna could let her sister die.<BR><BR>Director Nick Cassevetes is no stranger to emotional family dramas. He made THE NOTEBOOK in 2004, and he doesn�t hold back with this one. But it is an intriguing story, nicely performed, especially by the younger cast, SOFIA VASSELIEVA is stunning as Kate. There is a touch of contrivance to the set-up that is not totally convincing and the film avoids much of the ethical arguments in favour of family drama. <BR><BR>But I must admit to being affected by MY SISTER�S KEEPER, if you have children you know that it would be the worst thing in the world to face a situation like the imminent death of one of them.</p>
292
+
293
+ <h3>Further comments</h3>
294
+ <p>MARGARET: David?<BR><BR>DAVID: No question about that and I think there's no question that this is a really intriguing drama and a drama that I think deserved better treatment than it gets here because I think Nick Cassevetes - I don't think he's a very good director, really. He goes for the mawkish, for the sentimental every time. He's very manipulative and I think - I found myself getting really annoyed at this film when I should have been really moved by it and I think Cameron Diaz's character, as the mother, is really interesting because she, by her own rights, she's doing absolutely the right thing but, looking at her objectively, she's really something of a monster, and I think she creates that role really well. And Abigail Breslin - I mean everybody is very good; Jason Patric; they're all very good in the film, but it's just that the direction just goes for the easy sentimental side of it.<BR><BR>MARGARET: I know, but at the same time, you felt like that about THE NOTEBOOK.<BR><BR>DAVID: I did, yeah.<BR><BR>MARGARET: I just was totally awash with THE NOTEBOOK.<BR><BR>DAVID: Yeah.<BR><BR>MARGARET: And I was awash with this one too, I must say. <BR><BR>DAVID: Well, it's the same problem. I had the same problem with both.<BR><BR>MARGARET: I let myself be affected by it and I...<BR><BR>DAVID: I usually do, but I resisted this.<BR><BR>MARGARET: Oh, you hard-hearted...<BR><BR>DAVID: I know, it's awful, isn't it? I'm giving it three.<BR><BR>MARGARET: I'm giving it three and a half.</p>
295
+
296
+ <div class="hideorshow-review">
297
+ <div id="audiencecomment">
298
+ <h3>Your rating: My Sister's Keeper</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="MYSISTERSKEEPER" >
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="MYSISTERSKEEPER"><em class="dd">31/07/2009 12:52 PM</em><em>Name</em>: Emma<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars9.gif"><br><em>Comment</em>: I honestly loved it to pieces, i'm no movie critic so how it was directed has no effect on my opinion it didnt change my mind at all.<BR>I thought what was special about this movie was the small moments. My favourite was the exchange between Kate and her father before she went off to the dance, you could see the heartbreak and love just through the look on his face.<BR>I also loved Joan Cusak when asked about her daughter, i just thought everyone was very convicing.<BR>If i had have seen this alone i probably would have bawled harder! </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
+
368
+ <strong>Classification:</strong> M<br>
369
+
370
+ <strong>Duration:</strong> 109 mins<br>
371
+
372
+ <strong>Genre:</strong> Drama<br>
373
+
374
+ <strong>Director:</strong> Nick Cassavetes<br>
375
+
376
+ <strong>Lead actor:</strong> Cameron Diaz,<br>
377
+
378
+ <strong>Cast:</strong> Alec Baldwin, Abigail Breslin, Sofia Vassilieva, Joan Cusack<br>
379
+
380
+ <strong>Producer:</strong> Scott Goldman, Mark Johnson, Chuck Pacheco, Steven Posen, Hillary Sherman, Mendel Tropper<br>
381
+
382
+ <strong>Screenplay:</strong> Jeremy Leven and Nick Cassavetes<br>
383
+
384
+ <strong>Music:</strong> Aaron Zigman<br>
385
+
386
+ <strong>Distributor:</strong> Roadshow Films<br>
387
+
388
+ <strong>Language:</strong> English<br>
389
+
390
+ <strong>Country:</strong> United States<br>
391
+
392
+ <br clear="all">
393
+ &nbsp;</p>
394
+ </div>
395
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
396
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
397
+
398
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
399
+ <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>
400
+
401
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
402
+ <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>
403
+
404
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
405
+ <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>
406
+
407
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
408
+ <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>
409
+
410
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
411
+
412
+
413
+ <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>
414
+
415
+
416
+ </table>
417
+
418
+ </div>
419
+ <!-- END RELATED //-->
420
+ </td>
421
+ </tr>
422
+ </tbody>
423
+ </table>
424
+ <!-- END CONTENT CONTAINER -->
425
+ <div id="footer">
426
+ <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>
427
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
428
+ <!-- n -->
429
+
430
+
431
+ </div>
432
+ <!-- END FOOTER //-->
433
+ </body>
434
+ </html>
@@ -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:19:26 GMT
6
+ Date: Sun, 02 Aug 2009 05:14:26 GMT
7
+ Content-Length: 25198
8
+ Connection: keep-alive
9
+ Set-Cookie: ABCGuestID=198.142.23.100.295481249190066754; expires=Sun, 02-Aug-2009 05:44:26 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</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">
20
+
21
+ <meta name="Description" content="A journey into the lives of Middle-Eastern Australians in Sydney's">
22
+
23
+ <meta name="Keywords" content="David Stratton, Serhat Caradee, Les Chantery, Serhat Caradee, Matthew Dabner, Ranko Markovic, Jeff Purser, Serhat Caradee, Khaled Sabsabi, Hoyts, Drama">
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/s2625717.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>Cedar Boys</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_cedarboys.flv" style="background:#000000;color:#b96125"><img src="/atthemovies/img/2009/ep25/cedarboys_large.jpg" width="400" height="224" style="border:0px" alt="Cedar Boys"></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/hq3.asx" onclick="showWindows();return false">Windows Media &#187;</a><div id="windowsMed"><a href="/atthemovies/broadband/20090729_2230/meta/hq3.asx" title="Alternative Windows Media Video: Fast connections" target="_blank">Fast</a> : <a href="/atthemovies/broadband/20090729_2230/meta/lq3.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">A journey into the lives of Middle-Eastern Australians in Sydney's outer-west.</p>
283
+
284
+ <p class="score" style="border:0;"> Margaret: <img src="/atthemovies/img/bthree-and-a-half.gif" alt="three-and-a-half stars" class="rating"> David: <img src="/atthemovies/img/bfour.gif" alt="four stars" class="rating"> </p>
285
+ </div>
286
+ <h3>Cedar Boys</h3>
287
+ <p class="ratd"> Rated <em>MA</em></p>
288
+
289
+ <p><em>Review by David Stratton</em></p>
290
+
291
+ <p>In CEDAR BOYS, Tarek, LES CHANTERY, a Lebanese-Australian, lives with his parents and little sister in Sydney�s western suburbs; his older brother, Jamal, BREN FOSTER, is serving a prison sentence for an unspecified crime and can�t afford the money for an appeal. <BR><BR>Tarek sees the chance to help his brother when his mate, Nabil, BUDDY DANNOUN, who works as a cleaner in a block of flats, observes some suspicious comings and goings and suspects an apartment is being used as a drug depot � Nabil persuades Tarek to help him steal the drugs. They enlist their drug dealer friend Sam, WADDAH SARI, to help move the pills and they start to reap the profits.<BR><BR>Meanwhile Tarek has met Amie, RACHAEL TAYLOR, an Aussie girl who likes to party and to snort cocaine.<BR><BR>CEDAR BOYS, like THE COMBINATION before it, is a vivid depiction of life for Lebanese-Australians today; it�s also a genre piece, a crisp, suspenseful thriller, in which a couple of guys who think they�re cool get in over their heads with some pretty ruthless villains. This tense story plays out against a backdrop of casual prejudice � these Lebanese-Australians have difficulty getting into nightclubs, police stop their car for no other reason than the fact that they�re of Middle Eastern appearance � and there are television news stories of suburban shootings and conflict in the Middle East. <BR><BR>Writer-director Serhat Caradee has brought all these elements together in a fast-paced, no-nonsense film which feels totally authentic; he also gets excellent performances from his cast members, including RACHAEL TAYLOR, who made the big time in TRANSFORMERS but who, to her credit, was happy to take on the role of the rather unsympathetic Amie. <BR><BR>Peter A. Holland�s photography is hand-held, but not gratuitously so, and the film benefits from the precision editing of veteran Suresh Ayyar.</p>
292
+
293
+ <h3>Further comments</h3>
294
+ <p>DAVID: Margaret?<BR><BR>MARGARET: Yes, it's another very solid Australian film, I think.<BR><BR>DAVID: It's good.<BR><BR>MARGARET: I think it's unfortunate that it follows so soon after THE COMBINATION, because it does cover very similar territory. You know this venture into the world of drugs, the attraction for the white bred Australian and, actually, I found that one of the most interesting elements of this film, that yearning for these kids from the western suburbs to access, that white bred life of eastern suburbs and the interface and the tensions. Even in that bar scene, you can feel, the tensions between the two groups.<BR><BR>DAVID: Yeah, I think they do that very well. <BR><BR>MARGARET: I'd just like to see that explored more and I know it's a genre piece and we have to go into the drug world, but do they always have to go into the drug world?<BR><BR>DAVID: Well, the director has said that he was influenced by films like MEAN STREETS, where you have an Italian community getting into crime and so forth and exploring the characters through this crime situation. So I guess it's a legitimate thing and I wouldn't make too much of the fact that THE COMBINATION came before. And, you can't, you know, put that onto this film because, they're two...<BR><BR>MARGARET: Well, no. No. But I just felt that it followed a very similar trajectory. That's all I...<BR><BR>DAVID: They are a bit similar, but they're two independently very good films, I think. What are you giving it?<BR><BR>MARGARET: I agree. Look, I'm giving this three and a half stars.<BR><BR>DAVID: I'm giving it four.</p>
295
+
296
+ <div class="hideorshow-review">
297
+ <div id="audiencecomment">
298
+ <h3>Your rating: Cedar Boys</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="CEDARBOYS" >
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="CEDARBOYS"><em class="dd">31/07/2009 12:52 PM</em><em>Name</em>: Victor B<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars4.gif"><br><em>Comment</em>: David &amp; Margaret have been generous with their ratings for this film. <BR>Cedar Boys is not a bad movie, but neither is it that good. It's just so cliched,unoriginal &amp; predictable. Like The Combination this film has a very &quot;African-American gang&quot; udercurrent to it. Instead of African-Americans in a USA urban setting, Lebanese-Australians have been substituted into an Australian urban setting. </div><div class="CEDARBOYS"><em class="dd">30/07/2009 1:57 PM</em><em>Name</em>: simon<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars9.gif"><br><em>Comment</em>: I really enjoyed this movie, It was nothing what i thought!<BR>The performance of Jamal was heartbreakingly wonderful; Bren Foster is a star on the rise. I found the film to be a very eye opening experience. Serhat Caradee has done a great job. This is nothing like The Combination/ i feel this movie has a wider approach on it's message and a less violent approach to the culture. <BR><BR> </div><div class="CEDARBOYS"><em class="dd">30/07/2009 2:45 AM</em><em>Name</em>: TIMBO<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars9.gif"><br><em>Comment</em>: IM A BIT BIASED ,KNOWING ONE OF THE CAST BUT I MUST SAY THIS MOVIE WILL MAKE YOU LAUGH ,CRY AND ALL EMOTIONS IN BETWEEN .IT STARTS OFF A LITTLE SLOW BUT THE CAST MUST BE INTRODUCED BUT 15 TO 20 MINUTES IN THE MOVIE STARTS TO ROLL .THIS MOVIE IS A GREAT VEHICLE FOR AUSSIE ACTORS THAT DONT USUALLY GET A LOOK IN , AND THEY TRUELY SHINE ...<BR> &quot;TWO THUMBS UP&quot; </div><div class="CEDARBOYS"><em class="dd">30/07/2009 1:03 AM</em><em>Name</em>: Filmfan09<br> <em>Rating</em>: <img src="http://www.abc.net.au/atthemovies/audience/stars10.gif"><br><em>Comment</em>: I've seen both the The Combination and Cedar Boys, and can I just say, there is no comparison.<BR><BR>Cedar Boys is a real movie, and the other looks like it's made by amateurs, and everything is pushed.<BR><BR>That's why Cedar Boys got amazing reviews, in Variety, Premiere Magazine, The Australian, SMH, Filmink, etc etc... and won the Audience Award at the Sydney Film Festival.<BR><BR>Why would you give it less rating than The Combination??<BR><BR>questions?? </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> Limited national release (not releasing in Tasmania). Check newspapers for screening details.<br>
368
+
369
+ <strong>Classification:</strong> MA<br>
370
+
371
+ <strong>Duration:</strong> 109 mins<br>
372
+
373
+ <strong>Genre:</strong> Drama<br>
374
+
375
+ <strong>Director:</strong> Serhat Caradee<br>
376
+
377
+ <strong>Lead actor:</strong> Les Chantery<br>
378
+
379
+ <strong>Cast:</strong> Rachael Taylor, Waddah Sari, Buddy Dannoun, Daniel Amalm, Jake Wall, Erica Lovell, Hani Malik, Bren Foster, Helen Chebatte, Lucy Abroon, Taffy Hany<br>
380
+
381
+ <strong>Producer:</strong> Serhat Caradee, Matthew Dabner, Ranko Markovic, Jeff Purser<br>
382
+
383
+ <strong>Screenplay:</strong> Serhat Caradee<br>
384
+
385
+ <strong>Music:</strong> Khaled Sabsabi<br>
386
+
387
+ <strong>Distributor:</strong> Hoyts<br>
388
+
389
+ <strong>Language:</strong> English<br>
390
+
391
+ <strong>Country:</strong> Australia:NSW<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>