onload = function () {
	//ELEMENTO PRESENTE NELLA MASCHERA DI LOGIN
	var oElem = document.getElementById('username');
	
	if (oElem) {
		//FOCUS
		oElem.focus();
		
		//SELEZIONE DEL TESTO
		oElem.select();
	}
}

//Viene evidenziato l'elemento passato modificando il colore di background
function highlight(oElem, bl) {
	if (oElem) {
		if (bl) {
			oElem.style.backgroundColor = '#fff';
		} else {
			oElem.style.backgroundColor = '';
		}
	}
}

//Viene aperta una finestra di popup con larghezza e altezza indicati
function popup(location, width, height) {
	//VIENE ASSEGNATO IL NOME ALLA FINESTRA PRINCIPALE
	//window.name = 'main';
	
	//PERCORSO DELLA PAGINA DA APRIRE
	//location
	
	//NOME DEL POPUP
	var name = 'popup';
	
	//PROPRIETA' DEL POPUP
	var props = 'width = ' + width;
	props = props + ', height = ' + height;
	props = props + ', top = 100px';
	props = props + ', left = 100px';
	props = props + ', toolbar = no';
	props = props + ', menubar = no';
	props = props + ', location = no';
	props = props + ', resizable = no';
	props = props + ', scrollbars = yes';
	props = props + ', status = no';
	props = props + ', fullscreen = no';
	
	//APERTURA DEL POPUP
	window.open(location, name, props);
}