		YAHOO.namespace("hostname.tools");

		function init() {
			// Instantiate a Panel from markup
			YAHOO.hostname.tools.p1 = new YAHOO.widget.Panel("hostnameTools1", { width:"320px", visible:false, constraintoviewport:true } );
			YAHOO.hostname.tools.p1.render();
			
			YAHOO.hostname.tools.p2 = new YAHOO.widget.Panel("hostnameTools2", { width:"320px", visible:false, constraintoviewport:true } );
			YAHOO.hostname.tools.p2.render();
			
			
			YAHOO.util.Event.addListener("showHostnameTools1", "click", YAHOO.hostname.tools.p1.show, YAHOO.hostname.tools.p1, true);
			YAHOO.util.Event.addListener("showHostnameTools2", "click", YAHOO.hostname.tools.p2.show, YAHOO.hostname.tools.p2, true);
		}

		YAHOO.util.Event.addListener(window, "load", init);