function smajlik(smajlik) {
document.forms.vzkaz.text.focus();
document.forms.vzkaz.text.value=
document.forms.vzkaz.text.value+smajlik
}

function tagy(type,info) {
var nametag = window.prompt(info);
if(nametag != '' && nametag != null) {
document.forms.vzkaz.text.focus();
document.forms.vzkaz.text.value=
document.forms.vzkaz.text.value+'['+type+']'+nametag+'[/'+type+']'
} else {
if(nametag == '' || nametag == null) {window.alert('Nebyl napsán 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.vzkaz.text.focus();
document.forms.vzkaz.text.value=
document.forms.vzkaz.text.value+'['+type+'='+adresa+']'+nazev+'[/'+type+']'
} else {
if(type == 'img') {window.alert('Špatný formát adresy nebo nebylo napsáno title');}
if(type == 'url') {window.alert('Špatný formát adresy nebo nebyl napsán název');}
}
}
