
if(!window.__rageLib){
  window.__rageLib = {};
  window.__rageLib.instances = {};
}

if(!window.__rageLib.formLib)
  window.__rageLib.formLib = {};

__rageLib.rageForm = function(){}

__rageLib.rageForm.prototype = {
  
  currentSection: null,
  
  selectSection: function(form_id, section_id){
    if(this.currentSection == null){
      this.currentSection = new Array();
      this.currentSection[form_id] = section_id;
    }else{
      if(this.currentSection[form_id] == null){
        this.currentSection[form_id] = section_id;
      }else{
        document.getElementById(form_id+'_s_'+this.currentSection[form_id]).style.display = 'none';
        this.currentSection[form_id] = section_id;
      }
    }
    document.getElementById(form_id+'_s_'+section_id).style.display = 'block';
  }
}

//__rageLib.instances.rageFormValidator = new __rageLib.formLib.validator();
var __rageForm = new __rageLib.rageForm();

