/*** /unisource/myunisource/welcome.js **********************************/ MyUnisource.Welcome = Class.create(); /** * A JavaScript class to handle events\ * arising from the Welcome box */ MyUnisource.Welcome.prototype = { /** * Creates a new Welcome form object and * attaches all event handlers */ initialize: function(formId) { this.form = (formId) ? $(formId) : $('myuni-welcome-form'); this.form.welcome = this; }, switchCell : function(cellId) { $('ajax-indicator').unipopup.show(); var url = Paths.www + '/myunisource/uni_cells/switchCell/' + cellId; window.location.href = url; } };