var user = function(){
    
    this.id_user = false;
    this.confimation = false;
    
    this.action = function(extra,settings){
    
        extra = jQuery.extend({

        },extra);
        
        settings = jQuery.extend({
        
            applicationName : 'user',
            applicationSubName : 'action',
            responseElement : false,
            responseView : false,
            waitLoading : true,
            url : PH_R+'user/j-user-action.php',
            tasked : true,
            multiOpen : true

        },settings);
        

        new call(settings,extra);

            
    }
    
    
}

