var focused = true;

function setBrowserPageTitle (title) {
	document.title = "Mateu Architecture Incorporated - " + title;	
}
function setPageLink (url) {
	document.location.href = "index.html#"+url;
}
function setFlashPage (page) {
	
}
function throwAlert (msg) {
	//alert(msg);	
}
function checkWindowSize () {
	//var h = window.innerHeight;
	var size = document.getSize();
	var h = size.y;
	var swf = document.getElementById("flash_swf");
	var wrapper = document.getElementById("flash_wrapper");
	if (h < 640) {
		swf.style.height = "650px";
		wrapper.style.height = "650px";
	} else {
		swf.style.height = "100%";
		wrapper.style.height = "100%";
	}
}

function doFocus () { 
	document.getElementById("flash_wrapper").style.height = "100%";	
}

function doUnfocus () { 
	document.getElementById("flash_wrapper").style.height = "2px";	
}

window.onresize = checkWindowSize;
window.onload = checkWindowSize;
document.onload = checkWindowSize;

document.onfocus = doFocus;
document.onblur = doUnfocus;
