var iwidth = 200;
var iheight = 40;
function movelogo(){
	if(document.all){
		logo.style.pixelLeft = document.body.scrollLeft + document.body.clientWidth - iwidth;
		logo.style.pixelTop = document.body.scrollTop + document.body.clientHeight - iheight;
	}
	else if(document.layers){
		document.logo.left = window.pageXOffset + innerWidth - iwidth-20;
		document.logo.top = window.pageYOffset + innerHeight - iheight;
	}
	setTimeout("movelogo()",200);
}