

	<!--
		// Functions to assist with editing content in a textarea.

	function replacesingle(theFormElement,doWhat){
	  var str = document.selection.createRange().text;
	  eval("document.edit_article."+theFormElement+".focus()");
	  var sel = document.selection.createRange();
	  sel.text = "<"+doWhat+">"+str+"</"+doWhat+">";
	  return;
	}

	function replacelink(theFormElement, target){
	  var str = document.selection.createRange().text;
	  eval("document.edit_article."+theFormElement+".focus()");
	  var sel = document.selection.createRange();
	  sel.text = '<a href="http://'+str+'" target="_'+target+'">'+str+'</a>';
	  return;
	}

		//-->

