/*--------------------------------------------------------------------------*
 * 
 * Copyright (C) 2008 Brand Labs LLC
 * 
 *--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*
 * 
 *--------------------------------------------------------------------------*/
OrganizationSelection = {
	ORGANIZATION_ELEMENT: null,
	FORM_ELEMENT: null,
	
	load: function() {
		try {
			OrganizationSelection.ORGANIZATION_ELEMENT = $('organization_selection_dropdown');
			OrganizationSelection.FORM_ELEMENT = $('organization_selection_form');
			
			//If no element available, then skip event observation
			if(OrganizationSelection.ORGANIZATION_ELEMENT == null || OrganizationSelection.FORM_ELEMENT == null) {
				return;
			}
			
			//Start observing events
			Event.observe(OrganizationSelection.ORGANIZATION_ELEMENT, 'change', OrganizationSelection.organizationChanged);
		}
		catch(e) {/*Ignore*/}
	},
	
	organizationChanged: function() {
		var customerId = $F(OrganizationSelection.ORGANIZATION_ELEMENT);
		
		//Check for empty selection
		if(customerId == null || customerId == '') {
			return;
		}
		
		OrganizationSelection.FORM_ELEMENT.submit();
	}
};
/*--------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------*
 * Start up the module
 *--------------------------------------------------------------------------*/
Event.observe(window, 'load', OrganizationSelection.load);
/*--------------------------------------------------------------------------*/