function lnkHover(inA, doHover) {
	//if(inA.parentNode) {
	//	theTD = inA.parentNode;
	//} else if (inA.parentElement) {
	//	theTD = inA.parentElement;
	//} else {
	//	return;
	//}

	theTD = inA;

	//alert(theTD);
	if(doHover) {
		theTD.style.background="url(link-bghover.gif)";
	} else {
		theTD.style.background="transparent";
	}
}

// THIS IS FOR THE MINI FOLIO
function toggleMoreInfo(inAnchor) {
	mf = document.getElementById("moreInfo");

	if(!mf) {return;}
	if(mf.style.display == "none") {
		mf.style.display = "inline";
		inAnchor.innerHTML = "Less Info";
	} else {
		mf.style.display = "none";
		inAnchor.innerHTML = "More Info";
	}
}

function helpBox(parentSpan) {
	outerSpan = parentSpan.getElementsByTagName("span")[0];
	innerSpan = parentSpan.getElementsByTagName("span")[1];
	if(!innerSpan) {
		alert("InnerSpan not found");
		return;
	}

	if(innerSpan.style.display=="block") {
		innerSpan.style.display="none";
		outerSpan.style.backgroundImage = "url(helpblue.jpg)";
	} else {
		innerSpan.style.display="block";
		outerSpan.style.backgroundImage = "url(helpgreen.jpg)";
	}

}