
function show(id){
	document.getElementById(id).style.height="37px";
}

function hide(id){
	document.getElementById(id).style.height="1px";
	document.getElementById(id).style.overflow="hidden";
}