﻿//Funzioni RollOver Menu di 1° livello ad icone

function ON(N) {
	document.getElementById(N).style.visibility = "visible";
	document.getElementById(N).style.position = "absolute";
}
function smON(N) {
	document.getElementById(N).style.visibility = "visible";
	document.getElementById(N).style.position = "relative";
}
function OFF(N) {
	document.getElementById(N).style.visibility = "hidden";
	document.getElementById(N).style.position = "absolute";
}
function swpON(N, I, T) {
	document.getElementById(N).src = I;
	document.getElementById('TXTmenu').innerHTML = T
}
function swpOFF(N, I) {
	document.getElementById(N).src = I;
	document.getElementById('TXTmenu').innerHTML = ""
}

//Finestra Distributori

function finestra(N) {
	var W = 500
	var H = 500
	var L = Math.floor((screen.width - W) / 2);
	var T = Math.floor((screen.height - H) / 2);
	window.open(N, '_blank', 'width=' + W + ',height=' + H + ',menubar=no, statusbar=no, toolbar=no resizable=no,top=' + T + ',left=' + L + '');
}

//Finestra Stampa

function STNP(URL) {
	var W = 800
	var H = 600
	var L = Math.floor((screen.width - W) / 2);
	var T = Math.floor((screen.height - H) / 2);
	window.open(URL, '_blank', 'width=' + W + ',height=' + H + ',menubar=no, statusbar=no, scrollbars=yes, toolbar=no resizable=no,top=' + T + ',left=' + L + '');
}