/**
 * Wmseofitlabel
 *
 * ==Changelog==
 *
 * @since Thu Oct 16 2008
 * @author Nick van der Zwet
 **/
var Wmseofitlabel = Class.create();
Wmseofitlabel = Class.extend(Wmdbtable, {
	/**
	 * ajaxUpdate
	 *
	 * Marks the ajax call as done
	 *
	 * @since Thu Oct 16 2008
	 * @access public
	 * @param domnode response
	 * @response void
	 **/
	ajaxUpdate: function(response) {
		this.__parent.ajaxUpdate(response);
		document.location.reload();
	}
});
