
 function eice_test(){
	alert('E-Ice : installato correttamente.');
}

 function eice_form(formName, divResultMsg, ResponsePage) {
            var xhr = $.ajax({
                type: 'POST',
                url: '/eice/formpost.aspx',
                data: $(formName).serializeArray() ,
                success: function (data, status) {
		if (data!=''){
		if (divResultMsg!='')
                    $('#' + divResultMsg).html(data);
		else
		    alert(data);
		}
		if (ResponsePage!='')
		    window.location = ResponsePage;
                },
                error: function (data, status) {
			if (divResultMsg!='')
	                    $('#' + divResultMsg).html(data);
			else
			    alert(data);
                }
            });
        }
