<!--
function ReposItIE(){
	if (document.all){
		//staticbanner.style.left =	parseInt(document.body.scrollLeft)+
		//							parseInt(document.body.clientWidth)-205;
        if ((parseInt(document.body.scrollLeft) + parseInt(document.body.clientWidth)) > 770){
			staticbanner.style.left =	parseInt(document.body.scrollLeft)+
										parseInt(document.body.clientWidth)-205;
        }else{
			staticbanner.style.left =	770-205;
        }
		if (document.body.scrollTop < 100) {
			staticbanner.style.top = 100;
		}else{
			staticbanner.style.top = document.body.scrollTop;
		}
		//staticbanner.style.top = 100;
	}
}
function positionit()
{
		var check=0;
		var newX=0;
		var clientWidth=0;
		var scrollLeft=0;
		var scrollTop=0;
		var clientHeight=0;
		if(lNS4==true)
		{
				clientWidth=parseInt(window.innerWidth);
				clientHeight=parseInt(window.innerHeight);
				scrollLeft=parseInt(window.pageXOffset)-44;
				scrollTop=parseInt(window.pageYOffset)+25;
		} else {
			if(lNS5==true)
			{
				clientWidth=parseInt(window.innerWidth);
				clientHeight=parseInt(window.innerHeight);
				scrollLeft=parseInt(window.pageXOffset)-14;
				scrollTop=parseInt(window.pageYOffset)+25;
			} else {
				clientWidth=parseInt(document.body.clientWidth)
				scrollLeft=parseInt(document.body.scrollLeft)
				scrollTop=parseInt(document.body.scrollTop)+25;
			}
		}
// Define the horizontal positioning of the slideshow window
		newX=5;
		setX('staticbanner',newX);

// Define the top positioning of the slideshow window
		if (scrollTop < 114) {
			setY('staticbanner',114)
		}else{

//alert(scrollTop)
//scrollTop=scrollTop-100;
			setY('staticbanner',scrollTop);
		}
}
function posNs4()
{
		document.staticbanner.left=	15;
		
		if (pageYOffset < 5) {
			document.staticbanner.top = 5;
		}else{
			document.staticbanner.top = pageYOffset;
		}
}
if(lNS4==false) setInterval("positionit()",250);
-->

