
function Selezione(tag){
	
 testocompleto	=	document.frm.Articolo.value;
		
 selezione=document.selection.createRange();
 if (selezione.text!= ""){
	
    if ((tag == "left") || (tag == "center") || (tag == "right")){
	testo = '<p align="'+tag+'">' + selezione.text + '</p>'
    
    }else{	

 	testo = '<' + tag + '>' + selezione.text + '</' + tag + '>' 	
    }
	document.selection.createRange().text=testo
 }
 document.selection.empty()

}

function Pulisci(){
	document.frm.Articolo.value=""
	document.frm.Titolo.value=""
	document.frm.Sottotitolo.value=""	
}