function getWindowHeight(){
		return document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.offsetHeight;
	}
	
function setHomeMargin(){	
	var tempHeight = getWindowHeight();
	tempHeight = (tempHeight > 478) ? Math.floor(((tempHeight - 478) / 2) -75) : 0;
	tempElement = document.getElementById('topPage');
	tempElement.style ? tempElement.style.margin = tempHeight + "px" : tempElement.padding = tempHeight;
}
	
	
