CPLogin = {
  defaultValues : true,

  remove : function() {
    if(this.defaultValues) {
      $('.cp_login').each(function() {
        this.value = '';    
      });
      this.defaultValues = false;
    }
  }
}

WMLogin = {
  defaultValues : true,

  remove : function() {
    if(this.defaultValues) {
      $('.wm_login').each(function() {
        this.value = '';    
      });
      this.defaultValues = false;
    }
  }
}

FulltextText = {
  defaultValues : true,

  remove : function() {
    if(this.defaultValues) {
      $('#fulltextInput').each(function() {
        this.value = '';    
      });
      this.defaultValues = false;
    }
  },
  
  send: function() {
    if(this.defaultValues) {
      this.remove();
    }
  }
}

