function ApriFinestra(url, larg, alt)
{
	dimensione = larg+', '+alt;
	window.open(url, 'BLUE MED', 'width='+larg+', height='+alt, scrollbars='yes');
}

/*
function ApriFinestra(url,larg,alt)
{
	//Qui sotto puoi impostare rispettivamente la larghezza e l'altezza del popup
	//larg=190;
	//alt=75;

	// QUI SOTTO NON TOCCARE NULLA
	toptop=(screen.height/2)-(alt/2); 
	leftleft=(screen.width/2)-(larg/2); 

	// Qui sotto puoi decidere l'aspetto del popup, ovvero se debba avere 
	// la barra di scorrimento, la barra di stato, la barra dei menù
	searchWin = window.open(url,'','top='+toptop+',left='+leftleft+',width='+larg+',height='+alt+',scrollbars=yes,resizable=yes,status=no,location=no,toolbar=no'); 
} 
*/