/*

Stores the references to any and all open windows.

*/

function windowTrackerObject(whatModule)
{
	
	this.objID = whatModule + "_window";
	this.openerWindow = false;
	this.bookmarkData = false;
	this.openWindows = new Array();
	
}


windowTrackerObject.prototype.openWindow = _openWindow;

windowTrackerObject.prototype.closeWindow = _closeWindow;
windowTrackerObject.prototype.closeAllWindows = _closeAllWindows;
windowTrackerObject.prototype.connectToOpener = _connectToOpener;

