function embedSS(container, url, width, height, format)
{ var params = {};
  if(format==1)
    embedGif(container,url,width,height);
  else if(format)
    embedSmoke(container,url,width,height);
  else
    swfobject.embedSWF(url, container, width, height, '9.0.0', null, params);
}

function embedSmoke(container, url, width, height)
{ var params = {};
  var name = 'smsc' + container;
  var element = document.getElementById(container);
  new Smokescreen(url, element, width, height, name, params);
}
function embedGif(container, url, width, height)
{ var name="gif" + container;
  var gurl=url.slice(0,-3)+'gif';
  var st="<img id='" + name + "' src='" + gurl + "' width='" + width + "' height='" + height + "' />";
  document.getElementById(container).innerHTML=st;
}
