// JavaScript Document
function resize(){ 
var frame = document.getElementById("container");
if( typeof( window.innerHeight ) == 'number' ) {
	windowheight = window.innerHeight;
} else if( document.documentElement && document.documentElement.clientHeight ) {
	windowheight = document.documentElement.clientHeight;
} else if( document.body && document.body.clientHeight ) {
	windowheight = document.body.clientHeight;
}
if (windowheight < minheight) { frame.style.height = minheight+"px"; } 
	else { frame.style.height = "100%"; } 
}

