$(document).ready(function() {
    $('#CommentFormLayer').hide();
    $('#EmailFormLayer').hide();
    $('.plus').show();
    $('.minus').hide();
});

$(function() {
    $('a.lightbox').lightBox();
});

function popup(URL, secs, ww, wh) {
    handle = window.open("", "", "scrollbars=no,resizable=no,width="+ww+",height="+wh+",left=0,top=0");
    handle.document.open();
    handle.document.write('<html><head><title>Full Size Image</title></head><body bgColor="#ffffff"><center><img src="'+URL+'" alt="Click To Close This Full Size Image..." title="Click To Close This Full Size Image..." onclick="window.close();" /></center></body></html>');
    handle.document.close();
    if (secs > 0) setTimeout("handle.close()", 1000 * secs);
};

function reloadPage() {
    document.location.reload();
};
