// ********************************************************** 
//      Mostra/nascondi elemento 
// **********************************************************
function showRow(id){
	a = document.getElementById(id);
	if (a.style.display == "none") {
		a.style.display="";
	} else {
		a.style.display="none";
	}
	return false;   
}

// ********************************************************** 
//  Funzioni all'interno dei templates /display/...
// **********************************************************

function openNewPopup(url,x,y) {
	var options = "toolbar=no,scrollbars=yes,resizable=yes,width=" + x + ",height=" + y;
	msgWindow=window.open(url,"",options);
	return false;
}

// ********************************************************** 
//  Funzioni per login
// **********************************************************
	function verifyForm(form){
		//alert(form);
		//return false;
		if(form.e.value.length == 0){
			form.e.style.borderColor = '#FF0000';
			form.e.focus();
			alert('Inserire l\'e-mail!');
			return false;
		}
		else{
			form.e.style.borderColor = '#FFFFFF';
			if(form.c.value.length == 0){
				form.c.style.borderColor = '#FF0000';
				form.c.focus();
				alert('Inserire il codice del ticket!');
				return false;
			}
			else{
				form.c.style.borderColor = '#FFFFFF';
				return true;
			}
		}
	}