ZeroClipboard.setMoviePath('http://clickandtalk.medularis.com/flash/ZeroClipboard.swf');

function ftext2copy(server,uuid,ancho,alto) {
  var text2copy = "<a href=\"http://www.medularis.com\" onclick=\"window.open('http://"+server+"/popups/show/?uuid="+uuid+"','popup','menubar=0,resizable=0,width="+ancho+",height="+alto+"');return false;\">Imagen del Boton</a>";
  return text2copy;
}

function copy(server,uuid,ancho,alto) {
  var text2copy = "<a href=\"http://www.medularis.com\" onclick=\"window.open('http://"+server+"/popups/show/?uuid="+uuid+"','popup','menubar=0,resizable=0,width="+ancho+",height="+alto+"');return false;\">Imagen del Boton</a>";

  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;
  }
}
