//----------------------------
//		DATI GLOBALI
//----------------------------
var global = {
	ContextPath  : '/', //da definire in layout.jsp
	nomeApp : 'terremoto',
	
	nullFunction: function() {},
	
	isEmpty : function(value) {return(value == undefined || value.length == 0);},
	isNotEmpty : function(value) {return(value != undefined && value != '');}
};
//----------------------------
//		FUNZIONI GLOBALI
//----------------------------
function disabilita( obj ){
	$(obj).style.cssText='display:none';	
}
function abilita( obj ){
	$(obj).style.cssText='';
}

function impostaColor( obj, colore ){
	$(obj).style.cssText='color:'+colore;
}

function resetFieldsArray( ar ){
	for (i=0; i<ar.length; i++)
		{$(ar[i]).value='';}
}
function reset_fields(ar) {resetFieldsArray( ar );}

//----------------------------
//		TODO: DA SPOSTARE IN UNA LIBREIRIA DELLE LOV FUNZIONI GLOBALI
//----------------------------
function LOV_display_window( url, width, height ) {
    var attributes = "resizable=yes,scrollbars=yes,toolbar=no,menubar=no,width=" + width + ",height=" + height;
    FNDDMwindow = window.open(url, "FNDDMwindow", attributes);
    FNDDMwindow.title = "LOV";
    FNDDMwindow.focus();
}
