function copyit(field) {
    var temp=document.getElementById(field);
    temp.focus()
    temp.select()
    therange=temp.createTextRange()
    therange.execCommand("Copy")
    confirm("Copy Link เรียบร้อยแล้ว")
}
