document.write('<script type="text/javascript">function loadScript(url) {    return new Promise(function(resolve, reject) {        var script = document.createElement("script");        script.onload = resolve;        script.onerror = reject;        script.src = url;        document.getElementsByTagName("head")[0].appendChild(script);    });}function loadjQuery() {    if (window.jQuery) {        return Promise.resolve();    } else {        return loadScript("https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js");    }}loadjQuery().then(function() {    var $iframes = jQuery( "iframe" );    $iframes.each(function () {      jQuery( this ).data( "ratio", this.height / this.width )    });    jQuery( window ).resize( function () {      $iframes.each( function() {      if ( jQuery( this ).attr( "name" ) == "webcam-828" ) {          var width = jQuery( this ).width();          var height = jQuery( this ).height();              width = jQuery( this ).parent().width();              jQuery( this ).width( width );              jQuery( this ).height( (450.0/800.0 * width )+20 );          jQuery( this ).attr( "position", "absolute" );      }      });    }).resize();}, function() {  alert("error loading stream");});</script><div class="mobile-video-container-828" ><iframe src="https://live.streamdays.com/diatsy57/iframe?t=%3D%3DAM2czM2gTO0cTM" name="webcam-828" scrolling="no" width="800" height="470" webkitallowfullscreen="true" mozallowfullscreen="true" allowfullscreen="true" frameBorder="0"></iframe></div>');

