//basic.js

function printLink() {
	desc = prompt("Link bezeichnung eingeben","");
	link = prompt("Hyper Link Adresse eingeben","http://");
	currenttext=document.createTextNode("[URL=" + link + "]" + desc + "[/URL]");
	document.getElementById("cont").appendChild(currenttext);
}

function adjustColor( color ) {
	contents = prompt("Text eingeben","");
	document.getElementById("cont").insertAdjacentText("BeforeEnd", "[" + color + "]" + contents + "[/" + color + "]");
}

function adjustSize() {
	size = prompt("Groesse eingeben", "");
	contents = prompt("Text eingeben", "");
	document.getElementById("cont").insertAdjacentText("BeforeEnd", "[SIZE=" + size + "]" + contents + "[/SIZE]");
}

function weight() {

}

function italiv() {

}

function underline() {

}