function toggleJTechComments(event) {

	var jtechComments = document.getElementById('jtechCommentsContainer');
	if (jtechComments) {
		// get the current display style
		var currentDisplayStyle = jtechComments.style.display;

		// if we're about to show it - make sure it's positioned appropriately
		if (currentDisplayStyle == 'none') {

			// sort of show the comment slip, so we can get a reading on the height
			jtechComments.style.visibility = 'hidden';
			jtechComments.style.display = 'block';
			var commentHeight = jtechComments.offsetHeight;
			jtechComments.style.display = 'none';
			jtechComments.style.visibility = 'visible';

			jtechComments.style.top = -(commentHeight)+'px';
		}

		// toggle its display status from what it currently is		
		jtechComments.style.display = (currentDisplayStyle == 'none' ? 'block' : 'none');
	}

	// and return false, to prevent it from bubbling up to any link
	return false;
}


