//Funzione per l'apertura di una nuova finestra

function nuovaFinestra(strUrl,strW,strH,strT,strL,strScr,strRs,strSt,strTb,strMn,strLo){

				window.open(strUrl,null,'height='+strH+',width='+strW+',top='+strT+',left='+strL+',resizable='+strRs+',status='+strSt+',toolbar='+strTb+',menubar='+strMn+',location='+strLo+',scrollbars='+strScr+',directories=0')

}



//Funzione per il blocco del tasto destro del mouse

/*function right(e) {

if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))

	return false;

else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {

	alert("Si prega di non utilizzare il tasto destro.");

	return false;

}

	return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

	window.onmousedown=right;

*/

//Funzione per impostare il sito come home page

function homepage() { 

if(document.all)

document.body.style.behavior='url(#default#homepage)';

document.body.setHomePage('http://www.sparaniselibera.it');

} 



//Funzione per il blocco dei tasti della tastiera

/*function keypressed() {

	alert("Questa funzione è disabilitata.");

}

document.onkeydown=keypressed;*/