﻿/// <reference path="scripts.htm" />
//-----------------------------------------------------------------------
// Copyright (C) Nearsoft Inc. All rights reserved.
//-----------------------------------------------------------------------
Object.createNamespace('orderbot.myaccount.orderdetail');
//-----------------------------------------------------------------------
Object.extend(orderbot.myaccount.orderdetail, {
    div: null,
    btnSubmit: null,
    info: null,

    init: function() {
        this.div = $('confirm-content');
        if (this.div === null) return;

        var inputs = this.div.select('a[id$=btnLogout]');
        inputs.each(function(input) {
            input.observe('click', function(e) {
                
                e.stop();
                orderbot.fireClickEvent($$('a[id$=LoginStatus1]').first());
            });
        });
    }
});
