<!--
function goflash(ogg) {
	document.write(ogg);
}

function barraStato(vValore) {
	window.status=vValore;
	return true;
}



function naviBack() {
	history.back();
	return true;

}


var finestraNuova;
function showFinestra(vFile,vTit,vScroll,vw,vh) {

	// La finestra non &egrave; scrollabile (contiene una foto)
	var vTesto,vw2,vh2,vWidth,vHeight;
	var vLeftRight='';
	var vTopBottom='';

	if(vw==0) 		vw2	= 600;	//larghezza se foto orizzontale
	else if(vw==-1) vw2	= 450;	//larghezza se foto verticale
	else if(vw==-2) {
		vw2	= screen.availWidth;
		vLeftRight='left=0,right=0,screenX=0,';
	}
	else if(vw==-3) {
		vw2	= 780;
		Left = screen.availWidth - vw2
		vLeftRight='left='+ Left +',right=0,screenX=0,';
	}
	else vw2 = vw;

	if(vh==0) 		vh2	= 450;	//altezza se foto orizzontale
	else if(vh==-1) vh2	= 600;	//altezza se foto verticale
	else if(vh==-2) {
		vh2	= screen.availHeight;
		vTopBottom='top=0,bottom=0,screenY=0,';
	}
	else if(vh==-3) {
		vh2	= screen.availHeight;
		vTopBottom='top=0,bottom=0,screenY=0,';
	}
	else vh2 = vh;

	if(vScroll == 'yes') {
		( vw == -2  || vw == -3 ) || ( vw2=vw2+40 );
		( vh == -2  || vh == -3 ) || ( vh2=vh2+65 );
	}
	else {
		vScroll='no';
		( vw == -2   || vw == -3 ) || ( vw2=vw2 + 35 );
		( vh == -2   || vh == -3 ) || ( vh2=vh2 + 85 );
	}
	vWidth	='width='	+ vw2 +',';
	vHeight	='height=' + vh2 +',';

//	alert('toolbar=no,location=no,directories=no,titlebar=no,status=yes,scrollbars='+vScroll+',resizable=yes,' + vWidth  + vHeight  + vLeftRight + vTopBottom +'menubar=no');
	finestraNuova && finestraNuova.close();
	finestraNuova = open(vFile,vTit,'toolbar=no,location=no,directories=no,titlebar=no,status=yes,scrollbars='+vScroll+',resizable=yes,' + vWidth  + vHeight  + vLeftRight + vTopBottom +'menubar=no');
	finestraNuova.resizeTo(vw2,vh2);
	finestraNuova.focus();
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// fine script -->
