$(document).ready(function() {
    $('a[href^="http://"].blank').attr("target", "_blank");  
});

function refresh_captcha(){
    var currentTime = new Date();
    $("#captcha").attr("src","captcha.php?"+currentTime.getTime());
    $('#captchatxt').attr("value","");
}

function viewprivacy(){
    $.colorbox({href:'privacy_popup.php',iframe: true, width:'90%', height:'90%'});
}

function viewcondizioni(){
    $.colorbox({href:'responsabilita_popup.php',iframe: true, width:'90%', height:'90%'});
}

function check(tipo, valore){
    url = "inc/ajax_test.php?tipo=" + tipo + "&valore=" + valore;
    $.ajax({ url: url, success: function(data){
        $("#check_"+tipo).html(data);
      }});
}

function checktipo(){
    if(document.getElementById("tipologia").value=="P"){
        //Privato
        $('#ragionesociale').value="";
        $('#PIVA').value="";
        $("#ente").hide("slide", {direction: 'up'}, 1000);
    }else{
        //Ente
        $("#ente").show("slide", {direction: 'up'}, 1000);
    }
}
