function TogNav(cObj,nOpt)
	{
	if (nOpt == 1) { cBack = "#400000"; cCursor = "pointer"; } 
	else { cBack = "#ED171F"; cCursor = "default"; }
	cObj.style.background = cBack;
	cObj.style.cursor = cCursor;
	}
function TogPic(cImg,cCap)
	{
	document.getElementById("imgDis").src = "pics/" + cImg;
	document.getElementById("spnCap").innerHTML = cCap;
	}
function GoURL(cURL)
	{
	location.href = cURL;
	}
function Submit(cAct)
	{
	document.getElementById("frmGo").action = cAct;
	document.getElementById("frmGo").submit();
	}
function ConSub(nCon,cAct)
	{
	if (nCon == 1) { cMsg = "send this email?"; }
	if (confirm("Are you sure you want to " + cMsg)) { Submit(cAct); }
	}