function navOver(oTarget)
{
	if(oTarget.status == "nonact")
	{
		oTarget.style.cursor="hand";
		oTarget.style.border="solid 1px #556b2f";
		oTarget.style.background="yellow";
	}
}
function navOut(oTarget)
{
	if (oTarget.status == "nonact")
	{
		oTarget.style.border="solid 1px";
		oTarget.style.background="#CCFF99";
	}
}
function showIt(oTarget)
{
	var sTarget = oTarget.id + 'a';
	oTarget.status="active";
	if (oTarget.id == "links4")
	{
		alert("this link will open in another window now");
		openMe("http://guestbook.pax.nu/cgi-local/guest.cgi?book19595");
	}
	if (oTarget.id == "links5")
	{
		alert("this link will open in another window now");
		openMe("http://abingdonhistory.home.att.net/Content/Framesethome.htm");
	}
	else
	{
		document.all[sTarget].style.display="block";
		for (i=0;i<=7;i++)
		{
			var id = 'links' +  i;
			if (id==oTarget.id)
			{
				oTarget.style.border="solid 1px yellow";
				oTarget.style.background="green";
			}
			else
			{
				var x = id + 'a';
				document.all[id].style.background="#CCFF99";
				document.all[id].status="nonact";
				document.all[x].style.display="none";
				document.all[id].style.border="solid 1px";
				//alert("id " + i + " has a status of " + document.all[i].status);
			}
		}
	}//alert("clicked on id " + oTarget.id);
}
function openMe(url)
{
	childwindow = window.open(url,"usedWindow", 'menubar=yes, resizable=yes, toolbar=yes, scrollbars=yes, height=600, width=800');
	childwindow.focus();
}