jQuery(document).ready(function($){
    // gestione popup
    //$('.popup').popupWindow({ 
    //    centerScreen:1 
    //});    
    $('.popup').bind('click',function(e){popwindow(e)});  
    
    function popwindow(e){
    var width = 600;
    var height = 400;
    var left = parseInt((screen.availWidth/2) - (width/2));
    var top = parseInt((screen.availHeight/2) - (height/2));
    var opt = "menubar=0,location=1,toolbar=0,";
    var windowFeatures = opt + "width=" + width + ",height=" + height + ",scrollbars=1,left=" + left + ",top=" + top + "screenX=" + left + ",screenY=" + top;       
    e.preventDefault();
    var href=$(e.target).attr('href');
    window.open(href,'', windowFeatures);
    };    

});


function validatePrivacy(theForm) {

    var reason = "E' obbligatorio prendere visione dell'informativa della privacy";
    
    if (!theForm.CustomField2.checked) {
        alert(reason);
        return false;
    }

    return true;
}



  