function show(id, fieldbutton)
{
	var button = document.getElementById(id);
	button.style.overflow = "visible";	
		button.style.height = "250px";	
	document.getElementById(fieldbutton).innerHTML = "<a class=\"blink\" href=\"javascript:slim('bio','actionbutton')\">Less...</a>";
}

function slim(id, fieldbutton)
{
	var button = document.getElementById(id);
	button.style.overflow = "hidden";
	button.style.height = "105px";
	document.getElementById(fieldbutton).innerHTML = "<a class=\"blink\" href=\"javascript:show('bio','actionbutton')\">More...</a>";
}

