function bbcode(code)
{
	document.newcomment.comment.value += code;
	document.newcomment.comment.focus();
	return;
}

function bbcode_color()
{
	if (document.newcomment.bbcolor.value != "null")
	{
	document.newcomment.comment.value += "[COLOR=";
	document.newcomment.comment.value += document.newcomment.bbcolor.value;
	document.newcomment.comment.value += "][/COLOR]";
	}
	document.newcomment.comment.focus();
	return;
}

function bbcode_font()
{
	if (document.newcomment.bbfont.value != "null")
	{
	document.newcomment.comment.value += "[FONT=";
	document.newcomment.comment.value += document.newcomment.bbfont.value;
	document.newcomment.comment.value += "][/FONT]";
	}
	document.newcomment.comment.focus();
	return;
}

function bbcode_link()
{
	var url = window.prompt("Please enter the URL of the website:");
	document.newcomment.comment.value += "[URL=";
	document.newcomment.comment.value += url;
	document.newcomment.comment.value += "][/URL]";
	document.newcomment.comment.focus();
	return;
}

function jumpComic(id) {
	var page = "viewcomic.php?id=" + id;
	window.location = page;
}