var tocPanel = "";
jQuery(document).ready(function() {

	// console.log("hello");
	jQuery("#termsAndConditionsDialog").dialog({ autoOpen: false, 
	 											 zIndex:9999,
	 											 width:"820px",
	 											 height:"550px",
	                                             visible:false, 
	                                             modal:true,
	                                             resizable: false,
	                                             draggable: false,
	                                             closeText: 'close',
	                                             title:'Terms and Conditions',
	                                             constraintoviewport:true });

	jQuery("#termsAndConditionsDialog").tabs();
		                                             
});

function showToc() {
	jQuery("#tabs").show();
	jQuery("#termsAndConditionsDialog").dialog('open');
}

