// JavaScript Document

// called from flash modules, expands height of div to height of flash content
function expandFlashModule(newHeight)
{
	var theDiv = document.getElementById('flash_container_knowHow');
	theDiv.style.height = newHeight + "px";
}