<!--
/**
* resizes the flash movie
* @param width - the new width of the flash movie
* @param height - the new height of the flash movie
*/
resizeFlashDiv = function( width, height ){
	
	var container = document.getElementById("container");

	container.style.height = height + "px";
	container.style.width = width + "px";
	
	var flashObj = document.getElementById("qia");

	flashObj.style.height = height + "px";
	flashObj.style.width = width + "px";

	var flashDiv = document.getElementById("flashcontent");

	flashDiv.style.height = height + "px";
	flashDiv.style.width = width + "px";


}

-->