var winTOC = null;
			
$(document).ready(function() {
	
	if($.browser.msie && $.browser.version=="6.0")
	{
		var winMessage = new Ext.Window({
			width: 550, 
			height: 250, 
			modal: true, 
			closable: true, 
			title: 'Alert', 
			contentEl: 'div_ie6Alert'
		});
		
		winMessage.show();
	}
	
	winTOC = new Ext.Window({
		width: 550, 
		height: 250, 
		modal: true, 
		closable: true, 
		title: 'Password-Protected Areas and Access', 
		buttons: [new Ext.Button({text: 'Close', handler: function() { winTOC.close();}})],
		contentEl: 'div_TOC'
	});
});

function showTOC()
{
	winTOC.show();
}
