<!--

Function.prototype.wdfExtends = function(parent)
{
	this.prototype = new parent();
	this.prototype.constructor = this;
}

//-->
