﻿/////////////////////
// Advanced Button //
/////////////////////

function advancedButton_beginClick(selector) {
	var $this = $(selector);

	if (($this.attr('validation-script') && !eval($this.attr('validation-script')))) {
		return false;
	}

	if ($this.attr('override')) {
		eval($this.attr('override') + '(\"' + selector + '\");');
	}
	else {
		advancedButton_endClick(selector);
	}
}

function advancedButton_endClick(selector) {
	var $this = $(selector);

	if ($this.attr('wait-img-src')) {
		$this.hide().after('<img alt=\"loading...\" src=\"' + $this.attr('wait-img-src') + '\" class=\"' + $this.attr('class') + '\" />');
	}

	if ($this.attr('client-click')) {
		eval($this.attr('client-click'));
	}
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();