
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}

function conferma()
{
	if(document.frm.attivita.value == "")
	{
		alert("Inserimento Tipologia Obbligatorio");
		return false;
	}
	else if(document.frm.comune.value == "")
	{
		alert("Inserimento Comune Obbligatorio");
		return false;
	}
	else
	{
		document.frm.submit();
	}
}
