
var iBoxPlugin_mytest = function()
{
  var _private = {
    mytest_url: 
/(?:http:\/\/)?(?:www\d*\.)?(?:rheinmaintv-video|kewego)\.de\/video\/([a-zA-Z0-9-_]+)\.html.*/
  }
  var _public = {
    name: "iBoxPlugin_mytest",
    
    match: function(url)
    {
      return url.match(_private.mytest_url);
    },
    
    render: function(url, params)
    {
      id = url.match(_private.mytest_url)[1];
      params.width = 565;
      params.height = 438;
      var html = '<object id="' + id + '" type="application/x-shockwave-flash" data="http://s.kewego.com/swf/p3/epix.swf" width="560" height="420"><param name="flashVars" value="language_code=de&playerKey=037fg546ekd7&skinKey=&sig=' + id + '&autostart=false&amp;advertise=1" /><param name="movie" value="http://s.kewego.com/swf/p3/epix.swf" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param value="Opaque" name="wmode" /><video width="560" height="420" id="kewego_HTML5_iLyROoafz1Ez" poster="http://api.kewego.com/video/getHTML5Thumbnail/?playerKey=037fg546ekd7&amp;sig=' + id + '" controls="true" preload="true"><source src="http://api.kewego.com/video/getHTML5Stream/?playerKey=037fg546ekd7&amp;sig=' + id + '" type="video/mp4" width="560" height="420"></source></video></object>';
      iBox.html(html, params);
    }
  }
  return _public;
}();
iBox.plugins.register(iBoxPlugin_mytest);
