// Display movie that is relative
// to this directory, setting up 
// the appropriate breadcrumbs.
function showMovie(movie, title) {
    var rt = document.title;
    var ru = document.location.pathname;
    var b = escape(ru + "|" + rt);
    document.location = 'movies/movie_display.html?movie=' + movie + '&title=' + title + '&' + '&bread=' + b;
}
