<!-- FILE CON GLI SCRIPT
function openLink(theURL,wd,hg) 
{
	  //alert(theURL);
	  newWindow = window.open("","newWindow","width="+wd+",height="+hg+",resizable=no,scrollbars=no");
	  newWindow.document.open();
	  newWindow.document.writeln('<html>');
	  newWindow.document.writeln('<title>' + document.title + '</title>');
	  newWindow.document.writeln('<head>');
	  newWindow.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">');
	  newWindow.document.writeln('<meta http-equiv="refresh" content="0;url='+theURL+'">');
	  newWindow.document.writeln('</head>');
	  newWindow.document.writeln('<body>'); 
	  newWindow.document.writeln('Loading...');
	  newWindow.document.writeln('</body>');
	  newWindow.document.writeln('</html>');
	  newWindow.document.close();
	  newWindow.focus();
}
	
function swapValue(objNameOrig,objNameDest) 
{
	var objFrom;
	var objTo;
	objFrom = document.getElementById(objNameOrig);
	objTo = document.getElementById(objNameDest);
	objTo.value = objFrom.value;
}

function checkPrivacy(objName,itemChecked,msg) 
{		
	var frm;
	var obj;
	
	obj = document.getElementById(objName);
	if (obj.checked==true) return true;
	else 
	{
		alert(msg);
		return false;
	} 
}

function getFilter(frmName,filterName) 
{
	var frm;
	var filter;
	 //CODICE PER INTERNET EXPLORER & MOZILLA
	frm = document.forms[frmName];
	filter = frm[filterName];
	frm.action += "/(" + filter.name + ")/" + filter.value + "/";
}

function formSubmit(frmName)
{
	var frm;
	frm = document.forms[frmName];
	frm.submit();	
}
//-->
