function grassetto()
{
	testoselezionato = document.selection.createRange();	
	txt = testoselezionato.text;
	if(!txt.length > 0)
	{
		alert("Seleziona prima il testo che vuoi sia reso in Grassetto!");
		return( false);
	}
	testoselezionato.text = "<strong>" + txt + "</strong>";
}

function corsivo()
{
	testoselezionato = document.selection.createRange();	
	txt = testoselezionato.text;
	if(!txt.length > 0)
	{
		alert("Seleziona prima il testo che vuoi sia reso in Corsivo!");
		return( false);
	}
	testoselezionato.text = "<em>" + txt + "</em>";
}

function sottolineato()
{
	testoselezionato = document.selection.createRange();	
	txt = testoselezionato.text;
	if(!txt.length > 0)
	{
		alert("Seleziona prima il testo che vuoi sia reso Sottolineato!");
		return( false);
	}
	testoselezionato.text = "<u>" + txt + "</u>";
}

function citazione()
{
	testoselezionato = document.selection.createRange();	
	txt = testoselezionato.text;
	if(!txt.length > 0)
	{
		alert("Seleziona prima il testo che vuoi sia una Citazione!");
		return( false);
	}
	testoselezionato.text = "<blockquote>" + txt + "</blockquote>";
}

function faccine(smile){
document.messaggi.testo.value+=smile;
}