<!-- 
function getWindowHeight() { 
	if (typeof(window.innerHeight) == 'number') {
		win_height = window.innerHeight;
	}	else {
		if (document.documentElement && document.documentElement.clientHeight) {
			win_height = document.documentElement.clientHeight;
		}	else {
			if (document.body && document.body.clientHeight) {
				win_height = document.body.clientHeight;
			}
		}
	}
	return win_height; 
} 

window.onload = function() {
	setSize()
}

window.onresize = function() { 
	setSize()
} 

function setSize() {
	if (getWindowHeight() < 660) {
		document.getElementById('container').style.height = "660px";
	} else {
		document.getElementById('container').style.height = "100%";
	}
}