abcde-atthemovies 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown ADDED
@@ -0,0 +1,33 @@
1
+ = atthemovies
2
+
3
+ == Description:
4
+
5
+ Scraper for http://abc.net.au/atthemovies
6
+
7
+ == Usage (I guess):
8
+
9
+ review = AtTheMovies::Parsers.for('http://www.abc.net.au/atthemovies/txt/s1533013.htm')
10
+ review.title # "Brokeback Mountain"
11
+
12
+ latest = AtTheMovies::Review.latest
13
+ latest.first.title # "Public Enemies"
14
+
15
+ == License:
16
+
17
+ (The MIT License)
18
+
19
+ Copyright (c) 2009 Dylan Egan
20
+
21
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
22
+ this software and associated documentation files (the 'Software'), to deal in
23
+ the Software without restriction, including without limitation the rights to use,
24
+ copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the
25
+ Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
26
+
27
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
28
+
29
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
30
+ INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
31
+ PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
32
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
33
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,15 @@
1
+ begin
2
+ require 'jeweler'
3
+ Jeweler::Tasks.new do |gemspec|
4
+ gemspec.name = "atthemovies"
5
+ gemspec.summary = "Pulling that shit in yo!"
6
+ gemspec.description = "Scraper for http://abc.net.au/atthemovies"
7
+ gemspec.email = "dylanegan@gmail.com"
8
+ gemspec.homepage = "http://github.com/abcde/atthemovies"
9
+ gemspec.authors = ["Dylan Egan"]
10
+ gemspec.files = %w(README.markdown Rakefile VERSION) + Dir.glob("{lib,spec}/**/*")
11
+ gemspec.add_dependency 'mechanize'
12
+ end
13
+ rescue LoadError
14
+ puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
15
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.6
@@ -0,0 +1,7 @@
1
+ require 'mechanize'
2
+
3
+ $:.unshift File.dirname(__FILE__) + '/at_the_movies'
4
+
5
+ %w( parser parsers review ).each { |lib| require lib }
6
+
7
+ require File.dirname(__FILE__) + '/core_ext'
@@ -0,0 +1,19 @@
1
+ module AtTheMovies
2
+ class ParserError < StandardError; end
3
+ class Parser
4
+ attr_reader :page
5
+
6
+ def self.parse(page)
7
+ parser = new(page)
8
+ parser.parse
9
+ end
10
+
11
+ def initialize(page)
12
+ @page = page
13
+ end
14
+
15
+ def parse
16
+ raise NotImplementedError, "where am I?"
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,24 @@
1
+ %w( review ).each { |parser| require File.dirname(__FILE__) + "/parsers/#{parser}" }
2
+
3
+ module AtTheMovies
4
+ module Parsers
5
+ MAP = {
6
+ "review" => Review
7
+ }
8
+
9
+ def self.for(url, options = {})
10
+ tries = 0
11
+ begin
12
+ page = WWW::Mechanize.new.get(url)
13
+ rescue => e
14
+ retry if (tries += 1) < (options[:tries] || 5)
15
+ raise AtTheMovies::ParserError,
16
+ "Failed to parse #{url}. #{e.message}"
17
+ end
18
+ type = page.search('meta[@name="ABC-Author"]').first['content']
19
+ return if options[:only] and type != options[:only]
20
+ parser = MAP[type] || raise(ArgumentError, "Couldn't find a Parser class to parse a #{type.inspect} page")
21
+ parser.parse(page)
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,58 @@
1
+ module AtTheMovies
2
+ module Parsers
3
+ class Review < Parser
4
+ RATINGS = {
5
+ "zero" => 0,
6
+ "half" => 0.5,
7
+ "one" => 1,
8
+ "one-and-a-half" => 1.5,
9
+ "two" => 2,
10
+ "two-and-a-half" => 2.5,
11
+ "three" => 3,
12
+ "three-and-a-half" => 3.5,
13
+ "four" => 4,
14
+ "four-and-a-half" => 4.5,
15
+ "five" => 5
16
+ }
17
+
18
+ def parse
19
+ return unless @page.body[/Review by/]
20
+ AtTheMovies::Review.new(title, classification, date, duration, genre, ratings, @page.uri.to_s)
21
+ end
22
+
23
+ def details
24
+ @details ||= @page.search('p.moviedetails').inner_html.strip
25
+ end
26
+
27
+ def title
28
+ @page.title.strip[15..-1]
29
+ end
30
+
31
+ def classification
32
+ details.scan(/Classification:<\/strong> ([[:alnum:][:punct:][:space:]]{1,10})<br>/).flatten.first
33
+ end
34
+
35
+ def date
36
+ Date.parse(@page.search('meta[@name="Date"]').first['content'].gsub('/', '-'))
37
+ end
38
+
39
+ def duration
40
+ details.scan(/Duration:<\/strong> ([0-9]{1,3})/).flatten.first.to_i
41
+ end
42
+
43
+ def genre
44
+ details.scan(/Genre:<\/strong> ([[:alnum:][:space:][:punct:]]+)<br><strong>Director:/).flatten.first
45
+ end
46
+
47
+ def ratings
48
+ score = @page.search('p.score')
49
+ ratings = score.css('img').collect { |image| image['alt'][0..-7] }
50
+ ratings = score.css('p.score').text.scan(/Margaret|David/).inject_with_index({}) do |hash, person, index|
51
+ hash[person] = RATINGS[ratings[index]]
52
+ hash
53
+ end
54
+ ratings
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,33 @@
1
+ module AtTheMovies
2
+ class Review
3
+ attr_reader :title, :classification, :date, :duration, :genre, :ratings, :url
4
+
5
+ def self.latest
6
+ page = WWW::Mechanize.new.get('http://www.abc.net.au/atthemovies/review/')
7
+ page.search('table.sideRating').first.css('a').inject([]) do |array, a|
8
+ page = AtTheMovies::Parsers.for(a['href'], :only => "review")
9
+ array << page
10
+ array
11
+ end.compact
12
+ end
13
+
14
+ def initialize(title, classification, date, duration, genre, ratings, url)
15
+ @title = title
16
+ @classification = classification
17
+ @duration = duration
18
+ @genre = genre
19
+ @date = date
20
+ @ratings = ratings
21
+ @url = url
22
+ end
23
+
24
+ def rating(rater = nil)
25
+ return total_rating unless rater
26
+ @ratings[rater.to_s.capitalize]
27
+ end
28
+
29
+ def total_rating
30
+ @ratings.inject(0) { |i,p| i += p[1]; i }
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,3 @@
1
+ module AtTheMovies
2
+ VERSION = "0.0.2"
3
+ end
data/lib/core_ext.rb ADDED
@@ -0,0 +1 @@
1
+ require File.dirname(__FILE__) + '/core_ext/enumerable'
@@ -0,0 +1,6 @@
1
+ module Enumerable
2
+ def inject_with_index(injected)
3
+ each_with_index{ |obj, index| injected = yield(injected, obj, index) }
4
+ injected
5
+ end
6
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe AtTheMovies::Parser do
4
+ it "should act as a base class" do
5
+ parser = AtTheMovies::Parser.new(nil)
6
+ lambda { parser.parse }.should raise_error(NotImplementedError)
7
+ end
8
+ end
@@ -0,0 +1,17 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe AtTheMovies::Parsers::Review do
4
+ describe "parse" do
5
+ before do
6
+ url = 'http://www.abc.net.au/atthemovies/txt/s1533013.htm'
7
+ FakeWeb.register_uri(:get, url, :response => cached_page_for(url))
8
+ mech = WWW::Mechanize.new
9
+ page = mech.get(url)
10
+ @review = AtTheMovies::Parsers::Review.parse(page)
11
+ end
12
+
13
+ it "should return a Review object" do
14
+ @review.should be_an_instance_of(AtTheMovies::Review)
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,36 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe AtTheMovies::Parsers do
4
+ describe "for" do
5
+ context "with a review page" do
6
+ before do
7
+ url = 'http://www.abc.net.au/atthemovies/txt/s1533013.htm'
8
+ FakeWeb.register_uri(:get, url, :response => cached_page_for(url))
9
+ @parsed = AtTheMovies::Parsers.for(url)
10
+ end
11
+
12
+ it "should return a Review object" do
13
+ @parsed.should be_an_instance_of(AtTheMovies::Review)
14
+ end
15
+ end
16
+
17
+ context "using only" do
18
+ before do
19
+ url = 'http://www.abc.net.au/atthemovies/s2634329.htm'
20
+ FakeWeb.register_uri(:get, url, :response => cached_page_for(url))
21
+ @parsed = AtTheMovies::Parsers.for(url, :only => "review")
22
+ end
23
+
24
+ it "should return nothing for review when page is an interview" do
25
+ @parsed.should be_nil
26
+ end
27
+ end
28
+
29
+ context "parsing issues" do
30
+ it "should try five times before reraising" do
31
+ WWW::Mechanize.should_receive(:new).exactly(5).times.and_raise(Errno::ECONNREFUSED)
32
+ lambda { AtTheMovies::Parsers.for('url') }.should raise_error(AtTheMovies::ParserError, "Failed to parse url. Connection refused")
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,66 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ describe AtTheMovies::Review do
4
+ context "with a parsed review" do
5
+ before do
6
+ url = 'http://www.abc.net.au/atthemovies/txt/s1533013.htm'
7
+ FakeWeb.register_uri(:get, url, :response => cached_page_for(url))
8
+ mech = WWW::Mechanize.new
9
+ page = mech.get(url)
10
+ @review = AtTheMovies::Parsers::Review.parse(page)
11
+ end
12
+
13
+ it "should have a title" do
14
+ @review.title.should == "Brokeback Mountain"
15
+ end
16
+
17
+ it "should have a classification" do
18
+ @review.classification.should == "M"
19
+ end
20
+
21
+ it "should have a date" do
22
+ @review.date.to_s.should == "2005-12-18"
23
+ end
24
+
25
+ it "should have a duration" do
26
+ @review.duration.should == 134
27
+ end
28
+
29
+ it "should have a genre" do
30
+ @review.genre.should == "Drama"
31
+ end
32
+
33
+ it "should have a total rating" do
34
+ @review.rating.should == 10
35
+ end
36
+
37
+ it "should have a rating by Margaret" do
38
+ @review.rating(:margaret).should == 5
39
+ end
40
+
41
+ it "should have a rating by David" do
42
+ @review.rating(:david).should == 5
43
+ end
44
+
45
+ it "should have a url" do
46
+ @review.url.should == "http://www.abc.net.au/atthemovies/txt/s1533013.htm"
47
+ end
48
+ end
49
+
50
+ context "finding" do
51
+ context "latest" do
52
+ before do
53
+ url = 'http://www.abc.net.au/atthemovies/review/'
54
+ FakeWeb.register_uri(:get, url, :response => cached_page('reviews'))
55
+ %w( s2625733 s2625742 s2625654 s2625717 s2634329 s2631026 ).each do |uri|
56
+ FakeWeb.register_uri(:get, "http://www.abc.net.au/atthemovies/txt/#{uri}.htm", :response => cached_page("#{uri}.htm"))
57
+ end
58
+ @reviews = AtTheMovies::Review.latest
59
+ end
60
+
61
+ it "should contain the latest reviews only" do
62
+ @reviews.collect { |review| review.title }.should == ["Public Enemies", "Coraline", "My Sister's Keeper", "Cedar Boys"]
63
+ end
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,10 @@
1
+ module PageHelperMethods
2
+ def cached_page_for(url)
3
+ page = url[/s[0-9]{1,}.htm/]
4
+ cached_page(page)
5
+ end
6
+
7
+ def cached_page(name)
8
+ SPEC_DIR + "/pages/#{name}"
9
+ end
10
+ end
@@ -0,0 +1,940 @@
1
+ HTTP/1.1 200 OK
2
+ Server: Apache
3
+ Content-Type: text/html
4
+ Cache-Control: max-age=288
5
+ Expires: Sun, 02 Aug 2009 05:10:58 GMT
6
+ Date: Sun, 02 Aug 2009 05:06:10 GMT
7
+ Transfer-Encoding: chunked
8
+ Connection: keep-alive
9
+ Connection: Transfer-Encoding
10
+ Set-Cookie: ABCGuestID=72.247.247.84.72711249189570222; expires=Sun, 02-Aug-2009 05:36:10 GMT; path=/; domain=abc.net.au
11
+
12
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
13
+ "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
14
+ <html><head>
15
+ <title>At the Movies: review</title>
16
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
17
+ <meta name="Title" content="At the Movies: ">
18
+ <meta name="Description" content="The Feds try to take down notorious American gangsters John Dillinger, Baby Face Nelson and Pretty Boy Floyd during a booming crime wave in the 1930s.">
19
+ <meta name="Keywords" content="At the Movies: review">
20
+ <meta name="Date" content="29/07/2009">
21
+ <meta name="Language" content="English">
22
+ <meta name="Publisher" content="Australian Broadcasting Corporation">
23
+ <meta name="Publisher" content="(SCHEME=URL)http://www.abc.net.au/atthemovies/">
24
+ <meta name="Rights" content="Copyright 2009, Australian Broadcasting Corporation. Other rights may be held as detailed in text. www.abc.net.au/common/copyrigh.htm">
25
+ <meta name="ABC-DateReversed" content="??TxDateReversed??">
26
+ <meta name="ABC-Gateway" content="??Gateway??">
27
+ <meta name="ABC-Site" content="TV, Movie/Film">
28
+ <meta name="ABC-Author" content="review">
29
+ <meta name="ABC-ResourceType" content="0">
30
+
31
+ <link rel="stylesheet" href="http://www.abc.net.au/atthemovies/css/atm.css" type="text/css" media="all">
32
+
33
+ </head><body>
34
+ <div id="globalnav"><!-- ABC nav: Global Nav -->
35
+ <style type="text/css"><!--
36
+ @import url(http://www.abc.net.au/includes/css/globalNav.css); -->
37
+ </style>
38
+ <div id="gN_Nav">
39
+ <div id="gN_align">
40
+ <form action="http://search.abc.net.au/search/search.cgi" method="GET" id="gN_form" target="_top">
41
+ <input type="hidden" name="form" value="simple">
42
+ <input type="hidden" name="num_ranks" value="20">
43
+ <input type="hidden" name="collection" value="abcall">
44
+ <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>
45
+ <input type="text" id="gN_query" name="query" value="" size="20" maxlength="30">
46
+ <input type="submit" id="gN_submit" value="Search the ABC" title="Search the ABC">
47
+ </form>
48
+ <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>
49
+ </div>
50
+ </div>
51
+ <script type="text/javascript" src="http://www.abc.net.au/includes/scripts/global.js"></script>
52
+ <noscript>
53
+ <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">
54
+ </noscript>
55
+ <!-- end ABC nav -->
56
+ </div><!-- END GLOBALNAV //-->
57
+ <div id="outerWrap"></div>
58
+ <div id="banner"><a href="http://www.abc.net.au/atthemovies/" target="_top"><img src="/atthemovies/img/1p.gif" alt="At the Movies" class="title"></a>
59
+ <div id="masthead">Wed 10pm, Sun 6pm <em>ABC1</em>; &nbsp;&nbsp;&nbsp;Sat 8pm <em>ABC2</em> </div><!-- END MASTHEAD //-->
60
+ <div id="search"><form action="http://search.abc.net.au/search/search.cgi" method="GET" name="simple">
61
+ <input type=hidden name="form" value="simple">
62
+ <input type=hidden name="scope" value="atthemovies">
63
+ <input type=hidden name="num_ranks" value="20">
64
+ <input type=hidden name="collection" value="tv">
65
+ 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></div><!-- END SEARCH //-->
66
+ <div id="functions"><a title="Email this page to a friend" href="/cgi-bin/common/mailto/mailto-nojs_query.pl?http://www.abc.net.au/atthemovies/txt/s2625733.htm">Send to a friend</a></div><!-- END FUNCTIONS //--></div><!-- END BANNER //-->
67
+ <table id="contentcontainer" align="center" cellpadding="0" cellspacing="0" border="0" summary="Layout table used to contain content">
68
+ <caption class="hidden"><a href="/atthemovies/">At the Movies</a></caption><tbody><tr>
69
+ <td class="featurecontainer"><div id="sitenav"><ul>
70
+ <li><a href="/atthemovies/">Home</a></li>
71
+ <li class="selected"><a href="/atthemovies/review/">Movie Reviews</a></li>
72
+ <li><a href="/atthemovies/interview/">Interviews</a></li>
73
+ <li><a href="/atthemovies/news/">Movie News</a></li>
74
+ <li><a href="/tv/geo/atthemovies/">Download Video</a></li>
75
+ <!-- <li><a href="/atthemovies/movieupdates/">Mailing list</a></li> -->
76
+ <li><a href="/atthemovies/events/">Movie Events</a></li>
77
+ <li><a href="/atthemovies/extras/">Extras</a></li>
78
+ <li><a href="/atthemovies/about/">About the Show</a></li>
79
+ <li><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19">Message Board</a></li>
80
+ <!--<li><a href="/atthemovies/contact/">Contact Us</a></li>-->
81
+
82
+ </ul>
83
+ </div><!-- END SITENAV //-->
84
+
85
+ <div id="mbextract">
86
+ <h3 id="yoursay"><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19"><span class="hidden">Your Comments</span></a></h3>
87
+ <div style="padding:0px 3px 0px 9px">
88
+ <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>
89
+ </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>
90
+ </p>
91
+ <p><a href="http://www2b.abc.net.au/tmb/Client/Board.aspx?b=19">More comments &#187;</a></p>
92
+ </div>
93
+
94
+ </div>
95
+ <!-- // GBKEXTRACT -->
96
+
97
+ </td>
98
+ <td id="content"><!-- PRINT_CONTENT_START -->
99
+ <h2>Movie reviews</h2>
100
+ <div class="tertiary">
101
+ <h2>A&#8211;Z index</h2>
102
+ <p>
103
+ <a href="/atthemovies/review/bytitle/1.htm" title="1">1</a>
104
+ <a href="/atthemovies/review/bytitle/2.htm" title="2">2</a>
105
+ <a href="/atthemovies/review/bytitle/3.htm" title="3">3</a>
106
+ <a href="/atthemovies/review/bytitle/4.htm" title="4">4</a>
107
+ <a href="/atthemovies/review/bytitle/9.htm" title="9">9</a>
108
+ <a href="/atthemovies/review/bytitle/A.htm" title="A">A</a>
109
+ <a href="/atthemovies/review/bytitle/B.htm" title="B">B</a>
110
+ <a href="/atthemovies/review/bytitle/C.htm" title="C">C</a>
111
+ <a href="/atthemovies/review/bytitle/D.htm" title="D">D</a>
112
+ <a href="/atthemovies/review/bytitle/E.htm" title="E">E</a>
113
+ <a href="/atthemovies/review/bytitle/F.htm" title="F">F</a>
114
+ <a href="/atthemovies/review/bytitle/G.htm" title="G">G</a>
115
+ <a href="/atthemovies/review/bytitle/H.htm" title="H">H</a>
116
+ <a href="/atthemovies/review/bytitle/I.htm" title="I">I</a>
117
+ <a href="/atthemovies/review/bytitle/J.htm" title="J">J</a>
118
+ <a href="/atthemovies/review/bytitle/K.htm" title="K">K</a>
119
+ <a href="/atthemovies/review/bytitle/L.htm" title="L">L</a>
120
+ <a href="/atthemovies/review/bytitle/M.htm" title="M">M</a>
121
+ <a href="/atthemovies/review/bytitle/N.htm" title="N">N</a>
122
+ <a href="/atthemovies/review/bytitle/O.htm" title="O">O</a>
123
+ <a href="/atthemovies/review/bytitle/P.htm" title="P">P</a>
124
+ <a href="/atthemovies/review/bytitle/Q.htm" title="Q">Q</a>
125
+ <a href="/atthemovies/review/bytitle/R.htm" title="R">R</a>
126
+ <a href="/atthemovies/review/bytitle/S.htm" title="S">S</a>
127
+ <a href="/atthemovies/review/bytitle/T.htm" title="T">T</a>
128
+ <a href="/atthemovies/review/bytitle/U.htm" title="U">U</a>
129
+ <a href="/atthemovies/review/bytitle/V.htm" title="V">V</a>
130
+ <a href="/atthemovies/review/bytitle/W.htm" title="W">W</a>
131
+ <a href="/atthemovies/review/bytitle/X.htm" title="X">X</a>
132
+ <a href="/atthemovies/review/bytitle/Y.htm" title="Y">Y</a>
133
+ <a href="/atthemovies/review/bytitle/Z.htm" title="Z">Z</a></p></div>
134
+
135
+
136
+ <div class="tertiary">
137
+ <h2>Reviews by star-rating</h2>
138
+ <p>
139
+ <a href="/atthemovies/review/bystarrating/five.htm" title="five stars">5</a> <a href="/atthemovies/review/bystarrating/four-and-a-half.htm" title="four-and-a-half stars">4&frac12;</a> <a href="/atthemovies/review/bystarrating/four.htm" title="four stars">4</a> <a href="/atthemovies/review/bystarrating/three-and-a-half.htm" title="three-and-a-half stars">3&frac12;</a> <a href="/atthemovies/review/bystarrating/three.htm" title="three stars">3</a> <a href="/atthemovies/review/bystarrating/two-and-a-half.htm" title="two-and-a-half stars">2&frac12;</a> <a href="/atthemovies/review/bystarrating/two.htm" title="two stars">2</a> <a href="/atthemovies/review/bystarrating/one-and-a-half.htm" title="one-and-a-half stars">1&frac12;</a> <a href="/atthemovies/review/bystarrating/one.htm" title="one star">1</a> <a href="/atthemovies/review/bystarrating/half.htm" title="half a star">&frac12;</a> <a href="/atthemovies/review/bystarrating/zero.htm" title="zero stars">0</a></p></div>
140
+ <div class="tertiary">
141
+ <h2>Movies by year</h2>
142
+ <p>
143
+
144
+ <a href="/atthemovies/review/byyear/2009.htm" title="2009">2009</a>
145
+
146
+ <a href="/atthemovies/review/byyear/2008.htm" title="2008">2008</a>
147
+
148
+ <a href="/atthemovies/review/byyear/2007.htm" title="2007">2007</a>
149
+
150
+ <a href="/atthemovies/review/byyear/2006.htm" title="2006">2006</a>
151
+
152
+ <a href="/atthemovies/review/byyear/2005.htm" title="2005">2005</a>
153
+
154
+ <a href="/atthemovies/review/byyear/2004.htm" title="2004">2004</a>
155
+
156
+ </p></div>
157
+
158
+
159
+
160
+ <h3 class="reviews">Movies and interviews from 29&nbsp;July 2009</h3>
161
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
162
+
163
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625733.htm">Public Enemies</a></td></tr>
164
+ <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>
165
+
166
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625742.htm">Coraline</a></td></tr>
167
+ <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>
168
+
169
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625654.htm">My Sister's Keeper</a></td></tr>
170
+ <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>
171
+
172
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2625717.htm">Cedar Boys</a></td></tr>
173
+ <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>
174
+
175
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2634329.htm">Cedar Boys Interview</a></td></tr>
176
+
177
+
178
+ <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>
179
+
180
+
181
+ </table>
182
+
183
+
184
+ <h3 class="reviews">Movies and interviews from 22&nbsp;July 2009</h3>
185
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
186
+
187
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2632086.htm">TALES FROM THE GOLDEN AGE - Melbourne International Film Festival</a></td></tr>
188
+
189
+
190
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616274.htm">Red Cliff</a></td></tr>
191
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half 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>
192
+
193
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616267.htm">Cheri (Web exclusive interview )</a></td></tr>
194
+
195
+
196
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616309.htm">Drag Me To Hell</a></td></tr>
197
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
198
+
199
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616241.htm">Cheri</a></td></tr>
200
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
201
+
202
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616304.htm">Red Cliff Interview</a></td></tr>
203
+
204
+
205
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616318.htm">Drag Me To Hell Interview Extra Grabs (Web Exclusive)</a></td></tr>
206
+
207
+
208
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616317.htm">Drag Me To Hell Interview</a></td></tr>
209
+
210
+
211
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616322.htm">The Limits Of Control</a></td></tr>
212
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
213
+
214
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2632113.htm">THE MISFORTUNATES - Melbourne International Film Festival</a></td></tr>
215
+
216
+
217
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616341.htm">Melbourne Film Festival Package</a></td></tr>
218
+
219
+
220
+ </table>
221
+
222
+
223
+ <h3 class="reviews">Movies and interviews from 15&nbsp;July 2009</h3>
224
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
225
+
226
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616185.htm">Harry Potter And The Half Blood Prince</a></td></tr>
227
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
228
+
229
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616193.htm">My Life In Ruins</a></td></tr>
230
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rone-and-a-half.gif" alt="one-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rone.gif" alt="one stars"></td></tr>
231
+
232
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616201.htm">The Escapist</a></td></tr>
233
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr>
234
+
235
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616216.htm">Lucky Country Interview</a></td></tr>
236
+
237
+
238
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616219.htm">Lucky Country</a></td></tr>
239
+ <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/rtwo.gif" alt="two stars"></td></tr>
240
+
241
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2616232.htm">My Friends My Loves</a></td></tr>
242
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rhalf.gif" alt="half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rone-and-a-half.gif" alt="one-and-a-half stars"></td></tr>
243
+
244
+ </table>
245
+
246
+
247
+ <h3 class="reviews">Movies and interviews from 8&nbsp;July 2009</h3>
248
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
249
+
250
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2609305.htm">Winged Creatures Extra Grabs (Web Exclusive)</a></td></tr>
251
+
252
+
253
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2609337.htm">Mother</a></td></tr>
254
+ <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>
255
+
256
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2613366.htm">Merchant Of Venice Review (Web Exclusive)</a></td></tr>
257
+ <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
258
+
259
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2613381.htm">Merchant Of Venice Interview (Web Exclusive)</a></td></tr>
260
+
261
+
262
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603243.htm">Bruno</a></td></tr>
263
+ <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/rone.gif" alt="one stars"></td></tr>
264
+
265
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603261.htm">The Fox And The Child</a></td></tr>
266
+ <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>
267
+
268
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603273.htm">Winged Creatures</a></td></tr>
269
+ <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>
270
+
271
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603291.htm">Winged Creatures Interview</a></td></tr>
272
+
273
+
274
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603294.htm">The Burning Season</a></td></tr>
275
+ <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>
276
+
277
+ </table>
278
+
279
+
280
+ <h3 class="reviews">Movies and interviews from 1&nbsp;July 2009</h3>
281
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
282
+
283
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2593490.htm">Perth International Revelation Film Festival Interview</a></td></tr>
284
+
285
+
286
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2608550.htm">Thirst</a></td></tr>
287
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
288
+
289
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2608670.htm">Last Ride Interview Extra Grabs (Web Exclusive)</a></td></tr>
290
+
291
+
292
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2602195.htm">Ice Age - Dawn Of The Dinosaurs</a></td></tr>
293
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
294
+
295
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603128.htm">Every Little Step</a></td></tr>
296
+ <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/rthree.gif" alt="three stars"></td></tr>
297
+
298
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603222.htm">Last Ride</a></td></tr>
299
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
300
+
301
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2603235.htm">Last Ride Interview</a></td></tr>
302
+
303
+
304
+ </table>
305
+
306
+
307
+ <h3 class="reviews">Movies and interviews from 24&nbsp;June 2009</h3>
308
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
309
+
310
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590325.htm">Transformers - Revenge Of The Fallen</a></td></tr>
311
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
312
+
313
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590342.htm">Coco Avant Chanel</a></td></tr>
314
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
315
+
316
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590361.htm">Wake In Fright</a></td></tr>
317
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
318
+
319
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2596992.htm">Bastardy Interview Extra Grabs (Web Exclusive)</a></td></tr>
320
+
321
+
322
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2598365.htm">Wake In Fright Interview Extra Grabs (Web Exclusive)</a></td></tr>
323
+
324
+
325
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590395.htm">Wake In Fright Interview</a></td></tr>
326
+
327
+
328
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590401.htm">Bastardy</a></td></tr>
329
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
330
+
331
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590434.htm">Bastardy Interview</a></td></tr>
332
+
333
+
334
+ </table>
335
+
336
+
337
+ <h3 class="reviews">Movies and interviews from 17&nbsp;June 2009</h3>
338
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
339
+
340
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2589490.htm">The Proposal</a></td></tr>
341
+ <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/rtwo.gif" alt="two stars"></td></tr>
342
+
343
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2589524.htm">Year One</a></td></tr>
344
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rhalf.gif" alt="half stars"></td></tr>
345
+
346
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2589575.htm">Disgrace</a></td></tr>
347
+ <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>
348
+
349
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2589598.htm">Noodle</a></td></tr>
350
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
351
+
352
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590277.htm">Shall We Kiss?</a></td></tr>
353
+ <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
354
+
355
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2590300.htm">Four Of A Kind</a></td></tr>
356
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
357
+
358
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2596986.htm">Disgrace Interview</a></td></tr>
359
+
360
+
361
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2601037.htm">Disgrace Interview Extra Grabs (Web Exclusive)</a></td></tr>
362
+
363
+
364
+ </table>
365
+
366
+
367
+ <h3 class="reviews">Movies and interviews from 10&nbsp;June 2009</h3>
368
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
369
+
370
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2564976.htm">Sunshine Cleaning</a></td></tr>
371
+ <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/rfour.gif" alt="four stars"></td></tr>
372
+
373
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2566510.htm">The Hangover</a></td></tr>
374
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
375
+
376
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2566529.htm">Lake Mungo</a></td></tr>
377
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
378
+
379
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2566554.htm">Land Of The Lost</a></td></tr>
380
+ <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>
381
+
382
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2566579.htm">Is Anybody There?</a></td></tr>
383
+ <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.gif" alt="three stars"></td></tr>
384
+
385
+ </table>
386
+
387
+
388
+ <h3 class="reviews">Movies and interviews from 3&nbsp;June 2009</h3>
389
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
390
+
391
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2569332.htm">Sydney Film Festival Package</a></td></tr>
392
+
393
+
394
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563748.htm">Adventureland</a></td></tr>
395
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
396
+
397
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563799.htm">Terminator Salvation</a></td></tr>
398
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
399
+
400
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563833.htm">I Love You Man</a></td></tr>
401
+ <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>
402
+
403
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563844.htm">Two Lovers</a></td></tr>
404
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
405
+
406
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563857.htm">Adventureland Interview</a></td></tr>
407
+
408
+
409
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563862.htm">Two Lovers Interview</a></td></tr>
410
+
411
+
412
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2563870.htm">Adventureland Interview Extra Grabs (Web Exclusive)</a></td></tr>
413
+
414
+
415
+ </table>
416
+
417
+
418
+ <h3 class="reviews">Movies and interviews from 27&nbsp;May 2009</h3>
419
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
420
+
421
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2581980.htm">Tetro</a></td></tr>
422
+
423
+
424
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2582005.htm">No One Knows About Persian Cats</a></td></tr>
425
+
426
+
427
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2582012.htm">Broken Embraces</a></td></tr>
428
+
429
+
430
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2582023.htm">Antichrist</a></td></tr>
431
+
432
+
433
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2582032.htm">Winners Package</a></td></tr>
434
+
435
+
436
+ </table>
437
+
438
+
439
+ <h3 class="reviews">Movies and interviews from 20&nbsp;May 2009</h3>
440
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
441
+
442
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2549456.htm">State Of Play</a></td></tr>
443
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
444
+
445
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2549475.htm">What Just Happened</a></td></tr>
446
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
447
+
448
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2549507.htm">What Just Happened Interview</a></td></tr>
449
+
450
+
451
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2549845.htm">Katyn</a></td></tr>
452
+ <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>
453
+
454
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2548818.htm">Quiet Chaos</a></td></tr>
455
+ <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/rthree.gif" alt="three stars"></td></tr>
456
+
457
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2548835.htm">Quiet Chaos Interview</a></td></tr>
458
+
459
+
460
+ </table>
461
+
462
+
463
+ <h3 class="reviews">Movies and interviews from 13&nbsp;May 2009</h3>
464
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
465
+
466
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547557.htm">My Year Without Sex</a></td></tr>
467
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
468
+
469
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547587.htm">My Year Without Sex Interview</a></td></tr>
470
+
471
+
472
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547604.htm">Gomorrah</a></td></tr>
473
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
474
+
475
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547621.htm">Gomorrah Interview</a></td></tr>
476
+
477
+
478
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547626.htm">Angels And Demons</a></td></tr>
479
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
480
+
481
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2548850.htm">My Year Without Sex Interview - Extra Grabs (Web Exclusive)</a></td></tr>
482
+
483
+
484
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2552154.htm">Ghosts of Girlfriends Past</a></td></tr>
485
+ <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/rtwo.gif" alt="two stars"></td></tr>
486
+
487
+ </table>
488
+
489
+
490
+ <h3 class="reviews">Movies and interviews from 6&nbsp;May 2009</h3>
491
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
492
+
493
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547363.htm">Synecdoche, New York Interview Extra Grabs (Web Exclusive)</a></td></tr>
494
+
495
+
496
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547372.htm">Star Trek</a></td></tr>
497
+ <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>
498
+
499
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547404.htm">Star Trek Interview Extra Grabs (Web Exclusive)</a></td></tr>
500
+
501
+
502
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547281.htm">Synecdoche, New York</a></td></tr>
503
+ <tr><td>David</td><td><img src="/atthemovies/img/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
504
+
505
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547310.htm">The Baader-Meinhof Complex</a></td></tr>
506
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
507
+
508
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547203.htm">Defiance</a></td></tr>
509
+ <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.gif" alt="three stars"></td></tr>
510
+
511
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547351.htm">Synecdoche, New York Interview</a></td></tr>
512
+
513
+
514
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2547417.htm">Star Trek Interview</a></td></tr>
515
+
516
+
517
+ </table>
518
+
519
+
520
+ <!-- pre-May6 incs -->
521
+ <h3 class="reviews">Movies and interviews from 29&nbsp;April 2009</h3>
522
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
523
+
524
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542553.htm">X-Men Origins - Wolverine</a></td></tr>
525
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
526
+
527
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542562.htm">Tenderness</a></td></tr>
528
+ <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/rfour.gif" alt="four stars"></td></tr>
529
+
530
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542607.htm">Tenderness Interview</a></td></tr>
531
+
532
+
533
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542608.htm">Tenderness Interview Extra Grabs (Web Exclusive)</a></td></tr>
534
+
535
+
536
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542612.htm">Samson & Delilah</a></td></tr>
537
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfive.gif" alt="five stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfive.gif" alt="five stars"></td></tr>
538
+
539
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542644.htm">Samson & Delilah Interview</a></td></tr>
540
+
541
+
542
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542648.htm">Samson & Delilah Interview Extra Grabs (Web Exclusive)</a></td></tr>
543
+
544
+
545
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542665.htm">Paris 36</a></td></tr>
546
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two 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>
547
+
548
+ </table>
549
+
550
+
551
+ <h3 class="reviews">Movies and interviews from 22&nbsp;April 2009</h3>
552
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
553
+
554
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527687.htm">A Film With Me In It</a></td></tr>
555
+ <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>
556
+
557
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2539660.htm">The Boy In The Striped Pyjamas</a></td></tr>
558
+ <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>
559
+
560
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2539688.htm">Closed For Winter</a></td></tr>
561
+ <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.gif" alt="three stars"></td></tr>
562
+
563
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2539707.htm">Closed For Winter Interview</a></td></tr>
564
+
565
+
566
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2539717.htm">Tulpan</a></td></tr>
567
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfour-and-a-half.gif" alt="four-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
568
+
569
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2539739.htm">Tulpan Interview</a></td></tr>
570
+
571
+
572
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542533.htm">Closed For Winter Interview Extra Grabs (Web Exclusive)</a></td></tr>
573
+
574
+
575
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2542541.htm">Tulpan Interview Extra Grabs (Web Exclusive)</a></td></tr>
576
+
577
+
578
+ </table>
579
+
580
+
581
+ <h3 class="reviews">Movies and interviews from 15&nbsp;April 2009</h3>
582
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
583
+
584
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2535808.htm">Acolytes</a></td></tr>
585
+ <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>
586
+
587
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527200.htm">Fast And Furious</a></td></tr>
588
+ <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/rtwo.gif" alt="two stars"></td></tr>
589
+
590
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527217.htm">Race To Witch Mountain</a></td></tr>
591
+ <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/rone-and-a-half.gif" alt="one-and-a-half stars"></td></tr>
592
+
593
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527715.htm">Camino</a></td></tr>
594
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
595
+
596
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527735.htm">A Pain In The Ass</a></td></tr>
597
+ <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/rtwo.gif" alt="two stars"></td></tr>
598
+
599
+ </table>
600
+
601
+
602
+ <h3 class="reviews">Movies and interviews from 8&nbsp;April 2009</h3>
603
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
604
+
605
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527094.htm">Good</a></td></tr>
606
+ <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/rtwo.gif" alt="two stars"></td></tr>
607
+
608
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527129.htm">Good Interview</a></td></tr>
609
+
610
+
611
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527141.htm">Mary And Max</a></td></tr>
612
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
613
+
614
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527151.htm">Mary And Max Interview</a></td></tr>
615
+
616
+
617
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527158.htm">JCVD</a></td></tr>
618
+ <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.gif" alt="three stars"></td></tr>
619
+
620
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2527182.htm">The Boat That Rocked</a></td></tr>
621
+ <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>
622
+
623
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2532068.htm">Good Interview - Extra Grabs (Web Exclusive)</a></td></tr>
624
+
625
+
626
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2532076.htm">Mary And Max Interview Extra Grabs (Web Exclusive)</a></td></tr>
627
+
628
+
629
+ </table>
630
+
631
+
632
+ <h3 class="reviews">Movies and interviews from 1&nbsp;April 2009</h3>
633
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
634
+
635
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2517644.htm">Summer Hours Interview - Extra Grabs (Web Exclusive)</a></td></tr>
636
+
637
+
638
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2524953.htm">Elegy</a></td></tr>
639
+ <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>
640
+
641
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514385.htm">Monsters Vs. Aliens</a></td></tr>
642
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
643
+
644
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514410.htm">Inkheart</a></td></tr>
645
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
646
+
647
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514427.htm">Summer Hours</a></td></tr>
648
+ <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>
649
+
650
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514447.htm">Summer Hours Interview</a></td></tr>
651
+
652
+
653
+ </table>
654
+
655
+
656
+ <h3 class="reviews">Movies and interviews from 25&nbsp;March 2009</h3>
657
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
658
+
659
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2517203.htm">The Uninvited</a></td></tr>
660
+ <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.gif" alt="three stars"></td></tr>
661
+
662
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2517599.htm">A Complete History Of My Sexual Failures Interview - Extra Grabs (Web Exclusive)</a></td></tr>
663
+
664
+
665
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514258.htm">Bottle Shock</a></td></tr>
666
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
667
+
668
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514283.htm">Knowing</a></td></tr>
669
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
670
+
671
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514300.htm">Wendy And Lucy</a></td></tr>
672
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
673
+
674
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514335.htm">A Complete History Of My Sexual Failures</a></td></tr>
675
+ <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>
676
+
677
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2514346.htm">A Complete History of My Sexual Failures interview</a></td></tr>
678
+
679
+
680
+ </table>
681
+
682
+
683
+ <h3 class="reviews">Movies and interviews from 18&nbsp;March 2009</h3>
684
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
685
+
686
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502300.htm">Duplicity</a></td></tr>
687
+ <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>
688
+
689
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502354.htm">Two Fists, One Heart</a></td></tr>
690
+ <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/rthree.gif" alt="three stars"></td></tr>
691
+
692
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502357.htm">Two Fists, One Heart Interview</a></td></tr>
693
+
694
+
695
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502363.htm">Blindness</a></td></tr>
696
+ <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.gif" alt="three stars"></td></tr>
697
+
698
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502376.htm">Blindness Interview</a></td></tr>
699
+
700
+
701
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502380.htm">Salvation</a></td></tr>
702
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
703
+
704
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2505981.htm">Let The Right One In</a></td></tr>
705
+ <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>
706
+
707
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2509171.htm">Two Fists, One Heart Interview - Extra Grabs (Web Exclusive)</a></td></tr>
708
+
709
+
710
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2511975.htm">Blindness Interview Extra Grabs (Web Exclusive)</a></td></tr>
711
+
712
+
713
+ </table>
714
+
715
+
716
+ <h3 class="reviews">Movies and interviews from 11&nbsp;March 2009</h3>
717
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
718
+
719
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2506074.htm">Easy Virtue Interview</a></td></tr>
720
+
721
+
722
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2513505.htm">Of Time and the City Interview - extended version</a></td></tr>
723
+
724
+
725
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502181.htm">Of Time And The City</a></td></tr>
726
+ <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>
727
+
728
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502199.htm">Easy Virtue</a></td></tr>
729
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
730
+
731
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502224.htm">Easy Virtue Interview - Extra Grabs (Web Exclusive)</a></td></tr>
732
+
733
+
734
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502225.htm">Confessions Of A Shopaholic</a></td></tr>
735
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr>
736
+
737
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2502257.htm">Appaloosa</a></td></tr>
738
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
739
+
740
+ </table>
741
+
742
+
743
+ <h3 class="reviews">Movies and interviews from 4&nbsp;March 2009</h3>
744
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
745
+
746
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493343.htm">Dean Spanley</a></td></tr>
747
+ <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>
748
+
749
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493362.htm">The Secret Life Of Bees</a></td></tr>
750
+ <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/rtwo.gif" alt="two stars"></td></tr>
751
+
752
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493386.htm">Watchmen</a></td></tr>
753
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfour-and-a-half.gif" alt="four-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
754
+
755
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493420.htm">Beautiful</a></td></tr>
756
+ <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/rtwo.gif" alt="two stars"></td></tr>
757
+
758
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493524.htm">Beautiful Interview Extra Grabs (Web Exclusive)</a></td></tr>
759
+
760
+
761
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493527.htm">Dean Spanley Interview - Extra Grabs (Web Exclusive)</a></td></tr>
762
+
763
+
764
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493542.htm">Watchmen Interview Extra Grabs (Web Exclusive)</a></td></tr>
765
+
766
+
767
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2506958.htm">Dean Spanley Interview</a></td></tr>
768
+
769
+
770
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2507499.htm">Watchmen Interview</a></td></tr>
771
+
772
+
773
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2507503.htm">Beautiful Interview</a></td></tr>
774
+
775
+
776
+ </table>
777
+
778
+
779
+ <h3 class="reviews">Movies and interviews from 25&nbsp;February 2009</h3>
780
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
781
+
782
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493754.htm">The Combination Interview</a></td></tr>
783
+
784
+
785
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2492722.htm">The Combination</a></td></tr>
786
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
787
+
788
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2492730.htm">The Unborn</a></td></tr>
789
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rone-and-a-half.gif" alt="one-and-a-half stars"></td></tr>
790
+
791
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2481052.htm">Last Chance Harvey</a></td></tr>
792
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rthree.gif" alt="three stars"></td></tr>
793
+
794
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2495064.htm">The Combination Interview - Web Exclusive Extra Grabs</a></td></tr>
795
+
796
+
797
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476190.htm">W.</a></td></tr>
798
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
799
+
800
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493561.htm">Adelaide Film Festival Package</a></td></tr>
801
+
802
+
803
+ </table>
804
+
805
+
806
+ <h3 class="reviews">Movies and interviews from 18&nbsp;February 2009</h3>
807
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
808
+
809
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476140.htm">Zack And Miri Make A Porno</a></td></tr>
810
+ <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.gif" alt="three stars"></td></tr>
811
+
812
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476112.htm">Frozen River</a></td></tr>
813
+ <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>
814
+
815
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2478645.htm">The International Interview</a></td></tr>
816
+
817
+
818
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2478648.htm">The Reader Interview</a></td></tr>
819
+
820
+
821
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476075.htm">The International</a></td></tr>
822
+ <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-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
823
+
824
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493959.htm">The International Interview - Web Exclusive Extra Grabs</a></td></tr>
825
+
826
+
827
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2493966.htm">The Reader Interview - Web Exclusive Extra Grabs</a></td></tr>
828
+
829
+
830
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476057.htm">The Reader</a></td></tr>
831
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rfour-and-a-half.gif" alt="four-and-a-half stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rfour.gif" alt="four stars"></td></tr>
832
+
833
+ </table>
834
+
835
+
836
+ <h3 class="reviews">Movies and interviews from 11&nbsp;February 2009</h3>
837
+ <table border="0" cellspacing="0" cellpadding="0" class="sideRating">
838
+
839
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2475880.htm">Ghost Town</a></td></tr>
840
+ <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/rthree-and-a-half.gif" alt="three-and-a-half stars"></td></tr>
841
+
842
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2475908.htm">Changeling</a></td></tr>
843
+ <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-and-a-half.gif" alt="four-and-a-half stars"></td></tr>
844
+
845
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2475973.htm">Gran Torino</a></td></tr>
846
+ <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/rfive.gif" alt="five stars"></td></tr>
847
+
848
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2475988.htm">Rachel Getting Married</a></td></tr>
849
+ <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/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
850
+
851
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476013.htm">Rachel Getting Married Interview</a></td></tr>
852
+
853
+
854
+ <tr><td colspan=2 class="mn"><a href="http://www.abc.net.au/atthemovies/txt/s2476016.htm">He's Just Not That Into You</a></td></tr>
855
+ <tr><td>Margaret</td><td><img src="/atthemovies/img/rtwo.gif" alt="two stars"></td></tr> <tr><td>David</td><td><img src="/atthemovies/img/rtwo-and-a-half.gif" alt="two-and-a-half stars"></td></tr>
856
+
857
+ </table>
858
+
859
+ <!-- PRINT_CONTENT_END --></td>
860
+ <td class="sidebarcontainer">
861
+ <div id="sidebar">
862
+ <!--a href="/atthemovies/20years/">
863
+ <img src="/atthemovies/img/sidebar_dm.jpg" class="multimedia2" style="margin:7px 0px 0px 10px;clear:both;float:none;" alt="Margaret Pomeranz and David Stratton"></a>
864
+
865
+ <style type="text/css">
866
+ #specialPromo {
867
+ width:164px;
868
+ margin:0px 0px 10px 10px;
869
+ padding-bottom:10px;
870
+ background:#333333 url(css/bg_leftnav.jpg) 4px -20px;
871
+ color:#AFD6E5;
872
+ text-align:center;
873
+ }
874
+
875
+ </style>
876
+ <div id="specialPromo">
877
+ <p style="padding:3px 4px 3px 4px;margin-top:0px;text-align:center;background:#243037;color:#AFD6E5;letter-spacing:1px"><strong>Celebrating 20 years on television!</strong></p>
878
+ <p style="padding:10px 5px 10px 5px">See who has come out to wish Margaret and David a happy 20th anniversary in this special video presentation...<br><a href="/atthemovies/20years/"><strong>watch the video </strong>&#187;</a></p>
879
+ </div-->
880
+ <a href="/atthemovies/viewerspoll/">
881
+ <img src="/atthemovies/img/promo_poll2008_res.jpg" style="margin:7px 0px 0px 10px;" border="0" alt="2008 viewers poll"></a>
882
+ <!--p style="width:164px;margin:0px 0px 0px 10px;padding:0;text-align:center"><a href="http://www2b.abc.net.au/votecentral/Client/Login.aspx?E=19" style="line-height:18px">Vote now&nbsp;&#187;</strong></a><br>
883
+ </p-->
884
+ <!--a href="/atthemovies/viewerspoll/">
885
+ <img src="/atthemovies/img/promo_poll2007.jpg" style="margin:7px 0px 0px 10px;" border="0" alt=""></a>
886
+ <p style="width:164px;margin:0px 0px 0px 10px;padding:0;text-align:center"><a href="/atthemovies/viewerspoll/" style="line-height:18px">Vote now&nbsp;&#187;</strong></a><br>
887
+ </p-->
888
+ <div style="margin:0px 0 10px 0;">
889
+ <a href="/atthemovies/video/">
890
+ <img src="/atthemovies/img/vodcast_promo.jpg" style="margin:7px 0px 0px 10px;" border="0" alt="2007 viewers poll"></a>
891
+ </div>
892
+
893
+ </div>
894
+ <div id="tvtonight"><table cellpadding="0" cellspacing="0" border="0" summary="ABC1 prime-time evening program listing for tonight">
895
+ <caption align="top"><a href="/tv/guide/netw/" title="ABC1 prime-time evening program listing">On ABC1 tonight</a></caption>
896
+ <tr valign="top">
897
+ <th scope="row">6:00</th>
898
+ <td><a href="/tv/guide/netw/200908/programs/AC0824H025D2082009T180000.htm">At The Movies</a></td>
899
+ </tr>
900
+ <tr valign="top">
901
+ <th scope="row">6:30</th>
902
+ <td><a href="/tv/guide/netw/200908/programs/LE0817V026D2082009T183000.htm">The Einstein Factor</a></td>
903
+ </tr>
904
+ <tr valign="top">
905
+ <th scope="row">7:00</th>
906
+ <td><a href="/tv/guide/netw/200908/programs/NC0901H001D2082009T190000.htm">ABC News (NSW)</a></td>
907
+ </tr>
908
+ <tr valign="top">
909
+ <th scope="row">7:30</th>
910
+ <td><a href="/tv/guide/netw/200908/programs/ZY8529A001D2082009T193000.htm">Wall Of Death</a></td>
911
+ </tr>
912
+ <tr valign="top">
913
+ <th scope="row">8:23</th>
914
+ <td><a href="/tv/guide/netw/200908/programs/NC0903H003D2082009T202300.htm">ABC News Up-Date (National 5')</a></td>
915
+ </tr>
916
+ <tr valign="top">
917
+ <th scope="row">8:30</th>
918
+ <td><a href="/tv/guide/netw/200908/programs/ZY9129A003D2082009T203000.htm">The Last Enemy</a></td>
919
+ </tr>
920
+ <tr valign="top">
921
+ <th scope="row">9:30</th>
922
+ <td><a href="/tv/guide/netw/200908/programs/RN0811H027D2082009T213000.htm">Compass</a></td>
923
+ </tr>
924
+ <tr valign="top">
925
+ <th scope="row">10:00</th>
926
+ <td><a href="/tv/guide/netw/200908/programs/ZY9207A001D2082009T220000.htm">In The Company Of Actors</a></td>
927
+ </tr>
928
+ <tr>
929
+ <td colspan="2" style="font-size:0.9em; margin:0; padding:5px 8px;"><a href="/syndication/tv_epg.xml" style="display:inline; margin:0; padding:0;"><img alt="Get the RSS Feed" src="/tv/img/xml.gif" border="0" style="width:36px; height:14px; border:0; vertical-align:middle;"></a> <a href="/tv/rss/" title="How to get the RSS Feed" style="display:inline; margin:0; padding:0 0 0 5px; background:transparent;">TV guide via <abbr title="Real Simple Syndication">RSS</abbr></a></td>
930
+ </tr>
931
+ </table>
932
+
933
+ </div><!-- END TVTONIGHT //-->
934
+ <div id="related">&nbsp;</div><!-- END RELATED //--></td>
935
+ </tr></tbody></table><!-- END CONTENT CONTAINER -->
936
+ <div id="footer"><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>
937
+ | <a href="/atthemovies/disclaimer.htm">Movie listings disclaimer</a> | <a href="/conditions.htm">Conditions of Use</a></p>
938
+ <!-- n -->
939
+
940
+ </div><!-- END FOOTER //--></body></html>