//----Funzione 2: Immagine
function img() {

var url=prompt("Enter URL:","http://");
var w=300
var h=300

document.form.messaggio.value = document.form.messaggio.value +("<a href='"+url+"'><img src='"+url+"' width='"+w+"' HEIGHT='"+h+"'></a>");
}


//----Funzione 3: Barra orizzontale
function hr() {
document.form.messaggio.value = document.form.messaggio.value +("<hr>");
}


//----Funzione 4: Centratura 
function cent() {
document.form.messaggio.value = document.form.messaggio.value +("<center></center>"); 
}

//----Funzione 6: E-mail
function mail() {

var indirizzo=prompt("Em@il:","nome@server.it"); 

var maschera=prompt("Testo:","Scrivimi!!"); 

document.form.messaggio.value = document.form.messaggio.value +("<a href='mailto:"+indirizzo+"'>"+maschera+"</a>"); 
}

//----Funzione 7: Link
function linx() {

var indirizzo=prompt("Enter URL:","http://"); 

var maschera=prompt("Testo link:","clicca qui"); 

document.form.messaggio.value = document.form.messaggio.value +("<a href='"+indirizzo+"'>"+maschera+"</a>"); 
}


//----Funzione 9: A capo 
function br() { 

document.form.messaggio.value = document.form.messaggio.value +("<br>"); 
} 


//----Funzione 12: Grassetto 
function grass() { 


document.form.messaggio.value = document.form.messaggio.value +("<b></b>"); 
}

//----Funzione 13: Corsivo 
function cors() { 
document.form.messaggio.value = document.form.messaggio.value +("<i></i>"); 
}

//----Funzione 14: Sottolineato 
function sotto() 
	{
	document.form.messaggio.value = document.form.messaggio.value +("<u></u>");
	} 


