//<SCRIPT LANGUAGE="javascript">


//--- FUNZIONI COMUNI

function fine(webpath)
{
	location.replace(webpath);
}

function torna_indietro()
{
	window.history.back();
}

function non_disponibile() {
	window.alert ("Funzione non ancora disponibile");
}

function win_open(url, w, h)
{
	TopPosition  = (screen.height) ? (screen.height-h)/2 : 100;
	LeftPosition = (screen.width)  ? (screen.width-w)/2  : 100;

	paramwin = "height=" + h + ",width=" + w + ",top=" + TopPosition +
					",left=" + LeftPosition + ",scrollbars=no,location=no" +
					",directories=no,status=no,menubar=no,toolbar=no,resizable=no";

	window.open(url, "_blank", paramwin);
//	window.open(url, "pop", paramwin);
//	window.open(url);
}

function win_open_sb(url, w, h)
{
	TopPosition  = (screen.height) ? (screen.height-h)/2 : 100;
	LeftPosition = (screen.width)  ? (screen.width-w)/2  : 100;

	paramwin = "height=" + h + ",width=" + w + ",top=" + TopPosition +
					",left=" + LeftPosition + ",scrollbars=yes,location=no" +
					",directories=no,status=no,menubar=no,toolbar=no,resizable=no";

	window.open(url, "_blank", paramwin);
//	window.open(url, "pop", paramwin);
//	window.open(url);
}

