"; // // init // function init() { var videoId = ""; var rex = RegExp(/watch\/(.+?)(&|\?|$)/ig); if(videoPageURL.match(rex)){ videoId = RegExp.$1; } var script = embedFileURL.replace(/\.\.videoId/g, videoId); document.write(script); // debug // document.getElementById("status").innerText = "videoId=" + videoId + "\n" // + "url=" + url + "\n"; } window.onload = function(){ init(); } -->