function add_naves() {
	return '<option value="naves">Naves Topical Bible' + "\n";
}

function add_eastons() {
	return '<option value="eastons">Eastons Bible Dictionary' + "\n";
}


function add_kjv() {
	return '<option value="kjv">King James Bible' + "\n";
}


function add_smiths() {
	return '<option value="smiths">Smith\'s Bible Dictionary' + "\n";
}

function add_isbe() {
	return '<option value="isbe">Int\'l Bible Encyclopedia' + "\n";
}



function display_bho_form() {
	var w = window;
	var frm = '<form name="frmNavesSearch" method="get" action="http://www.bible-history.com/tools/">' + "\n";
	frm += '<input value="search" type="submit" name="">&nbsp;';
	frm += '<input type="text" size="20" name="search_term">&nbsp;';
	if (window.bho_your_logo) {
		frm += '<input type="hidden" name="bho_your_logo" value="' + w.bho_your_logo + '">' + "\n";
	}

	if (window.bho_your_name) {
		frm += '<input type="hidden" name="bho_your_name" value="' + w.bho_your_name + '">' + "\n";
	}


	frm += '<select name="tool">' + "\n";


	frm += add_kjv();
	frm += add_naves();
	frm += add_eastons();
	frm += add_smiths();
	frm += add_isbe();

	frm += '</select>' + "\n";
	frm += '</form>' + "\n";

	document.write(frm);
}

display_bho_form();


