function getWindowHeight() {
    var h = 0;
    if (typeof(window.innerHeight) == 'number') { // Netscape
        h = window.innerHeight;
    } 
	
	else if (document.documentElement && document.documentElement.clientHeight) {
        h = document.documentElement.clientHeight;
    } 
	
	else if (document.body && document.body.offsetHeight) { //client
        h = document.body.offsetHeight;
    }
    
	return h;
}		
	
function onLoad() {
	if (getWindowHeight() < 777) {
		document.location='#scale';
	}	
	else {
			document.location='#top';
	}
}
