function body_repos()
{
	var oFrom = (document.all) ? document.all("body_text_from") : document.getElementById("body_text_from");
	var oTo = (document.all) ? document.all("body_text") : document.getElementById("body_text");

	oTo.innerHTML = oFrom.innerHTML;
	oFrom.innerHTML = '';

//	document.body.style.display = '';
}