﻿function delegate( target, func )
{
    return function( )
	{
		return func.apply( target, arguments ); 
	}
}

