
login_pp_box = {
  id : null,
  init : function( ) {
    this.id = document.getElementById( 'login-pp' );
  },
  showed: false,

  show : function( ) {
    this.id.style.display = "block";
    this.showed = true;
  },

  hide : function( ) {
    this.id.style.display = "none";
    this.showed = false;
  },
  trigger : function( ) {
    return this.showed?this.hide():this.show();
  }
}

window.attachOnLoad( function(){ login_pp_box.init() } )
