function SetBanner()
{
	var left = document.body.offsetWidth - 850 - 25;
	document.getElementById('Banner').style.left = left + 'px';
	
	var top = 0;
	if (parent.frames.length != 0)
		top = document.body.offsetHeight  - 10 - 2;
	else
		top = document.body.offsetHeight  - 10 - 6;
	document.getElementById('Bottom').style.top = top + 'px';
}

