function showErrOutput(objErrors){
	var message = objErrors.generalError + '<input type="hidden" id="bringmetofocus"><ul>';
	if (objErrors.fieldErrors) {
		for (var ii = 0; ii < objErrors.fieldErrors.length; ii++)
			message += '<li><b>' + objErrors.fieldErrors[ii].field.title + '</b>: &nbsp;' + objErrors.fieldErrors[ii].errorMessage + "</li>";
	}
	message += '</ul>';
	
	var outputDiv = document.getElementById("errOutput");
	
	if(outputDiv != null){
		outputDiv.innerHTML = message;
		outputDiv.style.display = "block";
	}
}

function hideErrOutput(objErrors){ 
	var outputDiv = document.getElementById("errOutput");
	if(outputDiv != null){
		outputDiv.innerHTML = "";
		outputDiv.style.display = "none";
	}
}

function expcoll(id,minimum,maximum,imgobj) {
	var obj=document.getElementById(id)
	if(obj == null) {return};
	
	if (obj.style.height == minimum) {
		obj.style.height = maximum;
		imgobj.src="/inc/images/collapse.gif";
		} else {
		obj.style.height = minimum
		imgobj.src="/inc/images/expand.gif";
		}
	return;
}
function switchhelp(id) {
	var obj=document.getElementById(id)
	if (obj == null) { return;}
	if (obj.style.display == 'none') {
		obj.style.display = 'block'
		} else {
		obj.style.display = 'none'
		}
}

function len(stringa)	{
	return stringa.length;
	};

	
function checkform()	{
	var errore='';
	if (len(document.editAzienda.GroupNAME.value) < 5) {errore=errore + "\nLunghezza minima NOME 5 caratteri"};
	if (len(document.editAzienda.GroupTITLE.value) < 5) {errore=errore + "\nLunghezza minima Descrizione 2 caratteri"};
	if (errore != '') {errore="Attenzione:\n" + errore };
	if (errore != '') { alert (errore); }	else 	{
	document.editAzienda.submit();}
	}


