(function() {

addEvent(window, "load", function() {
	var minWidth = 1000;
	var minHeight = 600;
	var theContainer = document.getElementById("container");
	if (getWindowHeight() > minHeight) {
		theContainer.style.height = getWindowHeight() + "px";
	} else {
		theContainer.style.height = minHeight + "px";
	}
	if (getWindowWidth() > minWidth) {
		theContainer.style.width = "100%";
	} else {
		theContainer.style.width = minWidth + "px";
	}
	
	addEvent(window, "resize", function() {
		if (getWindowHeight() > minHeight) {
			theContainer.style.height = getWindowHeight() + "px";
		} else {
			theContainer.style.height = minHeight + "px";
		}
		if (getWindowWidth() > minWidth) {
			theContainer.style.width = "100%";
		} else {
			theContainer.style.width = minWidth + "px";
		}
	});
});

})()

