function openSpec(sezione, tipo) {
	

	var nome = "http://www.idrocomsrl.com/interne/" + sezione + "/" + tipo + ".gif";
	
	var titolo = "Scheda tecnica " + tipo;
	var w = 630;
    var h = 550;
    var l = Math.floor((screen.width-w)/2);
    var t = Math.floor((screen.height-h)/2);
	
	window.open(nome,"","status=no, menubar=no, toolbar=no, scrollbars=yes, resizable=yes, width=" + w +",  heigth=" + h + ", top=" + t + ", left=" + l);

}

