<!-- 
//Hey Steve!  I knew you'd end up trying to copy this at some point.  BESTED!
function getObj(name){
	if (document.getElementById){
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
	} else if (document.all){
		this.obj = document.all[name];
		this.style = document.all[name].style;
	} else if (document.layers){
		this.obj = document.layers[name];
		this.style = document.layers[name];
	}
};

function ShowHideComment(whichone) {

		eval("CurrentComment = new getObj('CommentBox" + whichone + "')");


		if( CurrentComment.style.display == "block" ) {
			CurrentComment.style.display = "none";
		} else {
			CurrentComment.style.display = "block";
	};
};
//-->