function historyIndex()
// displays page in frameset if not in frameset already.
{
if(parent.frames['history_frame']){window.open('history/history.htm','_self');}
else{window.open('history/index.htm','_top');}
}
function bibleIndex()
// displays page in frameset if not in frameset already.
{
if(parent.frames['bible_frame']){window.open('bible/bible.htm','_self');}
else{window.open('bible/index.htm','_top');}
}
function writeHeader()
// Writes a header if the page is a top level frame.
{
document.open();
document.write('<CENTER><TABLE WIDTH="100%" BACKGROUND="images/spectrum.gif" CELLPADDING="0"><TR>');
document.write('<TD ALIGN="LEFT" WIDTH="414"><IMG SRC="images/annomundi_logo_2.gif" ALT="Anno Mundi Books" WIDTH="414" HEIGHT="50"></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="bible/index.htm" TARGET="_top"><IMG SRC="images/bible_icon.gif" ALT="Bible Index" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="history/index.htm" TARGET="_top"><IMG SRC="images/history_icon.gif" ALT="History Index" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="book_orders.htm" TARGET="_top"><IMG SRC="images/books_icon.gif" ALT="Buy a Book" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="index.htm" TARGET="_top"><IMG SRC="images/home_icon.gif" ALT="Home Page" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('</TR></TABLE></CENTER>');
document.close();
}
function writeHeaderBookOrders()
// Writes an alternative header for Book Orders page.
{
document.open();
document.write('<CENTER><TABLE WIDTH="100%" BACKGROUND="images/spectrum.gif" CELLPADDING="0"><TR>');
document.write('<TD ALIGN="LEFT" WIDTH="414"><IMG SRC="images/annomundi_logo_2.gif" ALT="Anno Mundi Books" WIDTH="414" HEIGHT="50"></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="bible/index.htm" TARGET="_top"><IMG SRC="images/bible_icon.gif" ALT="Bible Index" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="history/index.htm" TARGET="_top"><IMG SRC="images/history_icon.gif" ALT="History Index" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('<TD ALIGN="CENTER" VALIGN="BOTTOM"><A HREF="index.htm" TARGET="_top"><IMG SRC="images/home_icon.gif" ALT="Home Page" WIDTH="90" HEIGHT="68" BORDER="0"></A></TD>');
document.write('</TR></TABLE></CENTER>');
document.close();
}
function openWindow(url)
// opens a reduced size window to an external URL so that my site is still on display.
{
var win=window.open(url,'win_new','TOOLBAR=1,LOCATION=1,STATUS=1,MENUBAR=1,SCROLLBARS=1,RESIZABLE=1,WIDTH=800,HEIGHT=500');win.focus();
}
