//	Aumenta l'altezza di un layer
function H(id, altezza) {	
	//	Ridimensiona e ritaglia il layer
	document.getElementById(id).style.height = altezza;
	document.getElementById(id).style.clip = 'rect(auto,auto,'+altezza+',auto)';
}

//	Apre una popup semplice al centro dello schermo
function Popup(url, w, h) {
	//	Centra le coordinate
	x = (screen.availWidth / 2) - (w / 2);
	y = (screen.availHeight / 2) - (h / 2);
	
	//	Popup
	popup = window.open(url, '', 'top='+y+',left='+x+',width='+w+',height='+h);
	
	//	Valore vuoto
	void(0);
}