function open_flash_chart_object($width, $height, $url, $divname = 'umschart', $use_swfobject = true, $base = '')
{
    //
    // stream the HTML into the page
    //
    return _ofc($width, $height, $url, $divname, $use_swfobject, $base);
}
function open_flash_chart_object($width, $height, $url, $use_swfobject = true, $base = '')
{
    //
    // stream the HTML into the page
    //
    echo _ofc($width, $height, $url, $use_swfobject, $base);
}
 /**
  * Creates chart using given parameters.
  *
  * @author Dawood RASHID
  * @since 25 mars 2009
  *
  * @param String $width
  * @param String $height
  * @param String $url
  * @param Boolean $use_swfobject
  * @param String $base
  * @return stream the HTML into the page
  */
 public static function createChart($width, $height, $url, $useSwfObject = true, $base = '')
 {
     $url = url_for($url);
     $base = self::getBaseDir();
     echo _ofc($width, $height, $url, $useSwfObject, $base);
 }