/*
 *resizes the given flash containiner to the given parameters
*/
function doFlashDiv(theWidth,theHeight,theDiv)
{
//alert("resize running: " + theDiv + " - " + theHeight);

var div = document.getElementById(theDiv);
div.style.height = theHeight+"px";
div.style.width = theWidth+"px";

}