function toggleRTB(but,rtb) {
	box = document.getElementById(rtb);
	if (but.value=="Expand") {
		but.value='Shrink';
		box.style.height='350px';
	} else {
		but.value='Expand';
		box.style.height='80px';
	}
}

function saveRTB(form,rpl) {
	
	$(form).request({
  onComplete: function(){  }
})
	
	//ajaxSubmit(form,rpl);
}
