		window.onresize = movestuff;
		window.onload = movestuff;
		function movestuff(){
			movecol();
			movefooter();
		}
		function movecol(){
			RightColDiv = getDiv('position3'); 
			divHeight = getheaderHeight();
			Px = document.childNodes ? 'px' : 0;
			if( RightColDiv.style ) { RightColDiv = RightColDiv.style; }
			RightColDiv.top = divHeight + Px;
		}

		function getheaderHeight(){
			HeaderDiv = getDiv('position0'); 
			if(HeaderDiv){
				if(HeaderDiv.offsetHeight)
					divHeight=HeaderDiv.offsetHeight; 
				else if(HeaderDiv.style.pixelHeight)
					divHeight=HeaderDiv.style.pixelHeight; 
			}
			else
				divHeight=0;
			return divHeight;
		}

		function movefooter(){
			footerDiv = getDiv('position10'); 
			max = GetMaxheight();
			if(footerDiv && max != -1){
				max += getheaderHeight();
				Px = document.childNodes ? 'px' : 0;
				if( footerDiv.style ) { footerDiv = footerDiv.style; }
				footerDiv.top = max + Px;
			}
		}

		function sortit(a,b){
			return(b-a)
		}

		function GetMaxheight(){
			left = getDiv('position1');
			mid= getDiv('position2');
			right = getDiv('position3');
			myarray=new Array(1);
			myarray[0] = getheight(left);
			myarray[1] = getheight(mid);
			myarray[2] = getheight(right);
			myarray.sort(sortit);
			return myarray[0];
		}

		function getheight(div){
			divHeight=0;
			if(div.offsetHeight)
				divHeight=div.offsetHeight; 
			else if(div.style.pixelHeight)
				divHeight=div.style.pixelHeight; 
			return divHeight;
		}

		function getDiv(divID) {
			if( document.layers ) { //Netscape layers
				return document.layers[divID]; }
			if( document.getElementById ) { //DOM; IE5, NS6, Mozilla, Opera
				return document.getElementById(divID); }
			if( document.all ) { //Proprietary DOM; IE4
				return document.all[divID]; }
			if( document[divID] ) { //Netscape alternative
				return document[divID]; }
			return false;
		}