window.onresize = setSize;
window.onload = setSize;

var minH = 580;
var minW = 970;

function setSize() {
	var screenH = document.body.clientHeight;
	var screenW = document.body.clientWidth;
	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){
	minH = h;
	setSize();
}

function AcademySwapContent(id, part) {
	document.getElementById('htmlcontent').innerHTML = 'swap text: ' + id + ' / ' + part;
}
