function imageTeaser(uid, w, h, text, link, cs) {

  var rnd = Math.floor(Math.random() * eval("imageTeaserImages_" + uid + ".length"));
  var id = 'flashcontent_' + uid;
  var attributes = {
    "id" : id,
    "name": id,
    "class" : "flash_image_teaser"
  };

  var params = { "wmode" : "transparent"};
  var flashvars = {
    "image" : eval("imageTeaserImages_" + uid + "[" + rnd+ "]"),
    "width" : w,
    "height" : h,
    "text" : text,
    "link" : link,
    "currentColorSheme" : cs
  }
   SWFFix.embedSWF("fileadmin/templates/swf/flash_image_teaser.swf", id, w, h, "8.0.0", null, flashvars, params, attributes);
}