xajax.loadingFunction = InitLoader;
xajax.doneLoadingFunction = DestroyLoader;

mainMode = '';


function ShowContent(Mode) {
	sScript = "";
	xajax_showContent(Mode);
	mainMode = Mode;
}


function InitLoader() {
	document.getElementById('loader').style.display = '';
}

function DestroyLoader() {
	switch (mainMode) {
		case 'news':
		case 'news:1':
		case 'news:2':
		case 'news:3':
		case 'news:4':
		case 'news:5':
		case 'news:6':
		case 'news:7':
		case 'news:8':
		case 'news:9':
		case 'news:10':
			document.body.style.background = "url('') #FEEC02";
		break;
		
		default:
			document.body.style.background = "url('_img/site_bg_2.jpg') #9D7949";
		break;
	}
	switch (mainMode) {
		case 'about-us':
			document.getElementById('bottom').style.background = "url('_img/about_3.jpg') bottom left no-repeat";
			document.getElementById('left-bottom').style.background = "url('_img/about_4.jpg') bottom right no-repeat";
		break;
		
		default:
			document.getElementById('bottom').style.background = "url('')";
			document.getElementById('left-bottom').style.background = "url('')";
		break;
	}
	document.getElementById('loader').style.display = 'none';
}

function Mailing(sOption) {
	xajax_mailing(document.getElementById('textfield').value, sOption);
}