document.write("<script type=\"text/javascript\" src=\"http://www.buchbinderei-leipzig.de/stat/additional.php?res_width=" + screen.width + "&res_height=" + screen.height + "&js=true\"><\/script>");

function smilie(type)
{
document.f.text.value=document.f.text.value+type;
}

function bold()
{
var text = prompt("Text der fett geschrieben werden soll.","text");
if(text != null) document.f.text.value = document.f.text.value + "[b]" + text + "[/b]";
}

function italic()
{
var text = prompt("Text der kursiv geschrieben werden soll.","text");
if(text != null) document.f.text.value = document.f.text.value + "[i]" + text + "[/i]";
}

 function under()
 {
 var text = prompt("Text der unterstrichen werden soll.","text");
 if(text != null) document.f.text.value = document.f.text.value + "[u]" + text + "[/u]";
 }

function quote()
{
var text = prompt("Zitat","text");
if(text != null) document.f.text.value = document.f.text.value + "[quote]" + text + "[/quote]";
}

function php()
{
var text = prompt("PHP Code","");
if(text != null) document.f.text.value = document.f.text.value + "[php]" + text + "[/php]";
}

function code()
{
var text = prompt("Code","");
if(text != null) document.f.text.value = document.f.text.value + "[code]" + text + "[/code]";
}

function img()
{
var text = prompt("Deine Bild URL","http://");
if(text != null) document.f.text.value = document.f.text.value + "[img]" + text + "[/img]";
}

function url()
{
var text = prompt("Ihre Beschriftung","");
var url = prompt("Ihre URL","http://");
if(text != "") document.f.text.value = document.f.text.value + "[URL=" + url + "]" + text + "[/URL]";
else document.f.text.value = document.f.text.value + "[URL]" + url + "[/URL]";
}
