﻿MapsDirect.WebControls.FloatingPanel.prototype.get_helpPanleId = function()
{
    return this._helpPanleId;
};

MapsDirect.WebControls.FloatingPanel.prototype.set_helpPanleId = function(value)
{
    this._helpPanleId = value;
    if(this._helpPanleId != null) this._helpPanel = $get(value);
};

MapsDirect.WebControls.FloatingPanel.prototype.get_helpPanel = function()
{
	return this._helpPanel;
}

MapsDirect.WebControls.FloatingPanel.prototype.toggleHelpPanel = function(link)
{
	if(this._helpPanel != null){
		if(this._helpPanel.style.display == "none"){
			link.innerHTML = "Hide Help";
			this._helpPanel.style.display = "block";
		}else{
			link.innerHTML = "Show Help";
			this._helpPanel.style.display = "none";
		}
	}
	return false;	
};

