function Command(Par1,seeUI,Par2) {
document.execCommand(Par1,seeUI,Par2)
}

function SendData()
{

if (xmode != "html") {
	frames.Editor.document.body.innerHTML = frames.Editor.document.body.innerText;
}
var HTML
if(typeof(window.document.forms.f.NET)== 'object')
	{
	HTML=frames.Editor.document.body.innerHTML
	if(HTML=="" || HTML=="<P>&nbsp;</P>") {
      	alert("Zadejte tělo příspěvku !")
		frames.Editor.document.body.focus()
		return true
	}
	else	{
		document.all.ID.value=HTML
	}
}
else	{
	if(window.document.forms.f.body.value=="")	{
		 //alert("Zadejte tělo příspěvku !")
		window.document.f.body.focus()
		return true
	}
}
}