function DynamicProductLevelLink() {
	
	this.func = 	function () {
							alert( 'Please override function.' );
						};
	
	this.call = 	function( params ) {
						
						var ajax = new AjaxClient();

						ajax.onSuccess = this.func;
						ajax.onLoading = function() {};
						ajax.onError = function() {};
						ajax.call( '/ajax.php', 'GET', 'DynamicProductLevelLink', 'getProductLinkData', params );
	
					};						
}

function DynamicProductLevelLinkDetails() {
	
	this.func = 	function () {
							alert( 'Please override function.' );
						};
	
	this.call = 	function( params ) {
						
						var ajax = new AjaxClient();

						ajax.onSuccess = this.func;
						ajax.onLoading = function() {};
						ajax.onError = function() {};
						ajax.call( '/ajax.php', 'GET', 'DynamicProductLevelLink', 'getProductDetails', params );
	
					};						
}

