var EC_Form={init:function(){if($("main_form")){$("main_form").onsubmit=function(){return EC_Validate.validate($("main_form"));};EC_Validate.setupRules("r_");if($("r_account_type_other")){$$(".r_account_type").each(function(a){a.addEvent("click",function(){EC_Form.otherVisibility("account_type",true);});});this.otherVisibility("account_type",true);}if($("r_referred_from_other")){$("r_referred_from").addEvent("change",function(){EC_Form.otherVisibility("referred_from",false);});this.otherVisibility("referred_from",false);}}},otherVisibility:function(b,a){var c;var d;if(a==true){c=$("main_form").getElements("input[name="+b+"]:checked");d=c.get("value");}else{c=$("r_"+b);d=c.value;console.log(d);}if(d.constructor.toString().indexOf("Array")!=-1){d=d[0];}if(d!="Other"&&d!="Link"&&d!="Ad"){$("r_"+b+"_other").setStyle("display","none");$("r_"+b+"_other_label").setStyle("display","none");}else{$("r_"+b+"_other").setStyle("display","block");$("r_"+b+"_other_label").setStyle("display","block");}}};window.addEvent("domready",function(){EC_Form.init();});