// F1 front-end/back-end toggle
	if (document.all) {
		document.onhelp = function() {
			location.href = 'admin/';
			return false;
		}
	} else {
		document.onkeydown = function (evt) {
			if (evt.keyCode == '112') {
				location.href = 'admin/';
				return false;
			}
		}
	}

// funzione per uniformare altezza di due colonne
function fixH(col1,col2) {
	if (document.getElementById(col1) && document.getElementById(col2)) {
		var lh=document.getElementById(col1).offsetHeight;
		var rh=document.getElementById(col2).offsetHeight;
		var nh = Math.max(lh, rh);
		document.getElementById(col1).style.height=nh+"px";
		document.getElementById(col2).style.height=nh+"px";
	}
}
// definisco funzione per chiamata onload
function fixHuno(){ fixH('menuSx','content'); } 
// uniformo le colonne
window.onload = fixHuno;
