/**
 * @author Vincent Lim Show Chen
 * 
 * This function is called by a swf object to resize its parent container.
 */
mcd.dom.ready (function() {
    resizeSwfContainer = function (height) {
        var swfContainerElementId="calc"; //ID of swf container
        var swfContainerElement=document.getElementById(swfContainerElementId);
    	swfContainerElement.style.height = height+"px";
    }    
});