
function obrazek(formatovani) {
	//document.form1.obrazek.value += formatovani;
	//document.form1.obrazek.focus();
	//return;
	
	
// aktivuji ramec s editorem
//window.opener.frames.Editor.document.body.focus();
// do HTML kodu dokumentu v editoru vlozim kod s definici obrazku
//window.opener.Editor.document.selection.createRange().pasteHTML('<img src=<?php echo $_GET['img']; ?> width="<?php echo $_GET['w']; ?>" height="<?php echo $_GET['h']; ?>" title="<?php echo $_GET['title']; ?>" style="float: <?php echo $_GET['fl']; ?>;" />');
// zavru formular pro vlozeni obrazku
//window.close();
//window
//window.editor.form1.obrazek.value = formatovani;
//window.list['editor'].forms['form1'].elements['obrazek'].value = formatovani;
//alert();
window.opener.document.form1.obrazek.value = formatovani;
window.close();
}


function tagy(prvni,druhy){
  var textarea = top.document.getElementById("text");

  if (textarea.setSelectionRange) {
  var zacatek = textarea.selectionStart;
  var konec = textarea.selectionEnd;

  textarea.value = textarea.value.substring(0, zacatek) + prvni + textarea.value.substring(zacatek, konec) + druhy + textarea.value.substring(konec);
  setCaretToPos(textarea, zacatek + prvni.length + druhy.length + (konec-zacatek));
  }

  else if (document.selection) {
  textarea.focus();

  document.selection.createRange().text = prvni + document.selection.createRange().text + druhy;
  }
}

function addLink(prvni,druhy){
  var textarea = top.document.getElementById("text");
  adr=prompt("Zadejte internetovou adresu stránky","http://");

  if (textarea.setSelectionRange) {
  var zacatek = textarea.selectionStart;
  var konec = textarea.selectionEnd;

  textarea.value = textarea.value.substring(0, zacatek) + prvni + adr + ']' + textarea.value.substring(zacatek, konec) + druhy + textarea.value.substring(konec);
  setCaretToPos(textarea, zacatek + prvni.length + druhy.length + (konec-zacatek));
  }

  else if (document.selection) {
  textarea.focus();

  document.selection.createRange().text = prvni + adr + ']' + document.selection.createRange().text + druhy;
  }
}

function addImg(prvni,druhy){
  var textarea = top.document.getElementById("text");
  adr=prompt("Zadejte internetovou adresu obrázku:","http://");

  if (textarea.setSelectionRange) {
  var zacatek = textarea.selectionStart;
  var konec = textarea.selectionEnd;

  textarea.value = textarea.value.substring(0, zacatek) + prvni + adr + ']' + textarea.value.substring(zacatek, konec) + druhy + textarea.value.substring(konec);
  setCaretToPos(textarea, zacatek + prvni.length + druhy.length + (konec-zacatek));
  }

  else if (document.selection) {
  textarea.focus();

  document.selection.createRange().text = prvni + adr + ']' + document.selection.createRange().text + druhy;
  }
}

function addMail(prvni,druhy){
  var textarea = top.document.getElementById("text");
  adr=prompt("Zadejte e-mail:","@");

  if (textarea.setSelectionRange) {
  var zacatek = textarea.selectionStart;
  var konec = textarea.selectionEnd;

  textarea.value = textarea.value.substring(0, zacatek) + prvni + adr + ']' + textarea.value.substring(zacatek, konec) + druhy + textarea.value.substring(konec);
  setCaretToPos(textarea, zacatek + prvni.length + druhy.length + (konec-zacatek));
  }

  else if (document.selection) {
  textarea.focus();

  document.selection.createRange().text = prvni + adr + ']' + document.selection.createRange().text + druhy;
  }
}
