codice:
function graToRad(gra){
	return gra * (Math.PI/180);
}

function radToGra(rad){
	return rad / (Math.PI/180);
}