// JavaScript Document

function Delegate () {
}

Delegate.create = function ( target, func ) {
	
	return function () {
		
		// alert ( " arguments: " + arguments.length );
		 
		func.apply ( target, arguments );
	}
}