﻿function add(data) {
  document.getElementById('part1').text.value = 
  document.getElementById('part1').text.value + data + "";
}

function append(text) {
  document.forms["part1"].elements["re"].value=document.forms["part1"].elements["re"].value=text;
  document.forms["part1"].elements["re"].focus();
}

function tagy(type,info) {
  var nametag = window.prompt(info); 
  if(nametag != '' && nametag != null) {
    document.forms.part1.text.focus(); 
    document.forms.part1.text.value= 
    document.forms.part1.text.value+'['+type+']'+nametag+'[/'+type+']' 
  } else { 
    if(nametag == '' || nametag == null) {window.alert('Nebol napisany text!');} 
  } 
}

function adresa(type,info1,info2) { 
  var adresa = window.prompt(info1,'http://'); 
  var nazev = window.prompt(info2); 
  if(adresa != '' && adresa != null && adresa != 'http://' && nazev != '' && nazev != null) { 
    document.forms.part1.text.focus(); 
    document.forms.part1.text.value= 
    document.forms.part1.text.value+'['+type+'='+adresa+']'+nazev+'[/'+type+']' 
  } else { 
    if(type == 'img') {window.alert('Nebol napísaný title!');} 
    if(type == 'url') {window.alert('Nebol napísaný názov!');} 
  } 
}

