window.onload = setSize;
window.onresize = setSize;

var minH = 700;
var minW = 1020;

function setSize() {
	var screenH = document.body.offsetHeight;
	var screenW = document.body.offsetWidth;
	var H = "100%";
	var W = "100%";

	if (screenH <= minH) H = minH + "px";
	if (screenW <= minW) W = minW + "px";

	var obj;

	if (document.layers) obj = document.layers['flashcontent'];
	if (document.all) obj = document.all.flashcontent.style;
	if (document.getElementById && !document.all && document.getElementById('flashcontent')) obj = document.getElementById('flashcontent').style;
	if(obj) {
		obj.height = H;
		obj.width = W;
	}
}

function setStage(h, w){
	minH = h;
	minW = w;
	setSize();
}