function sendForm(action, target) {
        document.fic_form.action = action;
        document.fic_form.target = target;
	document.fic_form.submit();

	if (action == 'user_stories.php') {
		document.fic_form.add_fic.disabled=true;
	}

}

function single_tag(tag) {
	document.fic_form.fic.value = document.fic_form.fic.value + "<"+tag+" />"; 
}

function create_tag(tag) {
document.fic_form.fic.value = document.fic_form.fic.value + "<"+tag+">" + "</"+tag+">"; ; 
}
