// Copyright (c) 1996-1997 Athenia Associates.
// http://www.webreference.com/js/
// License is granted if and only if this entire
// copyright notice is included. By Tomer Shiran.


function revealThis(targetid) {

	if (!document.getElementById) return; //Die if the browser doesn't like DOM
	var thisInfo = document.getElementById(targetid).style;

	// If the article summary is showing, hide it.
	if (thisInfo.display == "block") {
		thisInfo.display = "none";
	}
	else {
		// If the article summary is hidden, show it.
		thisInfo.display = "block";
	}
	return false;
}
