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() {
	var base = "http://www.ling.ohio-state.edu/~hana/";
//	var base = "";

	document.write("<link REl=stylesheet HREF='" + base + "style.css' TYPE='text/css'>");

	document.write('<body>')

	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/index.html'>Home</A>");
	document.write("<HR>");

	document.write("<A HREF='http://ling.osu.edu/~hana/cv.html'>CV</A>");
	document.write("<BR><A HREF='http://ling.osu.edu/~hana/bib.html'>Bibliography</A>");
	document.write("<BR><A HREF='http://ling.osu.edu/~hana/201/index.html'>Teaching</A>");

	document.write("<HR><A HREF='http://ling.osu.edu/~hana/hog/index.html'>HOG</A>");
	document.write("<BR><A HREF='" + base + "law.html'>LAW</A>");
	document.write("<BR><A HREF='" + base + "Czech.html'>Czech</A>");
	document.write("<BR><A HREF='" + base + "Czechia.html'>Czechia</A>");

	document.write("<BR>&nbsp;");
 	document.write("<HR>");
	document.write("<b>Links</b>");
	document.write("<HR>");

	document.write("<A HREF='" + base + "links.html'>General</A>");
	document.write("<BR><A HREF='" + base + "linksLing.html'>Linguistics</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='RIGHT'>Last update: " + date + "</TD>");
	document.write("</TR>");
	document.write("</TABLE>");

	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
}

