function resize_content(elid) {
		/* This function will resize the small content window so that it scrolls*/
		document.getElementById(elid).style.height = "1px"; //Doesn't work in ie unless given a smaller value
		
		restar = 483;
		
		scrollheight = Number(document.body.offsetHeight - restar);
		if(scrollheight < 116) {
			scrollheight = 116;
		}
		
		document.getElementById(elid).style.height = scrollheight +"px";
}

function resize_more_content(elid) {
		/* This function will resize the small content window so that it scrolls*/
		document.getElementById(elid).style.height = "1px"; //Doesn't work in ie unless given a smaller value
		
		restar = 343;
		
		scrollheight = Number(document.body.offsetHeight - restar);
		if(scrollheight < 116) {
			scrollheight = 116;
		}
		
		document.getElementById(elid).style.height = scrollheight +"px";
}
