function showAlbum(id, key, title) {
    var height="400";
    var width="600";
    var thumbs = "true";
    var randomize = "false";
    
    var html = "<div class=\"section\"><h3>" + title + "</h3>";
    html += "<p style=\"text-align: center;\">" + 
            "<object align=\"middle\" height=\"" + height+ "\" width=\"" + width + "\">" +
            "<param name=\"movie\" value=\"http://www.smugmug.com/ria/ShizamSlides-2007090601.swf\" />" +
            "<param name=\"flashvars\" value=\"AlbumID=" + id + "&amp;showThumbs=" + thumbs + "&amp;AlbumKey=" + key + "&amp;clickToImage=true&amp;transparent=true&amp;showButtons=true&amp;showLogo=false&amp;randomize=" + randomize + "\" />" +
            "<param name=\"wmode\" value=\"transparent\" />" +
            "<param name=\"bgcolor\" value=\"000000\" />" +
            "<param name=\"allowNetworking\" value=\"all\" />" +
            "<param name=\"allowScriptAccess\" value=\"always\" />" +
            "<embed allownetworking=\"all\" " +
            "allowscriptaccess=\"always\" " +
            "flashvars=\"AlbumID=" + id + "&amp;showThumbs=" + thumbs + "&amp;AlbumKey=" + key + "&amp;clickToImage=true&amp;transparent=true&amp;showButtons=true&amp;showLogo=false&amp;randomize=" + randomize + "\" " +
            "height=\"" + height + "\" " +
            "src=\"http://www.smugmug.com/ria/ShizamSlides-2007090601.swf\" " +
            "type=\"application/x-shockwave-flash\" " +
            "width=\"" + width + "\" " +
            "wmode=\"transparent\">" +
            "</embed></object></p>";
    html += "<p class=\"more\"><a href=\"http://www.smugmug.com/gallery/" + id + "_" + key + "\">Browse photos...</a></p>";
    html += "</div>";
    
    document.getElementById("photoarea").innerHTML = html;
    
    var disp = document.getElementById("photoarea").style.display;
    if (disp == "none") {
        Effect.BlindDown('photoarea');
        //document.getElementById("photoarea").style.display= "block";
    }
}