﻿var EventEditor = Class.create(AcuWindow,
{
   initialize: function() 
   {
      this.divId = "__event_editor";
      this.baseUrl = "/admin/components/events/event_editor.aspx",
      this.height = 750;
      this.width = 545;
      this.skipValidation = false;
   }
});
window.EventEditor = new EventEditor();


var ContactEditor = Class.create(AcuWindow,
{
    initialize: function() {
        this.divId = "__contact_editor";
        this.baseUrl = "/admin/components/shared/contact_editor.aspx",
        this.height = 300;
        this.width = 630;
        this.skipValidation = false;
    }
});
window.ContactEditor = new ContactEditor();

var AddressEditor = Class.create(AcuWindow,
{
    initialize: function() {
        this.divId = "__location_editor";
        this.baseUrl = "/admin/components/shared/address_editor.aspx",
        this.height = 478;
        this.width = 530;
        this.skipValidation = false;
    }
});
window.AddressEditor = new AddressEditor();


var ContactSearch = Class.create(AcuWindow,
{
    initialize: function() {
        this.divId = "__contact_search";
        this.baseUrl = "/admin/components/shared/contact_search.aspx",
        this.height = 400;
        this.width = 530;
        this.skipValidation = false;
    }
});
window.ContactSearch = new ContactSearch();

var AddressSearch = Class.create(AcuWindow,
{
    initialize: function() {
        this.divId = "__location_search";
        this.baseUrl = "/admin/components/shared/address_search.aspx"
        this.height = 400;
        this.width = 530;
        this.skipValidation = false;
    }
});
window.AddressSearch = new AddressSearch();