//######################################################################################
// Author: ricocheting.com
// For: public release (freeware)
// Date: 4/24/2003 (update: 5/24/2006)
// Description: displays the amount of time until the "this.m_dateFuture" entered below.
//###################################

function popupPanel( PopupPanelID )
{
	this.PopupPanelID = PopupPanelID;
	this.PopupPanelCtrl = null;

	// Function that runs when the page loads
	this.onLoad = function()
	{
		this.PopupPanelCtrl = document.getElementById( this.PopupPanelID );
	};
	
	this.closePanel = function()
	{
		this.PopupPanelCtrl.style.visibility = "hidden";
		this.PopupPanelCtrl.style.display = "none";
	}
	
	return this;
}
