function copyIMG(){

   document.imgForm.imgcode.focus();

   document.imgForm.imgcode.select();

   CopiedTxt = document.selection.createRange();

   CopiedTxt.execCommand("Copy");

   alert("A szöveget kimásoltam!");

}

function copyHTML(){

   document.htmlForm.htmlcode.focus();

   document.htmlForm.htmlcode.select();

   CopiedTxt = document.selection.createRange();

   CopiedTxt.execCommand("Copy");

   alert("A szöveget kimásoltam!");

}