function toRightTop()
{
	if (document.all)
	{
		w = document.body.clientWidth + 24;
		h = document.body.clientHeight + 128;
	}
	if ( document.layers)
	{
		w = window.outerWidth;
		h = window.outerHeight;
	}
		moveTo(screen.availWidth - w, 0 );
		focus();
}
function toLeftTop()
{
		moveTo(0, 0);
}
