<!--

function display(what) {
 window.open((what),'newWnd','width=750,height=520,scrollbars=yes,resizeable=no,menubar=no,status=no,directories=no');
}

function displayPhoto(what) {
 window.open((what),'newWnd','width=650,height=550,scrollbars=yes,resizeable=no,menubar=no,status=no,directories=no,toolbar=no');
}

function preview(title,body,date) {
 var calEntry = window.open('','AlbumWindow','width=450,height=350,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no');

 calEntry.document.open();
 calEntry.document.write('<html>\n<head>\n<title>');
 calEntry.document.write(title);
 calEntry.document.write('</title>\n<link rel=\"stylesheet\" href=\"http://www.bh-wbpastoralcharge.net/css/main.css\">\n</head>\n');
 calEntry.document.write('<body bgcolor="#585300">\n<table CELLPADDING="0" CELLSPACING="0" border=\"0\" bgcolor="#FFFFFF" width=\"100%\ height=\"100%\">\n<tr>\n');
 calEntry.document.write('<td width=\"100%\" valign=\"top\" align=\"center\" CLASS=\"calendar\">\n');
 calEntry.document.write(title);
 calEntry.document.write('<hr width=\"80%\" color=\"#585300\">\n</td>\n</tr>\n<tr>\n');
 calEntry.document.write('<tr><td width=\"100%\" CLASS=\"time\" valign=\"top\" align=\"center\">\n');
 calEntry.document.write(date);
 calEntry.document.write('<BR>\n</td>\n</tr>\n<tr>\n<td width=\"100%\" valign=\"middle\" align=\"center\">\n');
 calEntry.document.write('<table border=\"0\" width=\"75%\">\n');
 calEntry.document.write('<tr>\n<td width=\"100%\" CLASS=\"paddingLeft\" valign=\"middle\" align=\"left\">\n');
 calEntry.document.write('<BR>\n<BR>\n' + (body) + '\n');
 calEntry.document.write('<BR>\n<BR>\n');
 calEntry.document.write('</td>\n</tr>\n</table>\n');
 calEntry.document.write('</td>\n</tr>\n<tr bgcolor=\"#585300\">\n<td width=\"100%\" valign=\"middle\" align=\"center\">\n<BR>\n');
 calEntry.document.write('<a class=\"close\" href=\"javascript:window.close();\">Close Window</a>\n');
 calEntry.document.write('</td></tr></table></body></html>');
 calEntry.document.close();
}


//-->