cflayout not working
Is there a setting in the cf administrator that I need to set to have access to the cflayout methods and tags?
Currently I am using ColdFusion 9 Standard. When I try this code posted at the bottom of this page: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WS0ef8c004658c1089-6262c847120f1a3b244-7ff1.html
<html>
<head>
</head>
<body>
<cfform name="layouts">
<cfinput type="button" name="CreateTab"
onClick="ColdFusion.Layout.createTab('tabLayout','tab2',
'Tab 2','_tabUrl.cfm',{inithide:false,selected:true})"
value="Create Tab">
</cfform>
<cflayout type="tab" name="tabLayout">
<cflayoutarea name="tab1" title="Tab 1" align="left">
Default Tab
</cflayoutarea>
</cflayout>
</body>
</html>
I get this:

but no tabs, even when I click on the 'Create Tab' button.
Any thoughts?
Thank you!
John
