/*global document, bgcolor, height, width, target */

album = {};

album.show = function () {
    var bg   = (typeof this.bgcolor === 'undefined') ? '000000' : this.bgcolor;
    var h    = (typeof this.height  === 'undefined') ? '160'    : this.height;
    var w    = (typeof this.width   === 'undefined') ? '240'    : this.width;
    var targ = (typeof this.target  === 'undefined') ? ''       : this.target;
    var str = '<span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTE&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2511.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 001" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzYwNzE&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/6071.resize_{width}x{height}_{background}.jpeg" alt="DSCF0019" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzYwNzI&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/6072.resize_{width}x{height}_{background}.jpeg" alt="DSCF0044" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzYwNzM&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/6073.resize_{width}x{height}_{background}.jpeg" alt="DSCF0062" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzYwNzQ&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/6074.resize_{width}x{height}_{background}.jpeg" alt="DSCF0421" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MjA&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2520.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 010" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTg&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2518.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 008" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTc&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2517.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 007" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTY&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2516.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 006" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTU&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2515.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 005" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTQ&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2514.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 004" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MTM&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2513.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 003" height="{height}" width="{width}"/></a></span><span class="photo"><a class="photoLink" target="{target}" href="http://webdephoto.net/bare_photo.php?id=MTI3XzI1MjI&amp;TB_iframe=true&amp;height=480&amp;width=640" name=""><img src="http://webdephoto.net/image/127/2522.resize_{width}x{height}_{background}.jpeg" alt="North Bend Bar & Grill 011" height="{height}" width="{width}"/></a></span>';
    str = str.replace(/\{background\}/g, bg);
    str = str.replace(/\{height\}/g, h);
    str = str.replace(/\{width\}/g, w);
    str = str.replace(/\{target\}/g, targ);

    document.write(str);
    tb_init('a.photoLink');


}
