var js = false;
if(document.getElementById) {
	js = true; //OK
}else if(document.all) {
	js = true; //OK
}

function do_splash() {
	if(js) {
		fadeOpacity('splash', 'oR1');
		document.getElementById('content').style.display='block';
		setTimeout("document.getElementById('splash').style.display='none'",1000);
	}
}

function do_hideSplash() {
	if(js && splash) {
		document.getElementById('content').style.display='none'
		document.getElementById('splash').style.display='block';
		setTimeout("do_splash()",splash);
	}
}
