var yt_video_width = 375;
var yt_video_height = 325;
function showVideo(id) {
    document.getElementById('yt_the_video').innerHTML = "<a name=\"yt_video\"><object width=\"375\" height=\"325\"><param name=\"movie\" value=\"" + id + "\"></param><embed src=\"" + id + "\" type=\"application/x-shockwave-flash\" width=\"375\" height=\"325\"></embed></object></a>";
    document.getElementById('yt_the_link').innerHTML = "http://caprice.se/video/youtube.php?video=" + id;
}

function copy(text2copy) {
  if (window.clipboardData) {
    window.clipboardData.setData("Text",text2copy);
  } else {
    var flashcopier = 'flashcopier';
    if(!document.getElementById(flashcopier)) {
      var divholder = document.createElement('div');
      divholder.id = flashcopier;
      document.body.appendChild(divholder);
    }
    document.getElementById(flashcopier).innerHTML = '';
    var divinfo = '<embed src="_clipboard.swf" FlashVars="clipboard='+escape(text2copy)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
    document.getElementById(flashcopier).innerHTML = divinfo;
  }
}