<!--

// Note: have a constant for core wdf dir
//       have a contsant for inc wdf dir

function WDF()
{
	this.site = {};
	this.fileLoader = {};
	
	/*
	this.window = {};
	this.navigator = {};
	this.httpRequestHandler = {};
	this.loadProgressStatus = {};
	this.exceptionHandler = {};

	this.sessionId = '';
	this.hostname  = '';
	
	*/
}

WDF.prototype.initialise = function()
{
	this.fileLoader = new WDF_FileLoader();
	/*
	this.sessionId = sid;
	this.hostname = hn;
	
	this.fileLoader = new WDF_FileLoader();
	this.fileLoader.initialise();
	
	this.loadProgressStatus = new WDF_LoadProgressStatus();
	
	this.site = new WDF_Site();
	
	this.exceptionHandler = new WDF_ExceptionHandler();
	*/
}


var _WDF = new WDF();

//-->
