F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
F/X2

Cast (40)

  • Bryan Brown

    Bryan Brown

    Roland 'Rollie' Tyler

  • Brian Dennehy

    Brian Dennehy

    Leo McCarthy

  • Rachel Ticotin

    Rachel Ticotin

    Kim Brandon

  • Joanna Gleason

    Joanna Gleason

    Liz Kennedy, Assistant DA

  • Philip Bosco

    Philip Bosco

    Lt. Ray Silak, NYPD

  • Kevin J. O'Connor

    Kevin J. O'Connor

    Matt Neely

  • Tom Mason

    Tom Mason

    Mike Brandon, NYPD

  • Caroline Yeager

    Caroline Yeager

    Desk Sergeant

  • Dwayne McLean

    Dwayne McLean

    Mall Guard

  • Damir Andrei

    Damir Andrei

    Defense Attorney

  • Dominic Zamprogna

    Dominic Zamprogna

    Chris Brandon

  • Jossie DeGuzman

    Jossie DeGuzman

    Velez

  • John Walsh

    John Walsh

    Rado

  • Peter Boretski

    Peter Boretski

    Carl Becker

  • Lisa Fallon

    Lisa Fallon

    Kylie

  • Lee Broker

    Lee Broker

    DeMarco

  • Philip Akin

    Philip Akin

    Detective McQuay

  • Tony De Santis

    Tony De Santis

    Detective Santoni

  • Ross Petty

    Ross Petty

    Consigliere

  • Dee McCafferty

    Dee McCafferty

    Chambliss

  • Jeri Craden

    Jeri Craden

    Aunt Kate

  • Karie Stone

    Karie Stone

    Beth

  • Phillip Jarrett

    Phillip Jarrett

    I.A.D. Cop

  • Richard Sali

    Richard Sali

    I.A.D. Cop

  • James Stacy

    James Stacy

    Cyborg

  • Neil Elliot

    Neil Elliot

    Movie F / X Man

  • Leland Crooke

    Leland Crooke

    Movie Director

  • Biff Yeager

    Biff Yeager

    Police Sergeant

  • Foster Fell

    Foster Fell

    Policeman

  • Jack Orend

    Jack Orend

    Wino in Movie

  • Jenifer Chatfield

    Jenifer Chatfield

    Movie Script Girl

  • Kurt Reis

    Kurt Reis

    Judge

  • Charles Leigh Ivey

    Charles Leigh Ivey

    Defendant

  • Arlene Duncan

    Arlene Duncan

    Hooker

  • Robert Kennedy

    Robert Kennedy

    Computer Store Clerk

  • Gerry Quigley

    Gerry Quigley

    Supermarket Manager

  • Harvey Chao

    Harvey Chao

    Chinese Vendor

  • Harry Booker

    Harry Booker

    Prison Priest

  • Bob Clout

    Bob Clout

    Confessional Priest

  • Jack Newman

    Jack Newman

    Art Expert

Crew (89)