//########### Setzt einen URL-Link ein ########################
function htmllink(hrcform) {
      linktext = prompt("Titel des Links:","");
	
      linkurl = prompt("URL des Links:","http://");

	if ((linkurl != null) && (linkurl != "")) {
		if ((linktext != null) && (linktext != ""))
			hrcform.umwandinhalt.value += "<a href=\""+linkurl+"\">"+linktext+"</a> ";
		}
      hrcform.umwandinhalt.focus();
}


//########### Text FETT  ########################
function htmlbold(hrcform) {
      boldtext = prompt("Text der FETT formatiert werden soll:","");

	if ((boldtext != null) && (boldtext != "")) {
	  hrcform.umwandinhalt.value += "<b>"+boldtext+"</b> ";
       hrcform.umwandinhalt.focus();
      }
}

//########### Text Kursiv  ########################
function htmlitalic(hrcform) {
      italictext = prompt("Text der KURSIV formatiert werden soll:","");

	if ((italictext != null) && (italictext != "")) {
	  hrcform.umwandinhalt.value += "<i>"+italictext+"</i> ";
       hrcform.umwandinhalt.focus();
      }
}

//########### Text Unterstrichen  ########################
function htmlunderlined(hrcform) {
      ultext = prompt("Text der Unterstrichen formatiert werden soll:","");

	if ((ultext != null) && (ultext != "")) {
	  hrcform.umwandinhalt.value += "<u>"+ultext+"</u> ";
       hrcform.umwandinhalt.focus();
      }
}
