function cbcopy(s){
obj=document.createElement("textarea");
obj.value=(s+"");
document.body.append(obj);
obj.select();
document.execCommand("copy");
obj.remove();
}