function init(s) {
	//alert(document.body.clientWidth);
	if(s == undefined) {
		var u = document.location.search.substring(1);
		if(u == 'nointro') {
			clearFlash();
			showContent();
		}
	}else {
		showContent();
		var x = document.getElementById('containerBackdrop');
		x.style.background = 'url(images/bg_' + s + '.jpg) no-repeat';
	}
}

function showContent() {
	//document.getElementById("container").style.display = 'block';
	document.getElementById("container").style.visibility = 'visible';
}

function clearFlash() {
	document.getElementById("flashArea").innerHTML = '';
	document.getElementById("flashArea").style.display = 'none';
}