// Master.js

function showmenu(mn)
{
	document.getElementById(mn).className ="selectmenufont";
}

function hidemenu(mn)
{
	document.getElementById(mn).className ="menufont";	
}

function callpage(val)
{
	document.farmlandform.action=val;
	document.farmlandform.submit();
}

function setTitle(title)
{
	document.getElementById("pageheader").innerText = title;
}

function searchBible()
{
	var val = document.farmlandform.quicksearch.value;
	var url = "http://www.biblegateway.com/passage/?search="+val;
	WinPop = window.open(url);
}
