/*	Finestre ausiliarie()	Author: Deiro Claudio	Author Email: deiro@livio.it*/var popWnd = null;function openAux(href, w, h){	if (popWnd && !popWnd.closed) popWnd.close();		var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	popWnd = this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + w + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,top=" + yPos + ",left=" + xPos);}function openAux2(href, w, h){		var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + w + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,top=" + yPos + ",left=" + xPos);}function openAux3(href, w, h){		var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + w + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,status=no,top=" + yPos + ",left=" + xPos);}function openAuxTxt(href, w, h){	if (popWnd && !popWnd.closed) popWnd.close();	var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	popWnd = this.open(href, "_blank", "width=" + w + ",height=" + h + ",titlebar=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=no,top=" + yPos + ",left=" + xPos);}function openAuxParent(href, w, h){	var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	opener.popWnd = this.open(href, "_blank", "innerWidth=" + w + ",innerHeight=" + h + ",width=" + w + ",height=" + h + ",titlebar=no,toolbar=no,menubar=no,location=no,scrollbars=no,resizable=no,status=no,top=" + yPos + ",left=" + xPos);}function openAuxTxtParent(href, w, h){	var winWidth = w;	var winHeight = h;	var xPos = (screen.availWidth-winWidth)/2;	var yPos = (screen.availHeight-winHeight)/2;	opener.popWnd = this.open(href, "_blank", "width=" + w + ",height=" + h + ",titlebar=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,status=no,top=" + yPos + ",left=" + xPos);}function popClose(){	if (popWnd && !popWnd.closed) popWnd.close();}window.onunload = popClose;