function getWinHeight() {
	// based on a script by projectseven.com (PVII)
	if (window.innerWidth) { 
		h = window.innerHeight; // ns4
	} else if(document.body) {
		h = document.body.clientHeight;
 		
 		if (document.body.offsetHeight == h && document.documentElement && document.documentElement.clientHeight) {
			h = document.documentElement.clientHeight;
  		}
 	} else {
 		h = 0;
 	}
 	
 	if (h==null) {
 		h = 0;
 	}
 	
 	return h;
}


function relocate() {
	var cheight = 0;
	var wheight = getWinHeight();
	
	if (document.body) {
		cheight = document.body.scrollHeight;
	}
	
	if (cheight > wheight) {
		document.getElementById('special').style.top = (cheight - 175) + 'px';
	}
}

//window.onresize = relocate();
