//texteditor js functions

function menu(command,value) {
	var editor=document.getElementById('editor');
	editor.contentWindow.document.execCommand(command, false, value);
	editor.contentWindow.focus();
}

function link()
{
	window.open('scripts/login/link.php','loadpict','width=180,height=180');
}

function body_setup () {	
	document.designMode='on';
}

function sendText() {
	var editor=document.getElementById('editor').contentWindow.document.getElementById('inbody').innerHTML;;
	var outframe=document.getElementById('outframe');
	
	outframe.value=editor;
}

//controls if the name of the link isn't empty
function ctrlLink()
{
	if (document.getElementById('name').value=='')
	{
		alert('Musíte vyplnit pole Název odkazu.');
		return false;	
	}

	var element=document.getElementById('txtout');
	if (element.value=='' || element.value=='http://')
	{
		alert('Chcete-li vytvořit odkaz na jinou stránku, musíte vyplnit adresu stránky do pole pro odkaz na jinou stránku.');
		return false;
	}
}

