function show() {
	var oWait = null, oBody = null, elemWait, elemBody;
	if (document.getElementById) { // IE 5+/NS6
		elemWait = document.getElementById('loading');
		if (elemWait != null) {
			oWait = elemWait.style;
		}
		elemBody = document.getElementById('logo');
		if (elemBody != null) {
			oBody = elemBody.style;
		}
	} else if (document.layers) {
		oWait = document.layers['loading'];
		oBody = document.layers['logo'];
	} else if (document.all) {
		elemWait = document.all['loading'];
		if (elemWait != null) {
		oWait = elemWait.style;
		}
		elemBody = document.all['logo'];
		if (elemBody != null) {
		oBody = elemBody.style;
		}
	}
	if ((oWait != null) && (oBody != null)) {
		if (oWait && oBody) {
			oWait.visibility = 'hidden';
			oWait.display = 'none';
			oBody.visibility = 'visible';
			oBody.display = '';
		}
	}
}

