/*
Copyright (c) 2009, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.8.0r4
*/
(function() 
{
    var tabView = new YAHOO.widget.TabView('demo');
    
    var addTab = function() 
	{
        var labelText = window.prompt('enter the tab label');
        var content = window.prompt('enter the tab content');
        if (labelText && content) 
		{
            tabView.addTab( new YAHOO.widget.Tab({ label: labelText, content: content }) );
        }
    };
}
)
();
