function thisIsPublicLibrary() {}

function headerx(title, links) {
	header_i();
	document.write("<center>" + links + "</center>");
	header_title(title);
}

function header(title) {
	header_i();
	header_title(title);
}

function header_i() {
//	document.write("<link REl=stylesheet HREF='"http://ling.osu.edu/~hana/hog/style.css' TYPE='text/css'>");
	document.write("<link REl=stylesheet HREF='style.css' TYPE='text/css'>");

	document.write('<body>')
    //navigBar();
}

function navigBar() {
	document.write("<table border=0 cellpadding=0 cellspacing=0 width=100%>");
	document.write("<tr>");
	
	document.write("<td valign=top width=10></td>");
	
	document.write("<td valign=top align=left width=100 nowrap>");
	document.write("<P>");
	document.write("<div class='LAtitle'>");
	
	document.write("<BR><A HREF='http://ling.osu.edu/~hana/hog/index.html'>Home</A>");
	document.write("<HR>");
	
	document.write("<A HREF='http://ling.osu.edu/~hana/hog/overview.html'>Overview</A>");
	document.write("<BR><A HREF='http://ling.osu.edu/~hana/hog/bibliography.html'>Bibliography</A>");
	document.write("<BR><A HREF='http://ling.osu.edu/~hana/hog/links.html'>Links</A>");

	document.write("</td>");
	
	document.write("<td valign=top width=10></td>");

	document.write("<td valign=top>");
}

function header_title(title) {
	document.write("<h1>");
	document.write("<center>");
	document.write(title);
	document.write("</center>");
	document.write("</h1>");
}


function footer(date) {
	document.write("<hr>")
	document.write("<TABLE BORDER='0' WIDTH='100%' CELLSPACING='1' CELLPADDING='1'>");
	document.write("<TR>");
	document.write("<TD ALIGN='LEFT'>Optimized for 1024 x 768 resolution</TD>");
	document.write("<TD ALIGN='RIGHT'>Last update: " + date + "</TD>");
	document.write("</TR>");
	document.write("</TABLE>");

	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
}

