function writeBlindNavBar() {
    document.write( "<style type='text/css'>p { text-decoration: none; text-align: center; }</style>\n<p>" + navBar() + "</p>\n" );
};

function writeNavBar() {
    document.write( navBar() + '\n' + navImages() );
}
    
function navBar() {
    return "<a href='home.html'>Home</a>\n" 
    + " <a href='products.html'>Products</a>\n" 
    + " <a href='services.html'>Services</a>\n"
    + " <a href='directions.html'>Directions</a>\n"
    + " <a href='history.html'>Festival History</a><br />\n"
    + " <a href='species.html'>Available Species</a><br />\n"
    + " <a href='frm_order.html'>Order Form</a>\n"
    + " <a href='contact'>Contact Us</a>\n"
    + " <a href='people'>People</a>\n";
};

function navImages() {
    return "";
//    return "<br /><a href='http://wisferry.com/schedule.html' target='ferry'><img src='images/deathsdoor.gif' alt='Wis Ferry Logo'/></a>\n"
//    + " <a href='http://washingtonislandchamber.com/lodging.html' target='lodging'>"
//    + "<img src='images/washington_island_all.jpg' alt='Chamber of Commerce'/>"; 
};

function writeTableHeaderFooter(colspan,title) {
  document.write(
    "<thead><tr>\n<th colspan='"+colspan+"'><div id='title'>"+title+"</div></th></tr></thead>\n" +
    "<tfoot><tr><th colspan='"+colspan+"'>\n<a name='navBar' /><div id='siteNavigation'>\n" +
	navBar() + "\n" + navImages() + "\n</div></th></tr></tfoot>\n"
    );

}

function writePageFooter() {
    document.write(
      "<div id='footer'>" +
    	"To offer feedback or get more information, send email to <a href='mailto:woodshop@deppeler.net'>woodshop@deppeler.net</a><br />\n" +
	"Copyright &copy; 2009 Deb Deppeler\n</div>"
    );
};

function writeLink(page,text) {
     document.write( "<a href='" + page + "'>" + text + "</a>\n" );
}

function writePhotoLink(link,fig,alt) {
    document.write(
        "<div id='photoBox'>\n<a href='images/"+link+"'>\n" +
        "<img src='images/"+fig+"' alt='"+alt+"' width='300px' />" +
        "\n</a>\n</div>"
    );
}

