function init(){
    var unregisterElement = $("unregisterPhoneForm");
    
    if(Object.isElement(unregisterElement)){
        unregisterElement.onsubmit = function(){
            return confirm('Are you sure you wish to remove your phone from alerts?');
        };
    }
    
    var resendElement = $("resendCode");
    if(resendElement){
        resendElement.onclick = function(){
            $("resentMsg").update("");
            new Ajax.Updater($("resentMsg"),"/account/activate/code/send");
            return false;  
        };
    }
}

Event.observe(window,'load',init);