function toggleReleaseNotes(element,content,min,max) {
	if (element.style.height == min + "px") {
		element.style.height =  content.offsetHeight + 10 + "px";
	} else {
		element.style.height = min + "px";
	}
}
