////////////////////////////////////////////////////////////////////////////////////////////
// Splitter client-side script
////////////////////////////////////////////////////////////////////////////////////////////

addNamespace("Web");
addNamespace("Web.UI");

////////////////////////////////////////////////////////////////////////////////////////////

Web.UI.PlaceHolder = Base.extend(
{
	constructor: function(id)
	{
		this.id = id;
		this.control = $(this.id);
	},
	
	show: function()
	{	
		this.control.style.display = "";
	},
	
	hide: function()
	{	
		this.control.style.display = "none";
	}
});

////////////////////////////////////////////////////////////////////////////////////////////

window.Web_UI_PlaceHolder_Loaded = true;




