/* ============================================================ *
@ ¼³¸í
- Åø¹Ú½º Á¤º¸

@ È÷½ºÅä¸®
- 2004.08.31 ToolboxData.js ¼öÁ¤(ÀÓÈñµ¿)
- 2005.10.14 UseAuth ¼Ó¼º Ãß°¡
 * ============================================================ */
function ToolboxData(toolboxID, display, seq, useImage, outImageURL, overImageURL, linkType, serviceURL, usePopup, popupParam, isRemovable, show, useAuth)
{
	/* Properties */
	this.ToolboxID = toolboxID;
	
	this.Display = display;
	this.Seq = seq;
	
	this.UseImage = useImage;
	this.OutImageURL = outImageURL;
	this.OverImageURL = overImageURL;
	
	this.LinkType = linkType;
	this.ServiceURL = serviceURL;

	this.UsePopup = usePopup;
	this.PopupParam = popupParam;
	this.IsRemovable = isRemovable;
	this.Show = show;
	this.UseAuth = useAuth;
}
