// Code is partially taken from "daSepp PHP GB" released under GNU/GPL; modified by mopzz, 2007

function bbcode(Code)
	{
	var text = window.prompt("Text:","Text");
	var txtarea = window.document.forms['newentry'].elements['message'];
	if(text != "" && text != null && text != "Text")
		{
		txtarea.focus();
		txtarea.value = txtarea.value + "[" + Code + "]" + text + "[/" + Code + "]" + " ";
		txtarea.focus();
		}
	}

function bbcode_url()
	{
	var uri = window.prompt("URL:","http://");
	var text = window.prompt("Text:","");
	var txtarea = window.document.forms['newentry'].elements['message'];
	if(uri != null && uri != "" && uri != "http://")
		{
		if(text != null && text != "")
			{
			txtarea.focus();
			txtarea.value = txtarea.value + "[url=" + uri + "]" + text + "[/url] ";
			txtarea.focus();
			}
		else
			{
			txtarea.focus();
			txtarea.value = txtarea.value + "[url]" + uri + "[/url] ";
			txtarea.focus();
			}
		}
	}

function bbcode_color()
	{
	var color = window.prompt("Color:","");
	var text = window.prompt("Text:","");
	var txtarea = window.document.forms['newentry'].elements['message'];
	if(color != null && text != null && color != "" && text != "")
		{
		txtarea.focus();
		txtarea.value = txtarea.value + "[color=" + color + "]" + text + "[/color] ";
		txtarea.focus();
		}
	}

function bbcode_size()
	{
	var size = window.prompt("Size:","");
	var text = window.prompt("Text:","");
	var txtarea = window.document.forms['newentry'].elements['message'];
	if(size != null && text != null && size != "" && text != "")
		{
		txtarea.focus();
		txtarea.value = txtarea.value + "[size=" + size + "]" + text + "[/size] ";
		txtarea.focus();
		}
	}
