
var iwidth=300;
var iheight=30;

function UpButton(){
	if(document.all){
		//alert("document.body.scrollLeft" + document.body.scrollLeft);
		//alert("document.body.clientWidth" + document.body.clientWidth);
		GoesUp.style.pixelTop = document.body.scrollTop + document.body.clientHeight - iheight;
		if (document.body.clientWidth<=800) 
			GoesUp.style.pixelLeft = document.body.scrollLeft + document.body.clientWidth-80 ;
			
		else if (document.body.clientWidth<=1024) 
		{
			GoesUp.style.pixelLeft = document.body.scrollLeft + document.body.clientWidth - 194;
		}
		else
		{
			GoesUp.style.pixelLeft = document.body.scrollLeft + document.body.clientWidth - iwidth;
		}
	}
	else if(document.layers){
		document.GoesUp.top = window.pageYOffset + innerHeight - iheight;
		document.GoesUp.left = window.pageXOffset + innerWidth - iwidth;
	}
	setTimeout("UpButton()",100);
}


