
// showFloater - FAQ functions
var theElementStyleOld = null;
var objectOld = null;
function showFloater(objectID,object) {
	if (theElementStyleOld && objectOld) {
		//theElementStyleOld.style.display = "none";
		//objectOld.style.fontWeight = "normal";
		//objectOld.style.textDecoration = "underline";
	}
	if (document.getElementById) {
		var theElementStyle = document.getElementById(objectID);
		if (theElementStyle.style.display == "block") {
			theElementStyle.style.display = "none";
			object.style.fontWeight = "normal";
			object.style.textDecoration = "underline";
		} else {
			theElementStyle.style.display = "block";
			object.style.fontWeight = "bold";
			object.style.textDecoration = "none";
			theElementStyleOld = theElementStyle;
			objectOld = object;
		}
	}
}


