var isMSIE = /*@cc_on!@*/false;

function ClearAbsolute() {
	var footer=document.getElementById('etex');
	var right=document.getElementById('right');
	var height;
	if (isMSIE) {
		if ((right.offsetHeight+190) < document.body.offsetHeight) height=document.body.offsetHeight;
		else height=right.offsetHeight+190;
	}
	else height=document.height;
	footer.style.top=(height-30)+'px';
	footer.style.visibility='visible';
}

// window.onload=ClearAbsolute;
// start it from fsmenu event handler
addEvent(window,'load', new Function('ClearAbsolute()'));