<!--
function sposta(margine){
	toplink.style.top=(document.body.scrollTop+document.body.clientHeight-margine)+'px';
	toplink.style.right='5px';
}

function init(){
setInterval('sposta(20)', 150);
}

//Init section
window.onload=init;
//-->

function tornaindietro() {
history.back();
}

function saltapagina(dove){
	document.location=dove;
}

//Function to format text in the text box
function formatText(elemento, command, option){
	elemento.focus();
  	elemento.document.execCommand(command, false, option);
  	elemento.focus();
}

//Function to clear form
function resetForm(elemento){

	if (window.confirm('Sei sicuro di voler cancellare il testo?')){
		elemento.focus();
	 	elemento.document.body.innerHTML = ''; 
	 	return true;
	 } 
	 return false;		
}

function formatoTesto(elemento, hType)
{
  if(hType != '')
    {
      elemento.document.execCommand('FormatBlock', '', hType);  
    }
}
