// JavaScript Document

	function startLoading() {
	 Element.show('mainAreaLoading');
	 Element.hide('mainAreaInternal');
	}
	function finishLoading() {
	 Element.show('mainAreaInternal');
	 setTimeout("Effect.toggle('mainAreaLoading');", 300);
	}

	function loadContent(id) {
	  Effect.ScrollTo('Top');
	  startLoading();
	  new Ajax.Updater( 'mainAreaInternal', 'incs/dx.downloadform.php', {method: 'post', postBody:'content='+ id +''} );
	  //new Effect.Highlight('mainAreaInternal', { startcolor: '#FFFFFF',endcolor: '#dedede' });
	  finishLoading();
	}


function SwitchDiv(Switch,SwitchID)
	{
		if (Switch=='On')
		{
			document.getElementById(''+SwitchID).style.display = '';
			 
			
			
		
		}
		else
		{
			document.getElementById(''+SwitchID).style.display = 'none';
		}
		
	}
	