<!--
// Funzione generica per l'apertura di un form di consultazione news
function openNews(idNews) {
	window.open("./_asp/form_news.asp?idRecord=" + idNews, null, "heigth=450, scrollbars=yes, width=450, status=no, toolbar=no, menubar=no, location=no", true);
}
// Funzione di spostamento fram di visualizzazione HTML
function moveiFrame(iFrame, x, y, w, h) {
	if (document.getElementById) {
		var obj = document.getElementById(iFrame);
		if (obj != null) {
			obj.style.left = (x + 4) + "px";
			obj.style.top = (y + 4) + "px";
			obj.style.width = w + "px";
			obj.style.height = h + "px";
		}
	}
}
//-->

