function SymError()
{
  return true;
}

window.onerror = SymError;

var SymRealWinOpen = window.open;

function SymWinOpen(url, name, attributes)
{
  return (new Object());
}

window.open = SymWinOpen;



function mpcheck() {
	if (document.documentElement.scrollTop!=st) {
		st = document.documentElement.scrollTop;
		fm.style.top = (st+80)+'px';
	}
	if (document.width!=dw) {
		dw = document.body.clientWidth;
		fm.style.left = (((dw-504)/2)-w)+'px';
	}
}

function mponload() {

	st = document.documentElement.scrollTop;
	dw = document.body.clientWidth;
	fm = document.getElementById('floatingmenu');

	w = fm.clientWidth+8;

	fm.style.top = (st+80)+'px';
	fm.style.left = (((dw-504)/2)-w)+'px';
	
	fm.style.visibility = 'visible';

	window.setInterval("mpcheck()",20);

}

//******

if (window.attachEvent)
	window.attachEvent("onload",mponload);
else
	onload = mponload;
